From 87a02e3b4833ce23aa9570092b0796b2cdbf2726 Mon Sep 17 00:00:00 2001 From: Brendan Sleight Date: Wed, 2 Oct 2024 23:06:52 +0100 Subject: [PATCH] Patch by thyttan - compatible with themes --- apps/exactwords/app.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/exactwords/app.js b/apps/exactwords/app.js index ac7139798..e3547aa1d 100644 --- a/apps/exactwords/app.js +++ b/apps/exactwords/app.js @@ -191,9 +191,8 @@ function draw() { var dateStr = wordsFromDayMonth(day, date, month); // draw time - // TO DO: Set Theme - g.setBgColor("#000000"); - g.setColor("#ffffff"); + g.setBgColor(g.theme.bg); + g.setColor(g.theme.fg); g.clear(); g.setFontAlign(0,0).setFont("Vector",24); g.drawString(g.wrapString(timeStr, g.getWidth()).join("\n"),x,y-24*0);