-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
42 lines (41 loc) · 860 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
// Example theme.js
import theme from "mdx-deck/themes";
export default {
...theme,
font: "Avenir, Helvetica, sans-serif",
table: {
borderCollapse: "collapse",
margin: "5px",
width: "95%",
td: {
border: "1px solid black",
padding: "1rem"
}
},
css: {
...theme.css,
li: {
textAlign: "left",
marginBottom: "1rem"
},
kbd: {
fontFamily: "Avenir, Helvetica, sans-serif",
display: "inline-block",
borderRadius: "3px",
padding: "5px 10px",
textShadow: "0 0 4px #ffffff66",
boxShadow: "1px 1px 1px #777",
margin: "3px",
verticalAlign: "text-bottom",
background: "#111",
fontWeight: "600",
color: "#EEE",
fontVariant: "small-caps",
letterSpacing: "1px"
}
},
colors: {
...theme.colors,
text: "#333"
}
};