mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
|
;(() => {
|
||
|
const saved = localStorage.getItem('preferred_theme')
|
||
|
if (
|
||
|
saved === 'auto'
|
||
|
? window.matchMedia(`(prefers-color-scheme: dark)`).matches
|
||
|
: saved === 'dark'
|
||
|
) {
|
||
|
document.documentElement.classList.add('dark')
|
||
|
}
|
||
|
})()
|