2023-10-19 02:42:37 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
2023-11-22 15:31:58 +01:00
|
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
2023-10-19 02:42:37 +02:00
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
mytheme: {
|
2024-03-24 22:59:14 +01:00
|
|
|
primary: "#3b82f6",
|
|
|
|
secondary: "#38bdf8",
|
|
|
|
accent: "#6ee7b7",
|
|
|
|
neutral: "#1f2329",
|
|
|
|
"base-100": "#2a3a47",
|
|
|
|
info: "#a5f3fc",
|
|
|
|
success: "#22c55e",
|
|
|
|
warning: "#fbbf24",
|
|
|
|
error: "#ef4444",
|
2023-10-19 02:42:37 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2023-11-13 11:51:55 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2023-10-19 02:42:37 +02:00
|
|
|
plugins: [require("daisyui")],
|
2023-11-22 15:31:58 +01:00
|
|
|
};
|