Compare commits

...

6 Commits

Author SHA1 Message Date
Aleksandr Vinokurov
a82fd9c4c0
Merge 6c2957949e into 73104814ba 2023-11-19 14:54:19 -07:00
tek
73104814ba Bumps version 2023-11-18 08:58:26 +01:00
Aleksandr Vinokurov
6c2957949e Remove automatic dark/light mode switch until it is merged from insiders private repo
See https://squidfunk.github.io/mkdocs-material/insiders/#14000-goats-horn

Present day it is 13_160 per month and it will be merged when 14_000 goal is achieved
2023-09-20 15:22:07 +02:00
Aleksandr Vinokurov
112132699c
Add files via upload 2023-09-19 22:14:43 +02:00
Aleksandr Vinokurov
86f1f43df1
Update mkdocs.yml
Co-authored-by: kpcyrd <git@rxv.cc>
2023-09-19 19:24:48 +02:00
Aleksandr Vinokurov
f3b168c5e5
Add dark mode for theme
See https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/?h=dark#automatic-light-dark-mode
2023-09-19 13:25:16 +02:00
4 changed files with 46 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -1,5 +1,32 @@
mkdocs==1.2.3
mkdocs-autorefs
mkdocs-material
mkdocs-material-extensions
mkdocstrings
Babel==2.12.1
certifi==2023.7.22
charset-normalizer==3.2.0
click==8.1.7
colorama==0.4.6
ghp-import==2.1.0
idna==3.4
importlib-metadata==6.8.0
Jinja2==3.0.3
Markdown==3.4.4
MarkupSafe==2.1.3
mergedeep==1.3.4
mkdocs==1.5.3
mkdocs-autorefs==0.5.0
mkdocs-material==9.3.2
mkdocs-material-extensions==1.1.1
mkdocstrings==0.23.0
packaging==23.1
paginate==0.5.6
pathspec==0.11.2
platformdirs==3.10.0
Pygments==2.16.1
pymdown-extensions==10.3
python-dateutil==2.8.2
PyYAML==6.0.1
pyyaml_env_tag==0.1
regex==2022.10.31
requests==2.31.0
six==1.16.0
urllib3==2.0.5
watchdog==3.0.0
zipp==3.17.0

View File

@ -14,6 +14,19 @@ markdown_extensions:
- pymdownx.highlight:
use_pygments: true
theme:
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
name: material
features:
- tabs

View File

@ -3,4 +3,4 @@
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
MVT_VERSION = "2.4.2"
MVT_VERSION = "2.4.3"