| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{js,ts,jsx,tsx}", | |
| ], | |
| darkMode: 'class', | |
| theme: { | |
| extend: {}, | |
| }, | |
| plugins: [require("daisyui")], | |
| daisyui: { | |
| themes: [ | |
| { | |
| light: { | |
| "primary": "#3b82f6", | |
| "secondary": "#64748b", | |
| "accent": "#10b981", | |
| "neutral": "#1f2937", | |
| "base-100": "#ffffff", | |
| "info": "#0ea5e9", | |
| "success": "#10b981", | |
| "warning": "#f59e0b", | |
| "error": "#ef4444", | |
| }, | |
| }, | |
| { | |
| dark: { | |
| "primary": "#3b82f6", | |
| "secondary": "#94a3b8", | |
| "accent": "#10b981", | |
| "neutral": "#1f2937", | |
| "base-100": "#0f172a", // Slate-900 | |
| "base-200": "#1e293b", // Slate-800 | |
| "base-300": "#334155", // Slate-700 | |
| "info": "#0ea5e9", | |
| "success": "#10b981", | |
| "warning": "#f59e0b", | |
| "error": "#ef4444", | |
| }, | |
| }, | |
| ], | |
| darkTheme: "dark", | |
| }, | |
| } | |