-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
executable file
·38 lines (37 loc) · 843 Bytes
/
theme.js
File metadata and controls
executable file
·38 lines (37 loc) · 843 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
const yellow = "#fd0";
export const theme = {
// Customize your presentation theme here.
//
// Read the docs for more info:
// https://github.com/jxnblk/mdx-deck/blob/master/docs/theming.md
// https://github.com/jxnblk/mdx-deck/blob/master/docs/themes.md
googleFont:
"https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto+Mono",
fonts: {
body: '"Roboto Condensed", system-ui, sans-serif',
monospace: '"Roboto Mono", monospace'
},
colors: {
text: "#000",
background: yellow,
primary: "#333"
},
text: {
heading: {
textTransform: "uppercase",
textAlign: "center",
padding: "0 5%"
}
},
styles: {
pre: {
textAlign: "left",
color: "background",
bg: "text"
},
code: {
color: "background",
bg: "text"
}
}
};