summaryrefslogtreecommitdiff
path: root/tools/themer.py
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-13 16:46:19 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-13 16:51:07 (GMT)
commit4468285c343d7f4044748c6232f3e7510def9dce (patch)
tree6e56a34216bd39af04f7d8b9f81d8b66bcb0120c /tools/themer.py
parente44e605b7a2dd09e7d07c85ca1a73c5ce5b6d92b (diff)
widgets: BatteryMeter: Fix theme handling
Add the battery frame to the theme so it matches the frame used for charging and rename accordingly. Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'tools/themer.py')
-rwxr-xr-xtools/themer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/themer.py b/tools/themer.py
index 819c35c..f0f1f35 100755
--- a/tools/themer.py
+++ b/tools/themer.py
@@ -14,7 +14,7 @@ class DefaultTheme():
"""
BLE_COLOR = 0x7bef
SCROLL_INDICATOR_COLOR = 0x7bef
- BATTERY_CHARGING_COLOR = 0x7bef
+ BATTERY_COLOR = 0x7bef
SMALL_CLOCK_COLOR = 0xe73c
NOTIFICATION_COLOR = 0x7bef
ACCENT_MID = 0xb5b6
@@ -29,7 +29,7 @@ class DefaultTheme():
theme_bytes = bytes([
*split_bytes(self.BLE_COLOR),
*split_bytes(self.SCROLL_INDICATOR_COLOR),
- *split_bytes(self.BATTERY_CHARGING_COLOR),
+ *split_bytes(self.BATTERY_COLOR),
*split_bytes(self.SMALL_CLOCK_COLOR),
*split_bytes(self.NOTIFICATION_COLOR),
*split_bytes(self.ACCENT_MID),