mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
18 lines
370 B
JavaScript
18 lines
370 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{html,js,jsx,tsx,ts}"],
|
|
theme: {
|
|
extend: {
|
|
// that is animation class
|
|
animation: {
|
|
fade: 'fadeOut 1s ease-in-out',
|
|
},
|
|
},
|
|
},
|
|
plugins: [import("daisyui")],
|
|
daisyui: {
|
|
themes: ["light", "dark", "cupcake", "retro", "cyberpunk", "aqua"]
|
|
}
|
|
}
|
|
|