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 { | |
| ... | |
| } |
OlderNewer