godash/tailwind.config.js

27 lines
592 B
JavaScript
Raw Normal View History

2023-06-14 21:53:27 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-06-16 13:19:10 +02:00
content: ["./web/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",
},
};