2025-01-01 01:27:02 +01:00
|
|
|
import typo from "@tailwindcss/typography"
|
|
|
|
import daisyui from "daisyui"
|
|
|
|
|
2024-12-31 17:51:57 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2025-01-01 01:27:02 +01:00
|
|
|
plugins: [typo, daisyui],
|
2024-12-31 17:51:57 +01:00
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
"forest",
|
|
|
|
],
|
|
|
|
|
|
|
|
},
|
2024-10-12 05:11:55 +02:00
|
|
|
}
|