CSS prefers-color-scheme: dark

Putting some content here to test the @media(prefers-color-scheme: dark) media query.

To test it in Chrome go to the dev tool, clic on the three dots symbol and look for Other tools > Rendering > Emulate Preferred color scheme: dark


:root {
  --color-background: #f1f1f1;
  --color-text: #222222;
}

@media(prefers-color-scheme: dark) {
  :root {
    --color-background: #222222;
    --color-text: #f1f1f1;
  }
}
    

just a test