-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.jsx
59 lines (58 loc) · 1.2 KB
/
theme.config.jsx
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { Logo } from "./public/Logo";
// eslint-disable-next-line import/no-anonymous-default-export
export default {
logo: (
<header
style={{
color: "#02A8A8",
fontWeight: 700,
fontSize: 20,
display: "flex",
gap: 8,
alignItems: "center",
}}
>
<Logo width={36} height={36} />
Scrollery
</header>
),
logoLink: "/",
project: {
link: "https://github.com/nguyend-nam/scrollery",
},
footer: {
text: (
<span style={{ color: "#6B7280" }}>
<a href="https://choosealicense.com/licenses/isc/" target="_blank">
ISC
</a>{" "}
©{" "}
<a
href="https://github.com/nguyend-nam"
target="_blank"
style={{ fontWeight: 600, color: "#018383" }}
>
Nam Nguyen Dinh
</a>
.
</span>
),
},
editLink: {
component: () => null,
},
feedback: {
content: null,
},
gitTimestamp: null,
sidebar: {
titleComponent: ({ title }) => (
<span className="truncate doc-sidebar-item">{String(title)}</span>
),
},
darkMode: false,
nextThemes: {
defaultTheme: "light",
forcedTheme: "light",
},
};