Skip to content

Instantly share code, notes, and snippets.

@shhac
Last active March 16, 2018 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shhac/012b557b189449da76e6718802a50b7a to your computer and use it in GitHub Desktop.
Save shhac/012b557b189449da76e6718802a50b7a to your computer and use it in GitHub Desktop.
Generic night mode
html {
background: rgba(50, 50, 50, 1);
}
body {
filter: invert(0.85) hue-rotate(180deg);
}
body img, body svg, body video {
filter: invert(1) hue-rotate(180deg) contrast(1.3) saturate(1.4);
}
body iframe {
filter: invert(1) hue-rotate(180deg) contrast(1.3) saturate(1.4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment