-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstitches.config.js
More file actions
51 lines (50 loc) · 820 Bytes
/
stitches.config.js
File metadata and controls
51 lines (50 loc) · 820 Bytes
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
import { createStitches } from '@stitches/react';
import {
blue,
green,
yellow,
red,
mint,
gray,
grayA
} from '@radix-ui/colors';
export const { styled, getCssText } = createStitches({
theme: {
fonts: {
system: 'system-ui',
},
space:{
1: '8px',
2: '15px',
3: '22px',
4: '32px',
},
fontSizes: {
1: '13px',
2: '15px',
3: '17px',
},
radii:{
1: '7px',
2: '10px',
3: '15px',
4: '30px',
},
colors:{
...blue,
...green,
...yellow,
...red,
...mint,
...gray,
...grayA,
scuPrimary:'#b30738',
scuSecondary:'#862633',
},
shadows:{
1:`0 0 7px ${gray.gray4}`,
2:`0 0 12px ${gray.gray5}`,
3:`0 0 20px ${gray.gray6}`,
}
},
});