swap to jade theme, fix missing anchor tags

This commit is contained in:
Michael DiLeo
2025-08-14 09:11:44 -05:00
parent f23531dd70
commit f739f87ce4
2 changed files with 27 additions and 11 deletions

View File

@@ -188,7 +188,7 @@
}
}
/* Make headers use primary green color - only for light theme and default */
/* Make headers use primary green color for both themes */
:root:not([data-theme="dark"]) {
--pico-h1-color: var(--pico-primary);
--pico-h2-color: var(--pico-primary);
@@ -198,6 +198,16 @@
--pico-h6-color: var(--pico-primary);
}
/* Make headers use primary color in dark theme too */
[data-theme="dark"] {
--pico-h1-color: var(--pico-primary);
--pico-h2-color: var(--pico-primary);
--pico-h3-color: var(--pico-primary);
--pico-h4-color: var(--pico-primary);
--pico-h5-color: var(--pico-primary);
--pico-h6-color: var(--pico-primary);
}
/* Custom header colors for green theme - light mode */
/* [data-theme="light"],
:root:not([data-theme="dark"]) {