27 lines
583 B
JavaScript
27 lines
583 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
mytheme: {
|
|
primary: "#3b82f6",
|
|
secondary: "#38bdf8",
|
|
accent: "#6ee7b7",
|
|
neutral: "#1f2329",
|
|
"base-100": "#2a3a47",
|
|
info: "#a5f3fc",
|
|
success: "#22c55e",
|
|
warning: "#fbbf24",
|
|
error: "#ef4444",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
// eslint-disable-next-line no-undef
|
|
plugins: [require("daisyui")],
|
|
};
|