Skip to content

Instantly share code, notes, and snippets.

@tallykatt
Forked from lnikkila/bookmarklet.md
Created July 25, 2016 02:02
Show Gist options
  • Save tallykatt/1293826a671eb24f2293f4847d6181bc to your computer and use it in GitHub Desktop.
Save tallykatt/1293826a671eb24f2293f4847d6181bc 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