forked from happeo/happeouikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doczrc.js
42 lines (42 loc) · 882 Bytes
/
doczrc.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
const fontFamily = "IBM Plex Sans";
export default {
title: "Happeo Kit",
description: "Happeo Kit - The Awesome React kit of Happeo",
files: "**/*.mdx",
ignore: [
"readme.md",
"changelog.md",
"code_of_conduct.md",
"contributing.md",
"license.md",
"node_modules/*"
],
themeConfig: {
showPlaygroundEditor: false,
colors: {
primary: "#29C4A9",
secondary: "#2A3443",
sidebarBg: "#eeeff054",
dark: "#13161F",
blue: "#29C4A9",
skyBlue: "#009DFF",
link: "#29C4A9"
},
styles: {
h1: {
fontFamily: fontFamily,
fontSize: 48
},
h2: {
fontFamily: fontFamily,
fontSize: 36,
borderBottom: "1px solid #96969654",
paddingBottom: "5px",
lineHeight: "40px"
},
body: {
fontFamily: fontFamily
}
}
}
};