-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.py
38 lines (38 loc) · 1.03 KB
/
conf.py
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
ub_html_theme_options = {
"icon": {
"repo": "fontawesome/brands/github",
},
"font": {"code": "JetBrains Mono", "text": "Recursive"},
"globaltoc_collapse": True,
"features": [
"navigation.top",
"search.share",
"navigation.tracking",
"toc.follow",
"content.tabs.link",
],
"palette": [
{
"media": "(prefers-color-scheme: light)",
"scheme": "default",
"primary": "yellow",
"accent": "yellow",
"toggle": {
"icon": "material/weather-night",
"name": "Switch to dark mode",
},
},
{
"media": "(prefers-color-scheme: dark)",
"scheme": "slate",
"primary": "yellow",
"accent": "yellow",
"toggle": {
"icon": "material/weather-sunny",
"name": "Switch to light mode",
},
},
],
"toc_title_is_page_title": True,
"toc_title": "Table of Contents",
}