Skip to content

Commit

Permalink
Replace black with dim output color
Browse files Browse the repository at this point in the history
  • Loading branch information
Systemcluster committed Nov 21, 2023
1 parent 0cb6104 commit b9113c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub fn get_unpack_target(directory: &str) -> u8 {
println!(
"{}: temp {}, local, cwd",
style("available target directories").blue().bright(),
style("(default)").bold().black()
style("(default)").bold().dim()
);
std::process::exit(-1);
}
Expand All @@ -103,7 +103,7 @@ pub fn get_versioning(versioning: &str) -> u8 {
println!(
"{}: sidebyside {}, replace",
style("available versioning strategies").blue().bright(),
style("(default)").bold().black()
style("(default)").bold().dim()
);
std::process::exit(-1);
}
Expand Down Expand Up @@ -146,7 +146,7 @@ pub fn get_verification(verification: &str) -> u8 {
println!(
"{}: none, existence {}, checksum",
style("available verification options").blue().bright(),
style("(default)").bold().black()
style("(default)").bold().dim()
);
std::process::exit(-1);
}
Expand All @@ -170,7 +170,7 @@ pub fn get_show_information(show_information: &str) -> u8 {
style("available information details options")
.blue()
.bright(),
style("(default)").bold().black()
style("(default)").bold().dim()
);
std::process::exit(-1);
}
Expand Down Expand Up @@ -198,7 +198,7 @@ pub fn get_show_console(show_console: &str, runner_name: &str) -> u8 {
println!(
"{}: auto {}, always, never",
style("available console options").blue().bright(),
style("(default)").bold().black()
style("(default)").bold().dim()
);
std::process::exit(-1);
}
Expand Down
10 changes: 5 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ fn main() {
let count = if source.is_dir() {
println!(
"{} {}counting contents of {}…",
style("[1/4]").bold().black(),
style("[1/4]").bold().dim(),
Emoji("🔍 ", ""),
style(
&source
Expand All @@ -135,7 +135,7 @@ fn main() {
} else {
println!(
"{} {}checking {}…",
style("[1/4]").bold().black(),
style("[1/4]").bold().dim(),
Emoji("🔍 ", ""),
style(
&source
Expand All @@ -151,7 +151,7 @@ fn main() {

println!(
"{} {}writing runner {} for target {}…",
style("[2/4]").bold().black(),
style("[2/4]").bold().dim(),
Emoji("📃 ", ""),
style(
&output
Expand Down Expand Up @@ -219,7 +219,7 @@ fn main() {

println!(
"{} {}compressing {} files and directories…",
style("[3/4]").bold().black(),
style("[3/4]").bold().dim(),
Emoji("🚚 ", ""),
style(count).magenta(),
);
Expand Down Expand Up @@ -278,7 +278,7 @@ fn main() {

println!(
"{} {}writing startup configuration…",
style("[4/4]").bold().black(),
style("[4/4]").bold().dim(),
Emoji("📃 ", "")
);

Expand Down

0 comments on commit b9113c9

Please sign in to comment.