-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 864 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 864 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/renderer/**/*.{js,ts,jsx,tsx,html}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#3b82f6',
dark: '#2563eb',
light: '#60a5fa',
},
danger: {
DEFAULT: '#ef4444',
dark: '#dc2626',
light: '#f87171',
},
success: {
DEFAULT: '#10b981',
dark: '#059669',
light: '#34d399',
},
warning: {
DEFAULT: '#f59e0b',
dark: '#d97706',
light: '#fbbf24',
},
dark: {
bg: '#1a1a1a',
panel: '#2d2d2d',
border: '#3f3f3f',
hover: '#404040',
text: '#e5e5e5',
'text-muted': '#a3a3a3',
},
},
},
},
plugins: [],
}