codepens/animated-atom-svg/dist/script.js

5 lines
161 B
JavaScript
Raw Permalink Normal View History

2023-10-06 23:12:53 +02:00
var themeBtn = document.querySelector('.js-theme-switch-btn');
themeBtn.addEventListener('click', event => {
document.body.classList.toggle('theme-brad');
});