Make site title visible in dark mode

This commit is contained in:
Joshua Goins 2023-03-06 21:42:18 -05:00
parent 2e0a27c0a8
commit eb11b2a3e6

View file

@ -126,6 +126,12 @@ header h1 {
margin-left: 0.25em;
}
@media (prefers-color-scheme: dark) {
header h1 {
color: white;
}
}
aside {
background-color: var(--background-secondary);