diff --git a/exampleSite/content/en/usage/configuration.md b/exampleSite/content/en/usage/configuration.md
index 8d497e0..3b16af7 100644
--- a/exampleSite/content/en/usage/configuration.md
+++ b/exampleSite/content/en/usage/configuration.md
@@ -106,6 +106,9 @@ enableRobotsTXT = true
# bright spots while using the dark mode.
geekdocDarkModeDim = false
+ # (Optional, default false) Enforce code blocks to always use the dark color theme.
+ geekdocDarkModeCode = false
+
# (Optional, default true) Display a "Back to top" link in the site footer.
geekdocBackToTop = true
@@ -225,6 +228,9 @@ params:
# bright spots while using the dark mode.
geekdocDarkModeDim: false
+ # (Optional, default false) Enforce code blocks to always use the dark color theme.
+ geekdocDarkModeCode: false
+
# (Optional, default true) Display a "Back to top" link in the site footer.
geekdocBackToTop: true
diff --git a/exampleSite/static/custom.css.example b/exampleSite/static/custom.css.example
index 341a121..2c6c213 100644
--- a/exampleSite/static/custom.css.example
+++ b/exampleSite/static/custom.css.example
@@ -6,7 +6,7 @@
/* Light mode theming */
:root,
-:root[color-mode="light"] {
+:root[color-theme="light"] {
--header-background: #4ec58a;
--header-font-color: #ffffff;
@@ -76,7 +76,7 @@
}
/* Dark mode theming */
-:root[color-mode="dark"] {
+:root[color-theme="dark"] {
--header-background: #4ec58a;
--header-font-color: #ffffff;
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 071e30f..2c953f4 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,5 +1,9 @@
-
+
{{ partial "head/meta" . }}
diff --git a/layouts/partials/site-header.html b/layouts/partials/site-header.html
index 137e53f..5e88360 100644
--- a/layouts/partials/site-header.html
+++ b/layouts/partials/site-header.html
@@ -31,7 +31,7 @@
{{ end }}
-
+