diff --git a/countdown_watchface/src/c/watchface.c b/countdown_watchface/src/c/watchface.c index e81c7ce..d631211 100644 --- a/countdown_watchface/src/c/watchface.c +++ b/countdown_watchface/src/c/watchface.c @@ -95,7 +95,7 @@ static void main_window_load(Window *window) { layer_set_update_proc(s_bar_layer, bar_draw); layer_add_child(root, s_bar_layer); - // Time — large 24h display + // Time — Roboto Bold 49, centred s_time_layer = text_layer_create( GRect(0, PBL_IF_ROUND_ELSE(52, 44), bounds.size.w, 56)); text_layer_set_background_color(s_time_layer, GColorClear); @@ -105,13 +105,13 @@ static void main_window_load(Window *window) { text_layer_set_text(s_time_layer, "00:00"); layer_add_child(root, text_layer_get_layer(s_time_layer)); - // Date — day/month, readable but smaller + // Date — Bitham 30, right-aligned s_date_layer = text_layer_create( - GRect(0, PBL_IF_ROUND_ELSE(114, 104), bounds.size.w, 32)); + GRect(0, PBL_IF_ROUND_ELSE(114, 104), bounds.size.w, 36)); text_layer_set_background_color(s_date_layer, GColorClear); text_layer_set_text_color(s_date_layer, GColorWhite); - text_layer_set_font(s_date_layer, fonts_get_system_font(FONT_KEY_GOTHIC_28_BOLD)); - text_layer_set_text_alignment(s_date_layer, GTextAlignmentCenter); + text_layer_set_font(s_date_layer, fonts_get_system_font(FONT_KEY_BITHAM_30_BLACK)); + text_layer_set_text_alignment(s_date_layer, GTextAlignmentRight); text_layer_set_text(s_date_layer, "01/01"); layer_add_child(root, text_layer_get_layer(s_date_layer));