From 8ed253706289d50ca56088a88dc5d0a71f89839d Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Sun, 3 Jan 2021 14:46:58 +0000 Subject: [PATCH] apps: launcher: Use theme colours for text labels Signed-off-by: Daniel Thompson --- wasp/apps/launcher.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wasp/apps/launcher.py b/wasp/apps/launcher.py index aec542c..b529017 100644 --- a/wasp/apps/launcher.py +++ b/wasp/apps/launcher.py @@ -77,9 +77,8 @@ class LauncherApp(): def draw_app(app, x, y): if not app: return - draw.set_color(0xffff) draw.blit(app.ICON if 'ICON' in dir(app) else icons.app, x+13, y+12) - draw.set_color(0xbdb6) + draw.set_color(wasp.system.theme('mid')) draw.string(app.NAME, x, y+120-30, 120) draw = wasp.watch.drawable