-
-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Milestone
Description
Is your feature request related to a problem?
Nope!
What is the feature?
Maybe it's the time to add a "Dark Mode" support into the Default theme?
Simply because it's a user choice, after all.
Here is a simple way with few lines of CSS:
@media (prefers-color-scheme:dark) {
html{background-color: #000}
body{filter: invert(100%)}
header *,header a,footer *,footer a{filter: invert(0%)}
img{filter: invert(100%)}
}
Note: changing heading links color, gives a little darker white on "Dark Mode" but keeps a good contrast ratio on "Light Mode":
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: #333;
}
Metadata
Metadata
Assignees
Labels
No labels