Replies: 1 comment
-
Another option is to use the standard Windows night mode. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Because currently we doesn't have a built-in Dark Mode but many of us want Dark Mode, so at least a Night Light mode can reduce eye strain by a decent margin.
By researching Android and Flux's Night Light mode, I understand that transparent amber background can reduce eye strain, which help browsing, reduce eye strain in low-light conditions, and also improve sleep condition.
Solution: A button to toggle this CSS, it's surprisingly easy but incredibly helpful:
#main-window:hover {opacity: 0.7!important;background: #ffbf00!important;}
#main-window:hover {opacity: unset!important;background: unset!important;}
You can use Userscript to modify
#main-window
too, I recommend this solution because we need to check if Floorp's#main-window
is loaded or not, if it's loaded then change css and userChrome method can't because modifing#main-window
too early may cause browser to get completely transparent and click through-able:On:
Off:
How does it look ?

Thanks for making Floorp, hopefully this will be helpful, I love Floorp and always want to contribute something to help Floorp!
5 votes ·
Beta Was this translation helpful? Give feedback.
All reactions