-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.js
46 lines (45 loc) · 968 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
38
39
40
41
42
43
44
45
46
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: '#fff',
primary: '#1b7da0',
secondary: '#144168',
danger: '#dc3545',
link: '#464C5A',
linkHover: '#0d3e50',
light: '#87ceeb',
},
home: {
textSearchButton: {
background: '#f2c72d',
text: '#fff',
},
},
header: {
height: '80px',
borderBottomWidth: '1px',
},
footer: {
minHeight: '150px',
},
components: {
Media: {
GraphIconContainer: {
backgroundColor: 'transparent',
padding: 0,
}
},
GraphIcon: {
StyledImage: {
height: 36
}
}
}
};
export default theme;