forked from mirrors/homebox
6a8a25e3f8
* wip: charts.js experimental work * update lock file * wip: frontend redesign * wip: more UI fixes for consistency across themes * cleanup * improve UI log * style updates * fix lint errors
57 lines
1.1 KiB
JavaScript
57 lines
1.1 KiB
JavaScript
module.exports = {
|
|
content: ["./app.vue", "./{components,pages,layouts}/**/*.{vue,js,ts,jsx,tsx}"],
|
|
darkMode: "class", // or 'media' or 'class'
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
homebox: {
|
|
primary: "#5C7F67",
|
|
secondary: "#ECF4E7",
|
|
accent: "#FFDA56",
|
|
neutral: "#2C2E27",
|
|
"base-100": "#FFFFFF",
|
|
info: "#3ABFF8",
|
|
success: "#36D399",
|
|
warning: "#FBBD23",
|
|
error: "#F87272",
|
|
},
|
|
},
|
|
"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",
|
|
],
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/aspect-ratio"), require("@tailwindcss/typography"), require("daisyui")],
|
|
};
|