automaton
2
Q:

css darkmode

@media (prefers-color-scheme: dark) {

}
3
body {
  background-color: black;
  color: white;
}

@media screen and (prefers-color-scheme: light) {
  body {
    background-color: white;
    color: black;
  }
}
1

New to Communities?

Join the community