-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.js
46 lines (46 loc) · 907 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 = {
fonts: {
heading: 'Caveat',
body: 'Text Me One, sans-serif',
monospace: 'Work Sans, monospace',
},
colors: {
text: '#20253F',
background: 'white',
primary: '#20253F',
secondary: '#FE5B5B',
light: '#E0E6ED',
},
text: {
heading: {
textAlign: 'center',
}
},
styles: {
a: {
color: 'inherit'
},
pre: {
bg: 'light',
padding: '1rem',
borderRadius: '1rem',
},
code: {
bg: 'light',
padding: '1rem',
borderRadius: '1rem',
},
blockquote: {
borderLeft: `10px solid`,
borderLeftColor: 'light',
paddingLeft: '1rem',
fontStyle: 'italic',
},
cite: {
display: 'block',
float: 'right',
}
},
googleFont: 'https://fonts.googleapis.com/css2?family=Caveat&family=Text+Me+One&family=Work+Sans&display=swap'
};
export default theme;