-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
55 lines (51 loc) · 1.21 KB
/
styles.js
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
export const colors = {
// Style Guide Colors
primaryColor: '#207bcc',
primaryHighlight: '#ecf5fe',
primaryAccent: '#596097',
secondaryColor: '#fd6120',
secondaryAccent: '#de4f18',
darkAccent: '#3c3d3f',
highlightBright: '#edeef0',
highlightMedium: '#b8c5d0',
highlightDark: '#9da4ad',
highlightDarker: '#3c4c65',
successGreen: '#4eda1f',
background: '#edf5fe',
errorRed: '#dc3636',
white: '#ffffff',
black: '#000000',
};
export const fontSizes = {
smaller: '1.5rem', // 24px
small: '1.625rem', // 26px
medium: '1.75rem', // 28px
large: '1.875rem', // 30px
larger: '2.125rem', // 34px
xlarge: '2.375rem', // 38px
xxlarge: '2.5rem', // 40px
};
export const checkbox = {
marginBottom: '16 px',
marginTop: '16px',
width: '20px',
height: '20px',
flex: 1,
};
export const tableStyles = {
head: {
background: colors.lightGrayText,
color: colors.black,
fontWeight: 600,
fontSize: '1rem',
},
table: {
border: `1px solid ${colors.lightGrayText}`,
minHeight: '200px',
},
cell: {
color: colors.black,
fontWeight: 600,
fontSize: '1rem',
},
};