16 lines
272 B
TypeScript
16 lines
272 B
TypeScript
|
import type { Config } from 'tailwindcss'
|
||
|
|
||
|
export default {
|
||
|
content: [],
|
||
|
plugins: [require('daisyui')],
|
||
|
daisyui: {
|
||
|
themes: ['light', 'dark'],
|
||
|
},
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
// Add any custom colors here
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
} satisfies Config
|