summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2021-01-03 14:46:58 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2021-01-03 14:46:58 (GMT)
commit8ed253706289d50ca56088a88dc5d0a71f89839d (patch)
treeb91f822671089ce061033fc1b3ed7a7347c7a407
parent93cd03219e1c17a58a52f80a69bd6fb5b977d10c (diff)
apps: launcher: Use theme colours for text labels
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
-rw-r--r--wasp/apps/launcher.py3
1 files changed, 1 insertions, 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