Why can't we have "Dark Mode" Meh forums?

1

Not having detectable dark mode on this site is so post-geocities.

It’s super easy.

 @media (prefers-color-scheme: dark) {
    body {
        color: #b0b0b0;
        background-color: #101010;
    }
 
    .containerOuter {
        background-color: #000;
        color: #b0b0b0;
    }
 
    .blogBodyContainer {
        background-color: #101010;
    }
 
    .line-tan {
        background: initial;
    }
 
    #mainContent {
        background-color: #000;
    }
...snip...
}

Stolen from here.