-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.ts
57 lines (57 loc) · 907 Bytes
/
theme.ts
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
export default {
colors: {
primary: {
main: '#ca1f1f'
},
gray: {
lightest: '#eeeeee',
lighter: '#cccccc',
medium: '#aaaaaa',
darker: '#444444',
darkest: '#111111'
}
},
dimensions: {
0: '0',
1: '0.25rem',
2: '0.5rem',
3: '0.75rem',
4: '1rem',
5: '1.25rem',
6: '1.5rem',
7: '2rem',
8: '2.5rem',
9: '3rem',
10: '4rem',
11: '5rem',
12: '6rem',
13: '8rem',
14: '10rem',
15: '12rem',
16: '14rem',
17: '16rem',
18: '18rem',
19: '20rem',
20: '25rem'
},
text: {
xs: '0.75rem',
sm: '0.875rem',
md: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
'8xl': '6.5rem'
},
transitionTime: '0.3s',
boxShadow: {
all: '0 0 2px rgba(0,0,0,0.3)',
bottom: '0 4px 2px -2px rgba(0,0,0,0.2)',
top: '0 0 8px rgba(0,0,0,.4)'
}
} as const;