Created
August 26, 2020 13:54
-
-
Save khuongduybui/3d3f2d524376befbcbffed7f193620a9 to your computer and use it in GitHub Desktop.
Quick Dark 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
@media (prefers-color-scheme: dark) { | |
html { | |
background: #000; | |
filter: invert(1) hue-rotate(180deg) | |
} | |
img { | |
filter: invert(1) hue-rotate(180deg); | |
opacity: 0.75; | |
transition: opacity 0.25s ease-in-out; | |
} | |
img:hover { | |
opacity: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment