InfiniTime.git

commit d08129132bb77d853bb360c2c03c985b13a4c210

Author: Adam Evyčędo <git@apiote.xyz>

change battery colours

 src/displayapp/screens/BatteryIcon.cpp | 4 ++--


diff --git a/src/displayapp/screens/BatteryIcon.cpp b/src/displayapp/screens/BatteryIcon.cpp
index 6194807d32c3bda80d8f79db4f59c6ae1a4ade25..0ab801885e0ef9e43be30edd6ec04d8e8c059aeb 100644
--- a/src/displayapp/screens/BatteryIcon.cpp
+++ b/src/displayapp/screens/BatteryIcon.cpp
@@ -32,9 +32,9 @@     static constexpr int criticalBatteryThreshold = 5;
     if (percentage > lowBatteryThreshold) {
       SetColor(LV_COLOR_WHITE);
     } else if (percentage > criticalBatteryThreshold) {
-      SetColor(LV_COLOR_ORANGE);
+      SetColor(lv_color_hex(0xdb9d3b));
     } else {
-      SetColor(Colors::deepOrange);
+      SetColor(lv_color_hex(0xff5c57));
     }
   }
 }