summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/test_theme.py2
-rwxr-xr-xtools/themer.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/test_theme.py b/tools/test_theme.py
index dc2b990..2c161ff 100644
--- a/tools/test_theme.py
+++ b/tools/test_theme.py
@@ -6,7 +6,7 @@ class Theme(DefaultTheme):
# The default theme was generated by removing all the lines below and adding `pass` instead.
BLE_COLOR = 0xfb80
SCROLL_INDICATOR_COLOR = 0xf800
- BATTERY_CHARGING_COLOR = 0x07ff
+ BATTERY_COLOR = 0x07ff
SMALL_CLOCK_COLOR = 0x599f
NOTIFICATION_COLOR = 0x8fe0
ACCENT_MID = 0xf800
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),