summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Notifications.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/Notifications.cpp
parenta7f8b59bfb1641dea7f30a267c6bf7e882d9edbf (diff)
Change: colors & menu items
Diffstat (limited to 'src/displayapp/screens/Notifications.cpp')
-rw-r--r--src/displayapp/screens/Notifications.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp
index 6c68c70d..4222d678 100644
--- a/src/displayapp/screens/Notifications.cpp
+++ b/src/displayapp/screens/Notifications.cpp
@@ -286,7 +286,7 @@ Notifications::NotificationItem::NotificationItem(const char* title,
lv_obj_align(alert_count, nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 16);
lv_obj_t* alert_type = lv_label_create(container, nullptr);
- lv_obj_set_style_local_text_color(alert_type, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::orange);
+ lv_obj_set_style_local_text_color(alert_type, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::primary);
if (title == nullptr) {
lv_label_set_text_static(alert_type, "Notification");
} else {