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: {
|
2023-11-22 15:31:58 +01:00
|
|
|
primary: "#64279e",
|
|
|
|
secondary: "#9454af",
|
|
|
|
accent: "#6ff7c5",
|
|
|
|
neutral: "#1f2329",
|
2023-11-06 00:24:33 +01:00
|
|
|
"base-100": "#2a3a47",
|
2023-11-22 15:31:58 +01:00
|
|
|
info: "#8b9be5",
|
|
|
|
success: "#79e2b4",
|
|
|
|
warning: "#efb261",
|
|
|
|
error: "#e1604c",
|
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
|
|
|
};
|