feat: add browser_theme_color config option (#143)

This commit is contained in:
Óscar
2023-09-09 19:48:53 +02:00
committed by GitHub
parent 9acaba6e35
commit 772ca29dcd
3 changed files with 21 additions and 0 deletions

View File

@@ -47,6 +47,12 @@ default_theme = "light"
# All other skins have optimal contrast.
skin = ""
# Set browser theme colour. Can be a single colour or [light, dark].
# Note: Bright colors may be ignored in dark mode.
# More details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color
# browser_theme_color = "#087e96" # Example of single value.
# browser_theme_color = ["#ffffff", "#000000"] # Example of light/dark colours.
# List additional stylesheets to load site-wide.
# These stylesheets should be located in your site's `static` directory.
# Example: stylesheets = ["extra1.css", "path/extra2.css"]