We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nope!
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; }
The text was updated successfully, but these errors were encountered:
philwareham
No branches or pull requests
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:
Note: changing heading links color, gives a little darker white on "Dark Mode" but keeps a good contrast ratio on "Light Mode":
The text was updated successfully, but these errors were encountered: