Auto-publish on Wed 6 Aug 15:28:34 BST 2025

This commit is contained in:
2025-08-06 15:28:34 +01:00
parent fad62b981f
commit e4933348a6
3 changed files with 93 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ function setTheme(mode) {
function toggleTheme() {
const current = document.body.classList.contains('dark') ? 'dark' : 'light';
setTheme(current === 'dark' ? 'light' : 'dark');
console.log("Testing");
}
window.addEventListener('DOMContentLoaded', () => {