-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
57 lines (54 loc) · 1.24 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
import { css } from 'styled-components';
import breakpoints from '@styles/breakpoints';
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: '#f38468',
secondary: '#144168',
danger: '#dc3545',
linkHover: '#a02a0c',
light: '#f5b1a1',
prediction: '#00578c',
},
home: {
textSearchButton: {
background: '#f38468',
text: '#fff',
},
imageSearchButton: {
background: '#9ca4d3',
text: '#fff',
},
},
header: {
height: '80px',
borderBottomWidth: '1px',
},
footer: {
minHeight: '150px',
},
pages: {
HomePage: {
Title: css`
background: rgba(255, 255, 255, 0.5);
max-width: 480px;
line-height: 1.25;
padding: 1rem;
text-align: center;
font-weight: 400;
${breakpoints.tablet`
text-align: center;
`}
`
}
},
components: {}
};
export default theme;