Skip to content

Instantly share code, notes, and snippets.

@ayaysir
Last active February 9, 2023 16:22
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 ayaysir/5984d46e32f34abf55a7064949cc935a to your computer and use it in GitHub Desktop.
Save ayaysir/5984d46e32f34abf55a7064949cc935a to your computer and use it in GitHub Desktop.
다크 모드에서 모든 요소를 색상 반전시키기
@media (prefers-color-scheme: dark) {
* {
color-scheme: light dark;
filter: invert(0%);
-webkit-filter: invert(0%)
}
img {
-webkit-filter: invert(1);
filter: invert(1);
}
hr {
border-color: #171717;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment