Skip to content

Instantly share code, notes, and snippets.

@khuongduybui
Created August 26, 2020 13:54
Show Gist options
  • Save khuongduybui/3d3f2d524376befbcbffed7f193620a9 to your computer and use it in GitHub Desktop.
Save khuongduybui/3d3f2d524376befbcbffed7f193620a9 to your computer and use it in GitHub Desktop.
Quick Dark Mode
@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