1
0
Fork 0

Analog, Digital: a lighter shade of pink

This commit is contained in:
Julian Foad 2024-05-10 12:25:13 +01:00
parent e82dc2659e
commit 88877074e8
2 changed files with 2 additions and 2 deletions

View file

@ -112,7 +112,7 @@ WatchFaceAnalog::WatchFaceAnalog(Controllers::DateTime& dateTimeController,
// Owner's text
label_owner = lv_label_create(lv_scr_act(), nullptr);
lv_obj_set_style_local_text_color(label_owner, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xFF, 0xAE, 0xC9));
lv_obj_set_style_local_text_color(label_owner, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xFF, 0xAA, 0xAA));
lv_label_set_text_static(label_owner, Pinetime::Applications::OwnerText);
lv_label_set_align(label_owner, LV_LABEL_ALIGN_CENTER);
lv_obj_align(label_owner, nullptr, LV_ALIGN_CENTER, 0, 50);

View file

@ -37,7 +37,7 @@ WatchFaceDigital::WatchFaceDigital(Controllers::DateTime& dateTimeController,
// Owner's text
label_owner = lv_label_create(lv_scr_act(), nullptr);
lv_obj_set_style_local_text_color(label_owner, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xFF, 0xAE, 0xC9));
lv_obj_set_style_local_text_color(label_owner, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xFF, 0xAA, 0xAA));
lv_label_set_text_static(label_owner, Pinetime::Applications::OwnerText);
lv_label_set_align(label_owner, LV_LABEL_ALIGN_CENTER);
lv_obj_align(label_owner, nullptr, LV_ALIGN_CENTER, 0, -80);