-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
41 lines (40 loc) · 733 Bytes
/
theme.js
File metadata and controls
41 lines (40 loc) · 733 Bytes
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
const blue = "dodgerblue";
export default {
googleFont:
"https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap",
fonts: {
body: '"Open Sans", sans-serif',
},
colors: {
text: "rgb(59, 62, 68)",
background: "#fff",
primary: blue,
blue,
black: "#000",
codeColor: "#666666",
codeBackground: "#f7f7f7",
inlineCode: "brown",
},
fontWeights: {
heading: 600,
bold: 600,
},
styles: {
a: {
color: blue,
},
p: {
padding: 10,
textAlign: "center",
},
pre: {
color: "codeColor",
bg: "codeBackground",
padding: 15,
fontSize: 18,
},
code: {
color: "inlineCode",
},
},
};