forked from lbjlaq/Antigravity-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·47 lines (46 loc) · 1.33 KB
/
tailwind.config.js
File metadata and controls
executable file
·47 lines (46 loc) · 1.33 KB
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
import daisyui from "daisyui";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {},
},
plugins: [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",
},
}