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