From 4b101633e7a068f11403d28c002ceaf1418c082a Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Fri, 19 Dec 2025 13:45:22 -0600 Subject: [PATCH] Better colors for the "get ready" screen The card itself is transparent, but it still has a size of 30% of the viewport because the bar is based on the size of it's container. The start bar and text can still be green and red, respectively, but the light blue was completely out of place. --- src/widgets.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets.rs b/src/widgets.rs index 6e92fc2..a1cff7d 100644 --- a/src/widgets.rs +++ b/src/widgets.rs @@ -180,9 +180,9 @@ fn spawn_get_ready(mut commands: Commands, mut timer: ResMut) { height: Val::Percent(30.), ..default() }, - BackgroundColor(LIGHT_BLUE.into()), + BackgroundColor(Color::NONE), children![ - (Text::new("Get Ready!"), TextColor(BLACK.into())), + (Text::new("Get Ready!"), TextColor(WHITE.into())), ( CountdownBar, Node {