-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.js
37 lines (36 loc) · 871 Bytes
/
theme.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
const theme = {
fontFamily: {
sansSerif:
'Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif',
mono: 'Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace',
},
colors: {
text: '#333',
background: '#f7f7ef',
primary: '#2b4253',
primaryText: '#fff',
secondary: '#144168',
danger: '##dc3545',
linkHover: '#a02a0c',
light: '#f5b1a1',
prediction: '#00578c',
},
home: {
textSearchButton: {
background: '#61b791',
text: '#fff',
},
imageSearchButton: {
background: '#61b791',
text: '#fff',
},
},
header: {
height: '80px',
borderBottomWidth: '1px',
},
footer: {
minHeight: '150px',
},
};
export default theme;