summaryrefslogtreecommitdiff
path: root/wasp/apps/clock.py
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-31 19:12:38 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-31 19:22:54 (GMT)
commitad9714b0dc2f2053d3d31a8cd013d456fefdc93d (patch)
treeaf166d2ae2f69beb637dd036dc41286e64f81472 /wasp/apps/clock.py
parent1eada36ff4953cb6b52e249c2908e5c74a7917d1 (diff)
manager: Recategorize the theme labels for apps
By default bright and mid are white/grey tones, the ui widgets are blue and the spot colours are different variants of orange. Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/apps/clock.py')
-rw-r--r--wasp/apps/clock.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wasp/apps/clock.py b/wasp/apps/clock.py
index f0af15b..9e6ba05 100644
--- a/wasp/apps/clock.py
+++ b/wasp/apps/clock.py
@@ -70,9 +70,9 @@ class ClockApp():
True then a full redraw is be performed.
"""
draw = wasp.watch.drawable
- hi = wasp.system.theme('accent-hi')
- mid = wasp.system.theme('accent-mid')
- lo = wasp.system.theme('accent-lo')
+ hi = wasp.system.theme('bright')
+ lo = wasp.system.theme('mid')
+ mid = draw.lighten(lo, 1)
if redraw:
now = wasp.watch.rtc.get_localtime()