utopia-ui/tailwind.config.js
Ulf Gebhardt c8b994796b
fix everything
- fix all autofixable problems
- fix all other errors by a file-wide ignore
2025-03-16 02:05:18 +01:00

17 lines
371 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'],
},
}