forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
36 lines (35 loc) · 635 Bytes
/
theme.js
File metadata and controls
36 lines (35 loc) · 635 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
import Color from 'color'
export default {
color: {
fade: (color, fade) =>
Color(color)
.fade(fade)
.string(),
lighten: (color, lighten) =>
Color(color)
.lighten(lighten)
.string(),
primary: '#C7402D',
secondary: '#15959F',
dark: '#133046',
white: '#FAFAFA',
gray: '#EAEAEA',
black: '#333',
},
padding: {
smaller: '0.5rem',
small: '1rem',
normal: '2rem',
large: '3rem',
},
borderRadius: {
normal: '3px',
large: '6px',
},
fontSize: {
normal: '16px',
large: '20px',
larger: '22px',
largest: '34px',
},
}