-
-
Save yue1123/4ba8d32734985ca79738d47344ee5a7f to your computer and use it in GitHub Desktop.
theme init
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
| (function () { | |
| const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches | |
| const setting = localStorage.getItem('color-schema') || 'auto' | |
| if (setting === 'dark' || (prefersDark && setting !== 'light')) | |
| document.documentElement.classList.toggle('dark', true) | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment