mirror of
https://github.com/katanemo/plano.git
synced 2026-06-23 15:38:07 +02:00
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
// Apply dark mode based on system preference
|
|
if (
|
|
localStorage.theme === 'dark' ||
|
|
(!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)
|
|
) {
|
|
document.documentElement.classList.add('dark');
|
|
} else {
|
|
document.documentElement.classList.remove('dark');
|
|
}
|