-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.12 KB
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
// Brand ramps — sage/teal/amber tuned for light + dark surfaces.
brand: {
50: '#f0fbf7',
100: '#d6f4e7',
200: '#aee9cf',
300: '#7cd6b0',
400: '#46bd8c',
500: '#22a06d', // primary
600: '#178058',
700: '#136647',
800: '#11523a',
900: '#0e4330',
},
ink: {
50: '#f7f8fa',
100: '#eef0f4',
200: '#dde1e8',
300: '#bfc5d1',
400: '#8c95a7',
500: '#5a6478',
600: '#3e4658',
700: '#2a3142',
800: '#1a1f2d',
900: '#0f1320',
},
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'ui-monospace', 'monospace'],
},
boxShadow: {
soft: '0 1px 2px rgba(15,19,32,0.06), 0 4px 16px rgba(15,19,32,0.06)',
},
},
},
plugins: [],
};