Fix toggle theme

This commit is contained in:
Will Miao
2025-01-26 23:41:55 +08:00
parent 0c80555cc7
commit 87c64f9b71
3 changed files with 9 additions and 7 deletions

View File

@@ -279,11 +279,6 @@ function initTheme() {
document.body.dataset.theme = savedTheme;
}
// 检测系统主题
window.matchMedia('(prefers-color-scheme: dark)').addListener(e => {
document.body.dataset.theme = e.matches ? 'dark' : 'light';
});
// 键盘导航
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') closeModal();