From b0f08c6bfd970b24d23465e6fabb94845a2c17c6 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Mon, 18 Aug 2025 05:20:03 -0400 Subject: [PATCH] chore: update color for text --- src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 3779d52..99711cc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,8 +17,9 @@ fn main() -> Result<()> { "CKAN 2.11.3".if_supports_color(Stdout, |text| text.on_blue().white()) ); println!( - "This installer is also only intended for a brand new installation of {}.\n", - "Ubuntu 22.04".if_supports_color(Stdout, |text| text.on_blue().white()) + "{}", + "This installer is only intended for a brand new installation of Ubuntu 22.04." + .if_supports_color(Stdout, |text| text.on_bright_red().white()) ); let ans = Confirm::new("Would you like to begin the installation?") .with_default(false)