DockFlare/dockflare/tailwind.config.js
2025-05-25 21:52:33 +02:00

46 lines
No EOL
731 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/templates/**/*.html",
],
darkMode: 'class',
theme: {
extend: {},
},
plugins: [
require("daisyui"),
],
daisyui: {
themes: [
"light",
"dark",
"cupcake",
"bumblebee",
"emerald",
"corporate",
"synthwave",
"retro",
"cyberpunk",
"valentine",
"halloween",
"garden",
"forest",
"aqua",
"lofi",
"pastel",
"fantasy",
"wireframe",
"black",
"luxury",
"dracula",
"cmyk",
"autumn",
"business",
"acid",
"lemonade",
"night",
"coffee",
"winter",
],
},
}