-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
65 lines (64 loc) · 1.52 KB
/
tailwind.config.ts
File metadata and controls
65 lines (64 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { Config } from 'tailwindcss';
export default <Partial<Config>>{
theme: {
extend: {
colors: {
// Brand colors
brand: {
cream: '#F5F4E7',
navy: '#000637',
purple: '#791AFF',
blue: '#1AA4FF',
green: '#19FF83',
yellow: '#FAFF1A',
orange: '#FF671A',
pink: '#FF1A8B',
fuscia: '#D91AFF',
},
// Semantic colors with opacity variations
primary: {
50: '#F5F0FF',
100: '#EBE0FF',
200: '#D6C1FF',
300: '#C2A3FF',
400: '#AD84FF',
500: '#791AFF', // Main purple
600: '#6115CC',
700: '#491099',
800: '#300A66',
900: '#180533',
},
secondary: {
50: '#E6F6FF',
100: '#CCEDFF',
200: '#99DBFF',
300: '#66C9FF',
400: '#33B7FF',
500: '#1AA4FF', // Main blue
600: '#1583CC',
700: '#106299',
800: '#0A4166',
900: '#052133',
},
success: {
50: '#E6FFF3',
100: '#CCFFE8',
200: '#99FFD1',
300: '#66FFBA',
400: '#33FFA3',
500: '#19FF83', // Main green
600: '#14CC69',
700: '#0F994F',
800: '#0A6634',
900: '#05331A',
},
},
backgroundColor: {
base: '#F5F4E7', // Cream background
},
textColor: {
base: '#000637', // Navy text
},
},
},
};