From 06855543d62e6e001434f05f28e125aae0489e9f Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Sun, 13 Oct 2024 17:32:37 -0300 Subject: [PATCH] Use same colour as Pkg.jl --- src/operations.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/operations.rs b/src/operations.rs index 99989ebc..550eaf6e 100644 --- a/src/operations.rs +++ b/src/operations.rs @@ -108,7 +108,9 @@ pub fn download_extract_sans_parent( pb.set_prefix(" Downloading"); pb.set_style( ProgressStyle::default_bar() - .template("{prefix:.cyan.bold}: {bar:.cyan/white} {bytes}/{total_bytes} eta: {eta}") + .template( + "{prefix:.cyan.bold}: {bar:.cyan/black.bright} {bytes}/{total_bytes} eta: {eta}", + ) .unwrap() .progress_chars("━╸━"), );