Skip to content

Commit

Permalink
docs: Make the website's theme adjustable.
Browse files Browse the repository at this point in the history
The website will also adjust to the system default theme now. 
I mostly did this because I am a darkkmode user and we didn't provide it yet.
  • Loading branch information
PhilipMetzger committed Jan 7, 2024
1 parent 54a967a commit e79fd2e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@ theme:
language: 'en'
features:
# - navigation.top

# Respect the users default settings and add a toggle for manually choosing
# automatic/light/dark palette.
# taken from https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#system-preference
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to system preference
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to light mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to dark mode

extra:
version:
provider: mike
Expand Down

0 comments on commit e79fd2e

Please sign in to comment.