2023-06-14 21:53:27 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-10-02 22:35:11 +02:00
|
|
|
content: ["./templates/**/*.html"],
|
2023-06-14 21:53:27 +02:00
|
|
|
theme: {
|
|
|
|
container: {
|
|
|
|
center: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [require("daisyui")],
|
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
light: {
|
2023-06-23 12:18:25 +02:00
|
|
|
...require("daisyui/src/theming/themes")["[data-theme=garden]"],
|
2023-06-14 21:53:27 +02:00
|
|
|
primary: "#f28c18",
|
|
|
|
secondary: "rgba(70,70,70,0.7)",
|
|
|
|
},
|
|
|
|
dark: {
|
2023-06-23 12:18:25 +02:00
|
|
|
...require("daisyui/src/theming/themes")["[data-theme=halloween]"],
|
2023-06-14 21:53:27 +02:00
|
|
|
secondary: "#a0a0a0",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
darkTheme: "dark",
|
|
|
|
},
|
|
|
|
};
|