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.
28 lines (27 loc) • 794 B
JavaScript
export default function () {
return {
'hook-section': {},
'hook-default': {
backgroundColor: null,
'--uk-navbar-color': null,
'@apply bg-background': {}
},
'hook-muted': {
backgroundColor: null,
'--uk-navbar-color': null,
'@apply bg-muted text-muted-foreground': {}
},
'hook-secondary': {
backgroundColor: null,
'--uk-navbar-color': null,
'@apply bg-secondary text-secondary-foreground': {}
},
'hook-primary': {
backgroundColor: null,
'--uk-navbar-color': null,
'@apply bg-primary text-primary-foreground': {}
},
'hook-overlap': {},
'hook-misc': {}
};
}