@@ -613,15 +613,15 @@ static void prv_update_proc(struct Layer *layer, GContext* ctx) {
613613 TimelineLayer * timeline_layer = (TimelineLayer * )layer ;
614614 const GRect * bounds = & layer -> bounds ;
615615
616- graphics_context_set_fill_color (ctx , GColorWhite );
616+ graphics_context_set_fill_color (ctx , system_theme_get_bg_color () );
617617 graphics_fill_rect (ctx , & (GRect ) { .size = bounds -> size });
618618
619619 AnimationProgress progress ;
620620 if (timeline_layer -> animating_intro_or_exit &&
621621 animation_get_progress (timeline_layer -> animation , & progress )) {
622622 const GPoint offset = { PEEK_ANIMATIONS_SPEED_LINES_OFFSET_X ,
623623 interpolate_int64_linear (progress , 0 , - DISP_ROWS ) };
624- graphics_context_set_fill_color (ctx , GColorBlack );
624+ graphics_context_set_fill_color (ctx , system_theme_get_fg_color () );
625625 peek_animations_draw_timeline_speed_lines (ctx , offset );
626626 }
627627
@@ -934,6 +934,7 @@ void timeline_layer_init(TimelineLayer *layer, const GRect *frame_ref,
934934 };
935935 peek_layer_set_icon (& layer -> day_separator , & timeline_res );
936936 peek_layer_set_background_color (& layer -> day_separator , GColorClear );
937+ peek_layer_set_text_color (& layer -> day_separator , system_theme_get_fg_color ());
937938 peek_layer_set_dot_diameter (& layer -> day_separator , style -> day_sep_dot_diameter );
938939 layer_set_hidden ((Layer * )& layer -> day_separator , true);
939940 layer_add_child ((Layer * )layer , (Layer * )& layer -> day_separator );
0 commit comments