mirror of
https://github.com/welpo/tabi.git
synced 2025-10-11 07:46:15 +02:00
9 lines
377 B
JavaScript
9 lines
377 B
JavaScript
(function () {
|
|
const currentTheme = localStorage.getItem('theme');
|
|
if (currentTheme) {
|
|
document.documentElement.setAttribute('data-theme', currentTheme);
|
|
} else {
|
|
const isSystemDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
|
document.documentElement.setAttribute('data-theme', isSystemDark ? 'dark' : 'light');
|
|
}
|
|
})();
|