Hey! when a Glitch app starts up from sleep, could we maybe have it be dark for people who has their OS set to dark mode…? would be nice to not have a white page appear on an otherwise dark app…
doesn’t have to be anything fancy, just a little addition to the CSS…
@media (prefers-color-scheme: dark) {
html {
background-color: #111;
color: #eee;
}
}