-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
New standard is registered on W3C in Media Queries Level 5.
Example:
/* Light mode */
@media (prefers-color-scheme: light) {
body {
background-color: #000;
color: white;
}
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #000;
color: white;
}
}