Skip to content

Commit ba21776

Browse files
committed
refactor(cli): render help/frame dividers dim instead of blue
Default-blue is the least readable ANSI hue on dark terminals, and the divider rule is the most repeated element in the UI. Separators should recede behind content, so render them faint (dim). Pure color change; output text is unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]> Claude-Session: https://claude.ai/code/session_01TgNXy9shNnZEnbCfsSbtiQ
1 parent 1514fad commit ba21776

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/webpack-cli/src/webpack-cli.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1688,7 +1688,9 @@ class WebpackCLI {
16881688

16891689
/** A horizontal rule used to separate sections. */
16901690
#uiDivider(): string {
1691-
return this.colors.blue("─".repeat(UI_DIVIDER_WIDTH));
1691+
// Separators should recede behind content, so render them faint rather than
1692+
// in a saturated color (default-blue is the least readable hue on dark terminals).
1693+
return this.colors.dim("─".repeat(UI_DIVIDER_WIDTH));
16921694
}
16931695

16941696
/** A branded title, e.g. `⬡ webpack build`. */

0 commit comments

Comments
 (0)