fix(tui): make inactive column names readable
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>
This commit is contained in:
parent
7bc7ee9898
commit
c9bee33371
1 changed files with 1 additions and 1 deletions
|
|
@ -649,7 +649,7 @@ class TuiCommand extends DewCommand {
|
||||||
: ' ${col.name} ($count) ';
|
: ' ${col.name} ($count) ';
|
||||||
cells.add(_Cell(
|
cells.add(_Cell(
|
||||||
_trunc(nameRaw, colW).padRight(colW),
|
_trunc(nameRaw, colW).padRight(colW),
|
||||||
fg: isSelected ? color : ConsoleColor.brightBlack,
|
fg: isSelected ? color : ConsoleColor.white,
|
||||||
bold: isSelected,
|
bold: isSelected,
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue