apps: launcher: Use theme colours for text labels
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
parent
93cd03219e
commit
8ed2537062
1 changed files with 1 additions and 2 deletions
|
@ -77,9 +77,8 @@ class LauncherApp():
|
||||||
def draw_app(app, x, y):
|
def draw_app(app, x, y):
|
||||||
if not app:
|
if not app:
|
||||||
return
|
return
|
||||||
draw.set_color(0xffff)
|
|
||||||
draw.blit(app.ICON if 'ICON' in dir(app) else icons.app, x+13, y+12)
|
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.string(app.NAME, x, y+120-30, 120)
|
||||||
|
|
||||||
draw = wasp.watch.drawable
|
draw = wasp.watch.drawable
|
||||||
|
|
Loading…
Reference in a new issue