DEV Community

Discussion on: Simple Dark/Light mode

Collapse
 
drawcard profile image
Drawcard

In addition you can implement prefers-color-scheme media queries to also trigger dark mode, if this is set in user preferences: developer.mozilla.org/en-US/docs/W...

@media (prefers-color-scheme: dark) {
  --bg: black;
  --font-color: white;
  --btn-bg: white;
  --btn-color: black;
}
Collapse
 
khuongduybui profile image
Duy K. Bui

I also read somewhere that you can also hook into the ambient sensor of the laptop.

Not sure if the following was the original published source but that's where I read it.
blog.arnellebalane.com/using-the-a...

Collapse
 
matoval profile image
matoval

That's awesome!