From ba7111d52d13edb5def6e6c886279f2b4925d5b0 Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Thu, 20 Feb 2025 19:03:21 +0300 Subject: [PATCH] Update 1.js --- JAVASCRIPT/1.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JAVASCRIPT/1.js b/JAVASCRIPT/1.js index d92e4d8..d39498d 100644 --- a/JAVASCRIPT/1.js +++ b/JAVASCRIPT/1.js @@ -2,9 +2,9 @@ const themeMetaTag = document.querySelector('meta[name="theme-color"]'); function updateThemeColor() { if (document.body.classList.contains("darkmode--activated")) { - themeMetaTag.setAttribute("content", "#100f2c"); // Karanlık Mod Rengi + themeMetaTag.setAttribute("content", "#fff"); // Karanlık Mod Rengi } else { - themeMetaTag.setAttribute("content", "#000000"); // Açık Mod Rengi + themeMetaTag.setAttribute("content", "#100f2c"); // Açık Mod Rengi } }