26 lines
592 B
JavaScript
26 lines
592 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./web/templates/**/*.html"],
|
|
theme: {
|
|
container: {
|
|
center: true
|
|
},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
light: {
|
|
...require("daisyui/src/theming/themes")["[data-theme=garden]"],
|
|
primary: "#f28c18",
|
|
secondary: "rgba(70,70,70,0.7)",
|
|
},
|
|
dark: {
|
|
...require("daisyui/src/theming/themes")["[data-theme=halloween]"],
|
|
secondary: "#a0a0a0",
|
|
},
|
|
},
|
|
],
|
|
darkTheme: "dark",
|
|
},
|
|
};
|