chore: update color for text

This commit is contained in:
rzmk 2025-08-18 05:20:03 -04:00
parent 2c03f13f75
commit b0f08c6bfd

View file

@ -17,8 +17,9 @@ fn main() -> Result<()> {
"CKAN 2.11.3".if_supports_color(Stdout, |text| text.on_blue().white()) "CKAN 2.11.3".if_supports_color(Stdout, |text| text.on_blue().white())
); );
println!( 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?") let ans = Confirm::new("Would you like to begin the installation?")
.with_default(false) .with_default(false)