when using dark mode , white flash appears #17

This commit is contained in:
Fernando Mejia 2021-10-19 17:58:43 +00:00 коммит произвёл GitHub
Родитель 12bb053725
Коммит a80046f618
1 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -1,12 +1,12 @@
window.matchMedia('(prefers-color-scheme: dark)')
.addEventListener('change', event => {
if (event.matches) {
jtd.setTheme('dark');
} else {
jtd.setTheme('light');
}
});
// window.matchMedia('(prefers-color-scheme: dark)')
// .addEventListener('change', event => {
// if (event.matches) {
// jtd.setTheme('dark');
// } else {
// jtd.setTheme('light');
// }
// });
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
jtd.setTheme('dark');
}
// if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
// jtd.setTheme('dark');
// }