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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
With a few lines you can add support for user color schemes:
minimal.css @media (prefers-color-scheme: dark) { body, code, pre { background: #333; color: white; } h1, h2, strong { color: white; } }
minimal-inputs.css @media (prefers-color-scheme: dark) { input, input[type="text"], input[type="password"], input[type="email"], input[type="tel"], select, textarea { background: #444; color: white; } }
Maybe they could go to a file called dark.css, I don't know ... it's your choice.
Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme
The text was updated successfully, but these errors were encountered:
Excellent, thank you!
Sorry, something went wrong.
No branches or pull requests
With a few lines you can add support for user color schemes:
Maybe they could go to a file called dark.css, I don't know ... it's your choice.
Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme
The text was updated successfully, but these errors were encountered: