franken-ui
Version:
Franken UI is an HTML-first, open-source library of UI components based on the utility-first Tailwind CSS with UIkit 3 compatibility. The design is based on shadcn/ui ported to be framework-agnostic.
52 lines (51 loc) • 1.27 kB
TypeScript
export default function (): {
'hook-lead': {
fontSize: null;
lineHeight: null;
color: null;
'@apply text-xl text-muted-foreground': {};
};
'hook-meta': {
fontSize: null;
lineHeight: null;
color: null;
'@apply text-sm text-muted-foreground': {};
};
'hook-small': {
fontSize: null;
lineHeight: null;
'@apply text-sm': {};
};
'hook-large': {
fontSize: null;
lineHeight: null;
'@apply text-lg': {};
};
'hook-background': {};
'hook-misc': {
'.uk-text-meta > a': {
color: null;
};
'.uk-text-meta > a:hover': {
color: null;
textDecoration: null;
};
'.uk-text-default': {
fontSize: null;
'@apply text-base': {};
};
'.uk-text-muted': {
color: null;
'@apply text-muted-foreground': {};
};
'.uk-text-emphasis': null;
'.uk-text-primary': null;
'.uk-text-secondary': null;
'.uk-text-success': null;
'.uk-text-warning': null;
'.uk-text-danger': {
color: null;
'@apply text-destructive': {};
};
};
};