From 74152951ae12fe975953e9c1c8588b69ea4eb38b Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Thu, 19 Feb 2026 23:37:00 -0500 Subject: [PATCH] fix: Update log text color to improve visibility in dashboard display --- webbridge.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webbridge.lua b/webbridge.lua index 8652eac..46224e6 100644 --- a/webbridge.lua +++ b/webbridge.lua @@ -180,7 +180,7 @@ local function drawDashboard() monitor.setCursorPos(1, logY) monitor.clearLine() - monitor.setTextColor(colors.darkGray) + monitor.setTextColor(colors.gray) local time = os.date("%H:%M:%S", (entry.time or 0) / 1000) monitor.write(time .. " ")