From bee7b7e0c7fc47d6842d594df009cbf01afa2a87 Mon Sep 17 00:00:00 2001 From: kkayam Date: Wed, 22 Jan 2025 18:00:06 +0000 Subject: [PATCH] use fg --- apps/onewordclock/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/onewordclock/app.js b/apps/onewordclock/app.js index f718ebfd4..778d67da1 100644 --- a/apps/onewordclock/app.js +++ b/apps/onewordclock/app.js @@ -62,7 +62,7 @@ function draw() { // Draw the remaining portion if (coloredChars < timeStr.length) { - g.setColor(g.theme.fg2); + g.setColor(g.theme.fg); var remainingPart = timeStr.substring(coloredChars); var remainingWidth = g.stringWidth(remainingPart); g.drawString(remainingPart, x + (g.stringWidth(timeStr) / 2) - (remainingWidth / 2), y);