Skip to content

Commit 2803dd6

Browse files
committed
Use Bluetooth brand color for status text
1 parent 0e2b27d commit 2803dd6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/displayapp/screens/WatchFaceTerminal.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ WatchFaceTerminal::WatchFaceTerminal(DisplayApp* app,
4646

4747
connectState = lv_label_create(lv_scr_act(), nullptr);
4848
lv_label_set_recolor(connectState, true);
49-
lv_label_set_text(connectState, "[STAT]#387b54 Disconnected#");
49+
lv_label_set_text(connectState, "[STAT]#0082fc Disconnected#");
5050
lv_obj_align(connectState, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 40);
5151

5252
notificationIcon = lv_label_create(lv_scr_act(), nullptr);
@@ -117,12 +117,12 @@ void WatchFaceTerminal::Refresh() {
117117
bleRadioEnabled = bleController.IsRadioEnabled();
118118
if (bleState.IsUpdated() || bleRadioEnabled.IsUpdated()) {
119119
if(!bleRadioEnabled.Get()) {
120-
lv_label_set_text_static(connectState, "[STAT]#387b54 Disabled#");
120+
lv_label_set_text_static(connectState, "[STAT]#0082fc Disabled#");
121121
} else {
122122
if (bleState.Get()) {
123-
lv_label_set_text_static(connectState, "[STAT]#387b54 Connected#");
123+
lv_label_set_text_static(connectState, "[STAT]#0082fc Connected#");
124124
} else {
125-
lv_label_set_text_static(connectState, "[STAT]#387b54 Disconnected#");
125+
lv_label_set_text_static(connectState, "[STAT]#0082fc Disconnected#");
126126
}
127127
}
128128
}

0 commit comments

Comments
 (0)