From 1e00c3054398bd77c0e0ffe756bf90c58609ac7f Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 29 Jul 2025 12:59:13 -0300 Subject: [PATCH] fix: apply BRIGHT_BLACK style to in meta plugin table Co-authored-by: aider (openai/andrew.openrouter.qwen.qwen3-coder) --- src/modes/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modes/status.rs b/src/modes/status.rs index 1b42c05..30ac8c4 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -168,7 +168,7 @@ fn build_meta_plugin_table(enabled_meta_plugins: &Vec) -> Table true => Cell::new("Yes").with_style(Attr::ForegroundColor(color::GREEN)), false => Cell::new("No"), }, - Cell::new(&binary_display), + Cell::new(&binary_display).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)), Cell::new(&args_display), Cell::new(&meta_plugin.meta_name()), ]));