site banner

[Site] Dark Mode

Long time lurker, first time writer.

Apologies in advance if the request has been made. I’m wondering if logged in users can select a dark mode to help with reducing blue light exposure? I realize that the UI can be modified with custom code, but a setting to toggle would be nice.

Thanks in advance.

6
Jump in the discussion.

No email address required.

I use this custom CSS for reddit-like upvote/downvote arrow colors. Worth noting that on my phone, I have to tap on something else after tapping the vote arrow for the color change to apply. Works with no surprises on desktop though.

.active.arrow-up::before {
    color: #bd2130;
}

.active.arrow-down::before {
    color: #0062cc;
}