Dark mode based on 39C3 theme #45

Merged
stb merged 2 commits from darkmode into main 2025-11-27 15:01:54 +01:00
2 changed files with 31 additions and 1 deletions

View file

@ -16,4 +16,34 @@ th, td {
.title-post-date {
font-size: .7em;
margin-left: 2em;
}
@media (prefers-color-scheme: dark) {
:root {
--color-backdrop: #141414;
--color-headings: #faf5f5;
--color-body-bg: #242424;
--color-header-bg: #242424;
--color-text: #faf5f5;
--color-link: #66f2ff;
--color-footer-bg: #242424;
--color-border: #faf5f5;
--color-button: #141414;
--color-button-text: #faf5f5;
--color-button-hover: #343434;
--color-brand: #66f2ff;
--color-text-meta: #faf5f5;
--color-mobile-menu: #141414;
}
nav ul li {
flex-grow: 1;
text-align: center;
}
.main-menu a:active {
text-decoration: none;
}
a {
text-decoration: none;
}
}

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before After
Before After