public/js/theme-toggle.js
(function () {
const root = document.documentElement;
document.querySelectorAll('[data-theme-toggle]').forEach(btn => {
btn.addEventListener('click', () => {
const next = root.getAttribute('data-theme') === 'dark' ? 'light' : 'dark';
root.setAttribute('data-theme', next);
try { localStorage.setItem('vcl-theme', next); } catch (e) {}
});
});
})();