Last active
March 16, 2018 14:45
-
-
Save shhac/012b557b189449da76e6718802a50b7a to your computer and use it in GitHub Desktop.
Generic night mode
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
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