From c9bee333711613aba80f92c23b4d0050d15b565e Mon Sep 17 00:00:00 2001 From: Chris Hendrickson Date: Sat, 25 Apr 2026 13:41:44 -0400 Subject: [PATCH] fix(tui): make inactive column names readable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Inactive column header name was brightBlack (dark gray) — indistinguishable from the dim separator line beneath it. Change to white so column names are legible even when not selected; the ─ underline bar stays brightBlack to keep the visual hierarchy. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- packages/kanban/lib/src/commands/tui_command.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/kanban/lib/src/commands/tui_command.dart b/packages/kanban/lib/src/commands/tui_command.dart index dd12948..af22175 100644 --- a/packages/kanban/lib/src/commands/tui_command.dart +++ b/packages/kanban/lib/src/commands/tui_command.dart @@ -649,7 +649,7 @@ class TuiCommand extends DewCommand { : ' ${col.name} ($count) '; cells.add(_Cell( _trunc(nameRaw, colW).padRight(colW), - fg: isSelected ? color : ConsoleColor.brightBlack, + fg: isSelected ? color : ConsoleColor.white, bold: isSelected, ));