summaryrefslogtreecommitdiff
path: root/wasp
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-02-04 08:48:13 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-02-04 08:48:13 (GMT)
commit2d0df5aed5f1447a79e2d7fea2d387a715bc3b63 (patch)
tree431b338ae647261f6e3fafc853e61dd1be7ed693 /wasp
parentbe6c6b02b0cba2850c2d19ac175577c664a1f7e8 (diff)
wasp: clock: Tweak the greying of the high order digits
Diffstat (limited to 'wasp')
-rw-r--r--wasp/clock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wasp/clock.py b/wasp/clock.py
index 2eff802..79870e3 100644
--- a/wasp/clock.py
+++ b/wasp/clock.py
@@ -38,9 +38,9 @@ class ClockApp(object):
display = watch.display
display.rleblit(DIGITS[now[1] % 10], pos=(4*48, 80))
- display.rleblit(DIGITS[now[1] // 10], pos=(3*48, 80), fg=0xc638)
+ display.rleblit(DIGITS[now[1] // 10], pos=(3*48, 80), fg=0xbdb6)
display.rleblit(DIGITS[now[0] % 10], pos=(1*48, 80))
- display.rleblit(DIGITS[now[0] // 10], pos=(0*48, 80), fg=0xc638)
+ display.rleblit(DIGITS[now[0] // 10], pos=(0*48, 80), fg=0xbdb6)
self.on_screen = now
self.meter.update()