1 min read
Dark mode support
Every website has to support dark mode now. Probably because of the new iPhone launch or so. Nonetheless, I added a bunch of CSS to this theme as well.
/* Dark Mode */
@media (prefers-color-scheme: dark) {
body,
body > header {
background-color: #444;
color: #e4e4e4;
}
p, li, nav a, label, input,
h1, h2, h3, h4, h5, h6 {
color: #e4e4e4;
}
a {
color: #e39777;
}
img {
filter: grayscale(30%);
}
nav .logo img,
nav .search img {
filter: invert(1)
}
/* Article */
article blockquote {
background-color: #444;
}
/* Archive */
section.archive a {
color: #e39777;
}
section.archive .link:hover {
background: #cbf8fc;
border-bottom-color: #cbf8fc;
}
}
Enable dark mode on your device and fancy the view.
Categories: BlogTags: dark mode , css , theme
Edit this page
Show statistic for this page