226-css-theme-toggler
226-css-theme-toggler copied to clipboard
Solarize/Normalize button text reset on window reload.
If you have it set to 'solarized' and reload the window, the text is 'solarize' when it should be 'normalize'.
Fix:
if (theme) {
body.classList.add(theme);
isSolar && body.classList.add("solar");
if (isSolar) {
solarButton.innerText = "Normalize";
solarButton.style.cssText = --bg-solar: white;
;
}
}