19 lines
641 B
JavaScript
19 lines
641 B
JavaScript
|
const daisyui = require("daisyui");
|
||
|
const typography = require("@tailwindcss/typography");
|
||
|
const forms = require("@tailwindcss/forms");
|
||
|
|
||
|
const config = {
|
||
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
||
|
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
|
||
|
plugins: [forms, typography, daisyui],
|
||
|
daisyui: {
|
||
|
themes: ["light", "valentine", "dracula", "dark", "cupcake", "bumblebee", "emerald", "corporate", "synthwave", "retro", "cyberpunk", "halloween", "garden", "forest", "aqua", "lofi", "pastel", "fantasy", "wireframe", "black", "luxury", "cmyk", "autumn", "business", "acid", "lemonade", "night", "coffee", "winter"],
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|