intra-front/tailwind.config.js
2024-10-13 16:24:35 +02:00

31 lines
628 B
JavaScript

import daisyui from "daisyui";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {},
},
colors: {},
},
plugins: [daisyui],
daisyui: {
// themes: ["light", "dark"],
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
primary: "#99d2fd",
test: "#76beee",
},
dark: {
...require("daisyui/src/theming/themes")["dark"],
primary: "#34a6fc",
test: "#1f5078",
},
},
],
},
};