File size: 1,445 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | import daisyui from "daisyui";
import containerQueries from "@tailwindcss/container-queries";
/** @type {import('tailwindcss').Config} */
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", // Slate-900
"base-200": "#1e293b", // Slate-800
"base-300": "#334155", // Slate-700
"info": "#0ea5e9",
"success": "#10b981",
"warning": "#f59e0b",
"error": "#ef4444",
},
},
],
darkTheme: "dark",
},
}
|