| import daisyui from "daisyui"; |
| import containerQueries from "@tailwindcss/container-queries"; |
|
|
| |
| export default { |
| content: [ |
| "./index.html", |
| "./src/**/*.{js,ts,jsx,tsx}", |
| ], |
| darkMode: 'class', |
| theme: { |
| extend: {}, |
| }, |
| plugins: [daisyui, containerQueries], |
| 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", |
| "base-200": "#1e293b", |
| "base-300": "#334155", |
| "info": "#0ea5e9", |
| "success": "#10b981", |
| "warning": "#f59e0b", |
| "error": "#ef4444", |
| }, |
| }, |
| ], |
| darkTheme: "dark", |
| }, |
| } |
|
|