-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
45 lines (45 loc) · 1.01 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
export default {
fonts: {
body: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif',
monospace: '"Roboto Mono", monospace',
},
colors: {
text: 'black',
background: 'white',
primary: '#276b44',
},
styles: {
h1: {
textTransform: 'uppercase',
letterSpacing: '0.1em',
color: 'primary'
},
h2: {
textTransform: 'uppercase',
letterSpacing: '0.1em',
color: '#276b44',
"&:before": {
content: '""',
float: 'left',
display: 'block',
width: '5px',
height: '90px',
marginRight: '20px',
backgroundColor: 'primary'
}
},
ul: {
paddingLeft: '100px'
},
li: {
marginTop: '50px',
marginBottom: '50px'
},
blockquote: {
fontStyle: 'italic',
},
Slide: {
padding: 0
}
}
}