change light mode to line up better with dark mode

This commit is contained in:
2026-06-22 12:11:04 -04:00
parent 6385ef9a86
commit 8799733474
3 changed files with 25 additions and 19 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ const { pageTitle } = Astro.props;
{/* Note: The styles are inside the document here because otherwise it breaks Astro's parsing */}
<style>
header {
background-color: var(--primary-color-faded);
background-color: var(--navbar-color);
padding: 0.5rem var(--content-padding);
}
@@ -61,7 +61,7 @@ const { pageTitle } = Astro.props;
}
&:hover, &:active {
text-decoration-color: var(--accent-color);
text-decoration-color: var(--navbar-accent-color);
}
}
}