mirror of
https://github.com/katanemo/plano.git
synced 2026-05-01 11:56:29 +02:00
10 lines
296 B
JavaScript
10 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');
|
||
|
|
}
|