PS: Also happy to hear people's favorite indie plugin to fix this! <3
Ask HN: Can we get a HN background color (dark mode)
1–10 of 29 posts
Re: Ask HN: Can we get a HN background color (dark mode)
#2Re: Ask HN: Can we get a HN background color (dark mode)
#3These don't work on chrome mobile or safari mobile which make up a sizeable number of users.
Please, can we just have native dark mode?
I made a pretty mediocre HN client just for this feature https://github.com/rsimmons1/FlutterHnReader
I don't feel like working on it anymore, let's just have dark mode.
Edit: apologies spoke out of my domain on safari iOS, it supports extensions I'm an Android user.
Re: Ask HN: Can we get a HN background color (dark mode)
#4Before anyone comments chrome extensions. These don't work on chrome mobile or safari mobile which make up a sizeable number of users. Please, can we just have native dark mode? I made a pretty mediocre HN client just for this feature https://github.com/rsimmons1/FlutterHnReader I don't feel like working on it anymore, let's just have dark mode. Edit: apologies spoke out of my domain on safari iOS, it supports extens…
Re: Ask HN: Can we get a HN background color (dark mode)
#5Before anyone comments chrome extensions. These don't work on chrome mobile or safari mobile which make up a sizeable number of users. Please, can we just have native dark mode? I made a pretty mediocre HN client just for this feature https://github.com/rsimmons1/FlutterHnReader I don't feel like working on it anymore, let's just have dark mode. Edit: apologies spoke out of my domain on safari iOS, it supports extens…
Re: Ask HN: Can we get a HN background color (dark mode)
#6Before anyone comments chrome extensions. These don't work on chrome mobile or safari mobile which make up a sizeable number of users. Please, can we just have native dark mode? I made a pretty mediocre HN client just for this feature https://github.com/rsimmons1/FlutterHnReader I don't feel like working on it anymore, let's just have dark mode. Edit: apologies spoke out of my domain on safari iOS, it supports extens…
Re: Ask HN: Can we get a HN background color (dark mode)
#7Re: Ask HN: Can we get a HN background color (dark mode)
#8Re: Ask HN: Can we get a HN background color (dark mode)
#9 @-moz-document domain(news.ycombinator.com) {
@media (prefers-color-scheme: dark) {
body {background-color: #111 !important;}
#hnmain {background-color: #181818 !important;}
.c00, a:link, .subtext a:link { color: #eee !important; }
.comhead { opacity: 0.5 !important; }
a:visited, .subtext a:visited, .pagetop, .reply a { color: #777 !important; }
button, select, input, textarea { -moz-appearance: none !important; color: #eee !important; background-color: #444 !important; border: 0.5px solid gray !important; }
pre, code { color: #9d9 !important; }
}
}
Obvious caveats apply: it’s mine, it’s certainly incomplete, yadayada. But hey, been working for me for years! Also, now that you know that the feature exists, you can probably search "Hacker News dark mode userContent.css" and find better / more complete ones :)Always a pleasure helping tasoeur.
Re: Ask HN: Can we get a HN background color (dark mode)
#10 You can add styles that override existing styles, or styles
specific to new elements that your user script inserts.[0]
HTH