Skip to content

Instantly share code, notes, and snippets.

@zidell
Created May 19, 2020 14:06
Show Gist options
  • Select an option

  • Save zidell/b98b582f3ea0bb4d65b9925363337349 to your computer and use it in GitHub Desktop.

Select an option

Save zidell/b98b582f3ea0bb4d65b9925363337349 to your computer and use it in GitHub Desktop.
/* 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