diff options
| author | JustScott <development@justscott.me> | 2024-10-03 15:51:00 -0500 |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2026-01-05 13:19:06 +0100 |
| commit | 8d87a9ed2a7ba4c04d24862f85306f7496b3d6f5 (patch) | |
| tree | fe0442da3cdcc37c75c74866a38d306e516200d0 /src/displayapp/InfiniTimeTheme.h | |
| parent | f88c69a31aadb0fdfe6555db626ba8f05e756272 (diff) | |
Improved the Terminal Watchfaces UI
+ Reorder code to match the widgets order in the UI.
+ Moved all objects (rows) into a container
+ Use InfintimeTheme Colors instead of hardcoded hex values
+ Added a new InfinitimeTheme color: gray, using it to turn certain
values gray when they contain no data
+ Implement @vkareh's [variable battery icon](https://github.com/InfiniTimeOrg/InfiniTime/pull/1964)
color to the battery percentage text.
+ Replaced the 'You have mail.' notification message with the message
'[1]+ Notify' to better fit the terminal lore.
Diffstat (limited to 'src/displayapp/InfiniTimeTheme.h')
| -rw-r--r-- | src/displayapp/InfiniTimeTheme.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/displayapp/InfiniTimeTheme.h b/src/displayapp/InfiniTimeTheme.h index 0690b099..57680e87 100644 --- a/src/displayapp/InfiniTimeTheme.h +++ b/src/displayapp/InfiniTimeTheme.h @@ -8,6 +8,7 @@ namespace Colors { static constexpr lv_color_t green = LV_COLOR_MAKE(0x0, 0xb0, 0x0); static constexpr lv_color_t blue = LV_COLOR_MAKE(0x0, 0x50, 0xff); static constexpr lv_color_t lightGray = LV_COLOR_MAKE(0xb0, 0xb0, 0xb0); + static constexpr lv_color_t gray = LV_COLOR_MAKE(0x50, 0x50, 0x50); static constexpr lv_color_t bg = LV_COLOR_MAKE(0x5d, 0x69, 0x7e); static constexpr lv_color_t bgAlt = LV_COLOR_MAKE(0x38, 0x38, 0x38); |
