Comment by dang 5 months ago https://news.ycombinator.com/item?id=23199062 3 comments dang Reply rcarmo 5 months ago That thread is 5 years old, and nothing really came out of it.The genius solution in there is probably this one: @media (prefers-color-scheme:dark){body{filter:invert(1) hue-rotate(180deg)}} ...which you can try by doing this in the browser console: const styleElement = document.createElement('style'); styleElement.type = 'text/css'; styleElement.textContent = "@media (prefers-color-scheme: dark) { html { filter: invert(1) hue-rotate(180deg); } }"; document.head.appendChild(styleElement); But I get that there are a lot of opinions. Just try one, put up a vote over a week, do it over 4-6 weeks, settle on the one that has the best feedback... brudgers 5 months ago That thread is 5 years oldThis might be what we are up against:https://norvig.com/21-days.htmlhttps://paulgraham.com/hundred.html rcarmo 5 months ago I’m all for stability and all (heck, I still use vanilla vim), but some things are… necessary.
rcarmo 5 months ago That thread is 5 years old, and nothing really came out of it.The genius solution in there is probably this one: @media (prefers-color-scheme:dark){body{filter:invert(1) hue-rotate(180deg)}} ...which you can try by doing this in the browser console: const styleElement = document.createElement('style'); styleElement.type = 'text/css'; styleElement.textContent = "@media (prefers-color-scheme: dark) { html { filter: invert(1) hue-rotate(180deg); } }"; document.head.appendChild(styleElement); But I get that there are a lot of opinions. Just try one, put up a vote over a week, do it over 4-6 weeks, settle on the one that has the best feedback... brudgers 5 months ago That thread is 5 years oldThis might be what we are up against:https://norvig.com/21-days.htmlhttps://paulgraham.com/hundred.html rcarmo 5 months ago I’m all for stability and all (heck, I still use vanilla vim), but some things are… necessary.
brudgers 5 months ago That thread is 5 years oldThis might be what we are up against:https://norvig.com/21-days.htmlhttps://paulgraham.com/hundred.html rcarmo 5 months ago I’m all for stability and all (heck, I still use vanilla vim), but some things are… necessary.
rcarmo 5 months ago I’m all for stability and all (heck, I still use vanilla vim), but some things are… necessary.
That thread is 5 years old, and nothing really came out of it.
The genius solution in there is probably this one:
...which you can try by doing this in the browser console:
But I get that there are a lot of opinions. Just try one, put up a vote over a week, do it over 4-6 weeks, settle on the one that has the best feedback...
That thread is 5 years old
This might be what we are up against:
https://norvig.com/21-days.html
https://paulgraham.com/hundred.html
I’m all for stability and all (heck, I still use vanilla vim), but some things are… necessary.