2018-11-01
Link: Using Dark Mode in CSS
https://paulmillr.com/posts/using-dark-mode-in-css/
/* Text and background color for light mode */
body {
color: #333;
}
/* Text and background color for dark mode */
@media (prefers-color-scheme: dark) {
body {
color: #ddd;
background-color: #222;
}
}
Example code from Paul Miller.