summaryrefslogtreecommitdiff
path: root/src/displayapp/InfiniTimeTheme.h
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2023-01-24 21:24:28 +0100
committerdavidpkj <davidpenkow1@gmail.com>2023-01-24 21:24:28 +0100
commitc95a80f4e46e2942bf295ae17f4c7eae27e8495b (patch)
tree5fc23d3be1352c048cf39bcfeca33e5cef498e75 /src/displayapp/InfiniTimeTheme.h
parenta3e14c012d76fc8f7ad4c16ad9dc67e8995ce10e (diff)
parent52f3310d0077a352ade7e1f9df6a1d201ee0c631 (diff)
merged ui-cleaning into develop
Diffstat (limited to 'src/displayapp/InfiniTimeTheme.h')
-rw-r--r--src/displayapp/InfiniTimeTheme.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/displayapp/InfiniTimeTheme.h b/src/displayapp/InfiniTimeTheme.h
index 5709b007..3b297c3c 100644
--- a/src/displayapp/InfiniTimeTheme.h
+++ b/src/displayapp/InfiniTimeTheme.h
@@ -3,13 +3,17 @@
#include <lvgl/lvgl.h>
namespace Colors {
+ static constexpr lv_color_t primary = LV_COLOR_MAKE(0xff, 0x30, 0x50);
+
static constexpr lv_color_t orange = LV_COLOR_MAKE(0xff, 0xb0, 0x0);
static constexpr lv_color_t green = LV_COLOR_MAKE(0x0, 0xb0, 0x0);
- static constexpr lv_color_t lightGray = LV_COLOR_MAKE(0xb0, 0xb0, 0xb0);
+ static constexpr lv_color_t violet = LV_COLOR_MAKE(0xb0, 0x0, 0xff);
+
+ static constexpr lv_color_t lightGray = LV_COLOR_MAKE(0x23, 0x23, 0x23);
- static constexpr lv_color_t bg = LV_COLOR_MAKE(0x5d, 0x69, 0x7e);
- static constexpr lv_color_t bgAlt = LV_COLOR_MAKE(0x38, 0x38, 0x38);
- static constexpr lv_color_t bgDark = LV_COLOR_MAKE(0x18, 0x18, 0x18);
+ static constexpr lv_color_t bg = LV_COLOR_MAKE(0x23, 0x23, 0x23);
+ static constexpr lv_color_t bgAlt = LV_COLOR_MAKE(0x23, 0x23, 0x23);
+ static constexpr lv_color_t bgDark = LV_COLOR_MAKE(0x23, 0x23, 0x23);
static constexpr lv_color_t highlight = green;
};