Skip to content

Instantly share code, notes, and snippets.

@natanfelles
Forked from lnikkila/bookmarklet.md
Created February 22, 2019 20:49
Show Gist options
  • Save natanfelles/e235c254cd74516fd343bff6e5fe3d50 to your computer and use it in GitHub Desktop.
Save natanfelles/e235c254cd74516fd343bff6e5fe3d50 to your computer and use it in GitHub Desktop.
Instant night mode for any website! https://lnikki.la/articles/night-mode-css-filter/
Bookmarklet

Copy and paste this into a bookmark:

javascript:!function(d){d.head.appendChild(d.createElement("style")).innerText="html,img,video{-webkit-filter:invert(1)hue-rotate(180deg);filter:invert(1)hue-rotate(180deg)}body{background:#000}"}(document);
html, img, video {
-webkit-filter: invert(1) hue-rotate(180deg);
filter: invert(1) hue-rotate(180deg);
}
body {
background: black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment