From 2585cae1515568fe639cfcbef63bb493bf30a289 Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Mon, 3 Oct 2022 16:50:25 +0200 Subject: [PATCH] Switch to non-dithered colour --- apps/calclock/calclock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/calclock/calclock.js b/apps/calclock/calclock.js index a121ff6bb..a55dc05f9 100644 --- a/apps/calclock/calclock.js +++ b/apps/calclock/calclock.js @@ -68,7 +68,7 @@ function drawEvent(event, y) { var curEventHeight = 0; function drawCurrentEvents(y) { - g.setColor(g.theme.dark ? "#0ff" : "#006060"); + g.setColor(g.theme.dark ? "#0ff" : "#0000ff"); g.clearRect(5, y, g.getWidth() - 5, y + curEventHeight); curEventHeight = y;