Color palette changing for the funsies

This commit is contained in:
2023-10-03 17:56:09 -05:00
parent 572e9ae558
commit 8cbf2ef3ce
4 changed files with 82 additions and 12 deletions

4
docs/colorScheme.js Normal file
View File

@@ -0,0 +1,4 @@
const colorToggle = document.getElementById("colorToggle")
colorToggle.addEventListener("change", () => {
document.body.classList.toggle("dark")
})