Created
May 19, 2020 14:06
-
-
Save zidell/b98b582f3ea0bb4d65b9925363337349 to your computer and use it in GitHub Desktop.
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
| /* prefers-color-scheme 를 지원하는 곳에서만 가능한 코드 */ | |
| @media (prefers-color-scheme: dark) { | |
| :root { | |
| ... | |
| } | |
| } | |
| /* 유저설정에 의해 클래스가 부여되므로 모든 CSS 변수 지원브라우저에서 가능한 코드 */ | |
| html.darkmode:root { | |
| ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment