-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 1.25 KB
/
Copy pathtailwind.config.js
File metadata and controls
43 lines (43 loc) · 1.25 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
// tailwind.config.js
export default {
content: ['./index.html', './src/**/*.{js,jsx}'],
darkMode: 'class',
theme: {
extend: {
FontFamily:{
sans: ['Lexend', 'sans-serif'],
},
colors: {
surface: {
light: '#ffffff', // White
dark: '#18181B', // Neutral black (no navy!)
},
text: {
light: 'gray-500', // Slate-800
dark: '#f1f5f9', // Slate-100
},
heading: {
light: 'gray-500', // Slate-900
dark: '#f8fafc', // Slate-50
},
primary: {
light: '#16A34A', // Emerald-600 (main green)
dark: '#22C55E', // Emerald-500 (bright green on dark)
},
secondary: {
light: '#4ADE80', // Emerald-400 (fresh accent green)
dark: '#86EFAC', // Emerald-300 (lighter for dark mode contrast)
},
accent: {
light: '#10B981', // Emerald-500 (green accent in light)
dark: '#34D399', // Emerald-400 (soft glowing green in dark)
},
muted: {
light: '#e5e7eb', // Gray-200 (subtle borders/light bg)
dark: '#374151', // Gray-700 (neutral muted dark bg)
},
},
},
},
plugins: [],
};