diff --git a/crates/uv/src/commands/pip_install.rs b/crates/uv/src/commands/pip_install.rs index 6198a2465..d3b05ddc0 100644 --- a/crates/uv/src/commands/pip_install.rs +++ b/crates/uv/src/commands/pip_install.rs @@ -662,7 +662,7 @@ async fn install( printer, " {} {}{}", "+".green(), - event.dist.name().as_ref().white().bold(), + event.dist.name().as_ref().bold(), event.dist.installed_version().to_string().dimmed() )?; } @@ -671,7 +671,7 @@ async fn install( printer, " {} {}{}", "-".red(), - event.dist.name().as_ref().white().bold(), + event.dist.name().as_ref().bold(), event.dist.installed_version().to_string().dimmed() )?; } diff --git a/crates/uv/src/commands/pip_sync.rs b/crates/uv/src/commands/pip_sync.rs index 9aea1c4ad..0a4e03e0b 100644 --- a/crates/uv/src/commands/pip_sync.rs +++ b/crates/uv/src/commands/pip_sync.rs @@ -333,7 +333,7 @@ pub(crate) async fn pip_sync( printer, " {} {}{}", "+".green(), - event.dist.name().as_ref().white().bold(), + event.dist.name().as_ref().bold(), event.dist.installed_version().to_string().dimmed() )?; } @@ -342,7 +342,7 @@ pub(crate) async fn pip_sync( printer, " {} {}{}", "-".red(), - event.dist.name().as_ref().white().bold(), + event.dist.name().as_ref().bold(), event.dist.installed_version().to_string().dimmed() )?; } diff --git a/crates/uv/src/commands/pip_uninstall.rs b/crates/uv/src/commands/pip_uninstall.rs index dd296683b..5209f5629 100644 --- a/crates/uv/src/commands/pip_uninstall.rs +++ b/crates/uv/src/commands/pip_uninstall.rs @@ -156,7 +156,7 @@ pub(crate) async fn pip_uninstall( printer, " {} {}{}", "-".red(), - distribution.name().as_ref().white().bold(), + distribution.name().as_ref().bold(), distribution.installed_version().to_string().dimmed() )?; } diff --git a/crates/uv/src/commands/venv.rs b/crates/uv/src/commands/venv.rs index d6d164d54..0aee85cf5 100644 --- a/crates/uv/src/commands/venv.rs +++ b/crates/uv/src/commands/venv.rs @@ -181,7 +181,7 @@ async fn venv_impl( printer, " {} {}{}", "+".green(), - distribution.name().as_ref().white().bold(), + distribution.name().as_ref().bold(), distribution.version_or_url().dimmed() ) .into_diagnostic()?; diff --git a/crates/uv/src/confirm.rs b/crates/uv/src/confirm.rs index e387688d3..3dc19fcfe 100644 --- a/crates/uv/src/confirm.rs +++ b/crates/uv/src/confirm.rs @@ -22,7 +22,7 @@ pub(crate) fn confirm(message: &str, term: &Term, default: bool) -> Result let prompt = format!( "{} {} {} {} {}", style("?".to_string()).for_stderr().yellow(), - style(message).for_stderr().white().bold(), + style(message).for_stderr().bold(), style("[y/n]").for_stderr().black().bright(), style("›").for_stderr().black().bright(), style(if default { "yes" } else { "no" }) @@ -49,7 +49,7 @@ pub(crate) fn confirm(message: &str, term: &Term, default: bool) -> Result let report = format!( "{} {} {} {}", style("✔".to_string()).for_stderr().green(), - style(message).for_stderr().white().bold(), + style(message).for_stderr().bold(), style("·").for_stderr().black().bright(), style(if response { "yes" } else { "no" }) .for_stderr()