I want to toggle all "theme" tags in my page from light to dark and from dark to light.
<div theme="light" id="switch-theme" class="switch-btn">
this is my button which upon clicking should switch every "theme" tag on the page to the desired color mode.
I tried:
<div theme="light" id="switch-theme" class="switch-btn"
onclick="this.setAttribute('theme', this.getAttribute('theme') === 'dark' ? 'light' : 'dark')">
but this only toggles the button to dark, not EVERY theme attribute on the page.
Can anyone help me?