Last active
March 23, 2024 04:01
-
-
Save mimonelu/5b0de7711fffb275baa446c5ed21937f to your computer and use it in GitHub Desktop.
Bookmarklet to invert web page color.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(()=>{const s=document.documentElement.style;s.backgroundColor='black';s.filter='invert(100%)';})();void 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!