-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstiches.theme.ts
More file actions
44 lines (42 loc) · 1.03 KB
/
Copy pathstiches.theme.ts
File metadata and controls
44 lines (42 loc) · 1.03 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
import {createStitches, globalCss} from '@stitches/react';
export const {styled, css, keyframes, getCssText, theme, createTheme, config} = createStitches({
theme: {
colors: {
primary: '#111111',
background: '#FFFFFF',
light: '#FFFFFF',
rules: '#AAAAAA',
subtle: '#F0F0F0',
accessible: '#666666',
blue: '#18A0FB',
error: '#F24822',
},
fontSizes: {
bodyText: 11,
button: 11,
heading: 16,
},
letterSpacings: {
relaxed: '.05rem',
},
lineHeights: {
basic: '16px',
},
space: {
50: '8px',
100: '16px',
200: '32px',
},
shadows: {
popOver: '0px 4px 8px 0px rgba(102, 102, 102, 0.25)',
},
},
});
export const GlobalStyles = globalCss({
body: {
margin: 0,
height: '100%',
width: '100%',
overflow: 'hidden',
},
});