floeui
v0.2.2
Published
Extended DaisyUI plugin for UnoCSS
Maintainers
Readme
FloeUI
💅 Extended DaisyUI plugin for UnoCSS
Installation
# add dependency to your current setup
bun add -D floeui unocss
Usage
To create a production version of your app:
// unocss.config.ts|js
import {
defineConfig,
presetUno,
presetIcons,
presetAttributify,
} from 'unocss';
import presetFloe from 'floeui';
export default defineConfig({
presets: [
presetUno(),
presetAttributify(),
presetIcons({
scale: 1.3
}),
presetFloe({
themes: [
"light",
"dark",
"cupcake"
],
})
]
});