-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstitches.config.ts
76 lines (65 loc) · 1.5 KB
/
stitches.config.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { createStitches } from '@stitches/react'
export const { styled, getCssText, globalCss, theme } = createStitches({
theme: {
fonts: {
default: 'Nunito Sans, sans-serif',
},
space: {
px: '1px',
1: '0.25rem',
2: '0.5rem',
3: '0.75rem',
4: '1rem',
5: '1.25rem',
6: '1.5rem',
7: '1.75rem',
8: '2rem',
10: '2.5rem',
},
fontSizes: {
xs: '0.75rem',
sm: '0.875rem',
md: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
},
fontWeights: {
regular: '400',
medium: '500',
bold: '700',
},
lineHeights: {
shorter: '125%',
short: '140%',
base: '160%',
tall: '180%',
},
colors: {
white: '#FFFFFF',
black: '#000000',
green100: '#50B2C0',
green200: '#255D6A',
green300: '#0A313C',
purple100: '#8381D9',
purple200: '#2A2879',
gray100: '#F8F9FC',
gray200: '#E6E8F2',
gray300: '#D1D6E4',
gray400: '#8D95AF',
gray500: '#303F73',
gray600: '#252D4A',
gray700: '#181C2A',
gray800: '#0E1116',
'gradient-vertical': `linear-gradient(180deg, #7FD1CC 0%, #9694F5 100%)`,
'gradient-horizontal': `linear-gradient(90deg, #7FD1CC 0%, #9694F5 100%)`,
},
radii: {
xs: '2.5px',
sm: '5px',
md: '10px',
lg: '20px',
full: '99999px',
}
}
})