@@ -50,15 +50,14 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController,
50
50
lv_obj_align (notificationIcon, nullptr , LV_ALIGN_IN_LEFT_MID, 0 , -100 );
51
51
52
52
label_prompt_1 = lv_label_create (lv_scr_act (), nullptr );
53
+ lv_obj_set_style_local_text_color (label_prompt_1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray);
53
54
lv_obj_align (label_prompt_1, lv_scr_act (), LV_ALIGN_IN_LEFT_MID, 0 , -80 );
54
55
lv_label_set_text_static (label_prompt_1, " user@watch:~ $ now" );
55
56
56
57
label_time = lv_label_create (lv_scr_act (), nullptr );
57
- lv_obj_set_style_local_text_color (label_time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::blue);
58
58
lv_obj_align (label_time, lv_scr_act (), LV_ALIGN_IN_LEFT_MID, 0 , -60 );
59
59
60
60
label_date = lv_label_create (lv_scr_act (), nullptr );
61
- lv_obj_set_style_local_text_color (label_date, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::blue);
62
61
lv_obj_align (label_date, lv_scr_act (), LV_ALIGN_IN_LEFT_MID, 0 , -40 );
63
62
64
63
weather = lv_label_create (lv_scr_act (), nullptr );
@@ -78,6 +77,7 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController,
78
77
lv_obj_align (connectState, lv_scr_act (), LV_ALIGN_IN_LEFT_MID, 0 , 60 );
79
78
80
79
label_prompt_2 = lv_label_create (lv_scr_act (), nullptr );
80
+ lv_obj_set_style_local_text_color (label_prompt_2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray);
81
81
lv_obj_align (label_prompt_2, lv_scr_act (), LV_ALIGN_IN_LEFT_MID, 0 , 80 );
82
82
lv_label_set_text_static (label_prompt_2, " user@watch:~ $" );
83
83
0 commit comments