@@ -28,7 +28,7 @@
Contact
-
+
diff --git a/script.js b/script.js
index 2212afd..b8b1247 100644
--- a/script.js
+++ b/script.js
@@ -14,9 +14,9 @@ document.addEventListener("DOMContentLoaded", () => {
// Load Dark Mode preference from cache
const theme = localStorage.getItem("theme");
- if (theme === "dark"){
- body.classList.remove("light-mode");
- darkModeButton.textContent = "🌙";
+ if (theme === "light"){
+ body.classList.add("light-mode");
+ darkModeButton.textContent = "☀️";
}
darkModeButton.addEventListener("click", () => {