DEV Community

Discussion on: Create A Dark/Light Mode Switch with CSS Variables

Collapse
 
zahir234 profile image
Zahir Stewart-Eaton

I keep trying to serve it via ng serve but instead i get the error "Property 'checked' does not exist on type 'Element" referring to "if (currentTheme) {
document.documentElement.setAttribute('data-theme', currentTheme);

if (currentTheme === 'dark') {
    toggleSwitch.checked = true;
}

}"