You are viewing a single comment's thread.

view the rest of the comments →

0
1

[–] riselife 0 points 1 point (+1|-0) ago 

I agree. My current project at /v/improve would probably piss quite a few night mode people off (! Warning bright colors!)I was planning on making a night variant but probably won't get to it for a few weeks. This would be super helpful in the meantime.

0
2

[–] jorok 0 points 2 points (+2|-0) ago 

If you don't have time to make you subverse nightmode compatible, I suggest you prefix all selectors with .light

For example, instead of this:

#container {
    background: #FFF8DF;
 }

 .even {
    background: #FFEFC6;
 }

You should do this:

.light #container {
    background: #FFF8DF;
 }

 .light .even {
    background: #FFEFC6;
 }

This way you'll only change the subverse in light mode and won't screw up nightmode.

0
1

[–] riselife 0 points 1 point (+1|-0) ago 

Great tip, thanks! I'll try implementing it in the morning!