summaryrefslogtreecommitdiffstats
path: root/src/subcommands/show_colors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/subcommands/show_colors.rs')
-rw-r--r--src/subcommands/show_colors.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/subcommands/show_colors.rs b/src/subcommands/show_colors.rs
index 4ad19589..8ad9fc35 100644
--- a/src/subcommands/show_colors.rs
+++ b/src/subcommands/show_colors.rs
@@ -54,8 +54,7 @@ pub fn show_colors() -> std::io::Result<()> {
}
// Two syntax-highlighted lines with background color
let color =
- color::parse_color(color_name, config.true_color, config.git_config.as_ref())
- .unwrap();
+ color::parse_color(color_name, config.true_color, config.git_config()).unwrap();
style.ansi_term_style.background = Some(color);
for line in [
&format!(r#"export function color(): string {{ return "{color_name}" }}"#),