summaryrefslogtreecommitdiffstats
path: root/content/script.js
blob: 649da9ed8c046bfaf0b21ceaeca747b655db8755 (plain) (blame)
1
2
3
4
5
const lightTheme = localStorage.getItem("light");

if (lightTheme === "true") {
    document.documentElement.classList.add("t-light");
}