From c4e740b332fde448f45b7dd0d258c580f6523b4f Mon Sep 17 00:00:00 2001 From: clashofclanselixircollector Date: Wed, 8 Jan 2025 17:03:05 -0800 Subject: [PATCH] Update js/darkmode.js --- js/darkmode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/darkmode.js b/js/darkmode.js index f217f92..f1e0d33 100644 --- a/js/darkmode.js +++ b/js/darkmode.js @@ -41,7 +41,7 @@ $(document).ready(function() { body.style.backgroundImage= "url('/images/grass-background.jpg')"; const paragraphs = document.querySelectorAll('p'); paragraphs.forEach(function(p) { - p.style.color = 'gray'; + p.style.color = 'black'; }); const headTwo = document.querySelector('h2'); headTwo.style.color = 'black';