From 20ed46f85e5018d1f0473b1087fc53100f588429 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Thu, 20 Apr 2023 17:42:35 +1000 Subject: [PATCH] Update darkmode.js --- js/darkmode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/darkmode.js b/js/darkmode.js index 1889335..5c5395d 100644 --- a/js/darkmode.js +++ b/js/darkmode.js @@ -1,6 +1,6 @@ function getDarkMode() { var currentTime = new Date().getHours(); - if (6 >= currentTime || currentTime > 18) { + if (6 >= currentTime || currentTime > 16) { var li = document.createElement('link'); var href = "https://archblox.com/css/appdark.css"; var rel = 'stylesheet';