summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingWakeUp.cpp
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/screens/settings/SettingWakeUp.cpp
parenta3e14c012d76fc8f7ad4c16ad9dc67e8995ce10e (diff)
parent52f3310d0077a352ade7e1f9df6a1d201ee0c631 (diff)
merged ui-cleaning into develop
Diffstat (limited to 'src/displayapp/screens/settings/SettingWakeUp.cpp')
-rw-r--r--src/displayapp/screens/settings/SettingWakeUp.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/displayapp/screens/settings/SettingWakeUp.cpp b/src/displayapp/screens/settings/SettingWakeUp.cpp
index 620fe6e8..2c8be240 100644
--- a/src/displayapp/screens/settings/SettingWakeUp.cpp
+++ b/src/displayapp/screens/settings/SettingWakeUp.cpp
@@ -5,6 +5,7 @@
#include "displayapp/screens/Symbols.h"
#include "components/settings/Settings.h"
#include "displayapp/screens/Styles.h"
+#include "displayapp/InfiniTimeTheme.h"
using namespace Pinetime::Applications::Screens;
@@ -39,7 +40,7 @@ SettingWakeUp::SettingWakeUp(Pinetime::Applications::DisplayApp* app, Pinetime::
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::eye);
lv_label_set_align(icon, LV_LABEL_ALIGN_CENTER);
lv_obj_align(icon, title, LV_ALIGN_OUT_LEFT_MID, -10, 0);