-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
38 lines (32 loc) · 846 Bytes
/
mkdocs.yml
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
site_name: Djantic
site_description: Pydantic model schemas for Django ORM
site_url: https://github.com/jordaneremieff/djantic
theme:
name: material
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deeppurple
accent: deeppurple
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
repo_name: jordaneremieff/djantic
repo_url: https://github.com/jordaneremieff/djantic
edit_uri: ""
nav:
- Introduction: 'index.md'
- Usage: 'usage.md'
markdown_extensions:
- mkautodoc
- pymdownx.highlight
- pymdownx.superfences