mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
16 lines
386 B
JavaScript
16 lines
386 B
JavaScript
(function initializeTheme() {
|
|
try {
|
|
if (
|
|
localStorage.theme === "dark" ||
|
|
// eslint-disable-next-line lingui/no-unlocalized-strings
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
) {
|
|
document.documentElement.classList.add("dark");
|
|
} else {
|
|
document.documentElement.classList.remove("dark");
|
|
}
|
|
} catch {
|
|
// pass
|
|
}
|
|
})();
|