Add a button to switch between light and dark theme

This commit is contained in:
TheFrenchGhosty 2023-07-10 15:08:59 +02:00
parent c50cc9c555
commit fd38eb83d3
No known key found for this signature in database
GPG Key ID: 4E616F0FFE25B75B
1 changed files with 17 additions and 2 deletions

View File

@ -42,8 +42,23 @@ nav:
theme: theme:
name: material name: material
font: false font: false
palette:
primary: black palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/brightness-4
name: Switch to light mode
logo: images/invidious.png # https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#logo logo: images/invidious.png # https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#logo
favicon: images/favicon.ico # https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#favicon favicon: images/favicon.ico # https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#favicon
features: features: