summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingSetDate.cpp
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2023-01-22 17:48:03 +0100
committerdavidpkj <davidpenkow1@gmail.com>2023-01-22 17:48:03 +0100
commit1f6e32fae73463ed5ec110a304998d90f6dc3ac4 (patch)
treec423e1eecee8994295a07cca2ffbbfd41fdb5b06 /src/displayapp/screens/settings/SettingSetDate.cpp
parenta7f8b59bfb1641dea7f30a267c6bf7e882d9edbf (diff)
Change: colors & menu items
Diffstat (limited to 'src/displayapp/screens/settings/SettingSetDate.cpp')
-rw-r--r--src/displayapp/screens/settings/SettingSetDate.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/displayapp/screens/settings/SettingSetDate.cpp b/src/displayapp/screens/settings/SettingSetDate.cpp
index fd1bc9b9..c8b1eadf 100644
--- a/src/displayapp/screens/settings/SettingSetDate.cpp
+++ b/src/displayapp/screens/settings/SettingSetDate.cpp
@@ -5,6 +5,7 @@
#include <nrf_log.h>
#include "displayapp/DisplayApp.h"
#include "displayapp/screens/Symbols.h"
+#include "displayapp/InfiniTimeTheme.h"
using namespace Pinetime::Applications::Screens;
@@ -56,7 +57,7 @@ SettingSetDate::SettingSetDate(Pinetime::Applications::DisplayApp* app,
lv_obj_align(title, lv_scr_act(), LV_ALIGN_IN_TOP_MID, 15, 15);
lv_obj_t* icon = lv_label_create(lv_scr_act(), nullptr);
- lv_obj_set_style_local_text_color(icon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_ORANGE);
+ lv_obj_set_style_local_text_color(icon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::primary);
lv_label_set_text_static(icon, Symbols::clock);
lv_label_set_align(icon, LV_LABEL_ALIGN_CENTER);