From ae5b8263d5fc71fe4eefdd16df15fbe2827e8e05 Mon Sep 17 00:00:00 2001 From: Rob Pilling Date: Wed, 15 May 2024 18:03:37 +0100 Subject: [PATCH] runplus: use theme fg for zoom --- apps/runplus/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/runplus/app.js b/apps/runplus/app.js index 760863ae7..3d3190410 100644 --- a/apps/runplus/app.js +++ b/apps/runplus/app.js @@ -149,7 +149,7 @@ function zoom(statID) { .setFont(zoomFont) .setColor(headingCol) .drawString(stat.title.toUpperCase(), R.x+R.w/2, R.y+R.h/3) - .setColor("#fff") + .setColor(g.theme.fg) .drawString(stat.getString(), R.x+R.w/2, R.y+R.h*2/3); }; layout.lazy = false; // restored when we go back to "main"