|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/typography"), require('daisyui')],
|
|
daisyui: {
|
|
themes: ["light", "forest"],
|
|
darkMode: "forest"
|
|
},
|
|
}
|
|
|