From 4eeccafed084219fbfb922cea518a4e60d97932c Mon Sep 17 00:00:00 2001 From: Advait Paliwal Date: Wed, 25 Mar 2026 00:40:43 -0700 Subject: [PATCH] Match help output colors to Pi TUI theme Co-Authored-By: Claude Opus 4.6 (1M context) --- src/cli.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index 3f7cf99..073d85f 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -43,7 +43,10 @@ const TOP_LEVEL_COMMANDS = new Set(topLevelCommandNames); function printHelpLine(usage: string, description: string): void { const width = 30; const padding = Math.max(1, width - usage.length); - printInfo(`${usage}${" ".repeat(padding)}${description}`); + const RESET = "\x1b[0m"; + const SAGE = `\x1b[38;2;167;192;128m`; + const ASH = `\x1b[38;2;133;146;137m`; + console.log(` ${SAGE}${usage}${RESET}${" ".repeat(padding)}${ASH}${description}${RESET}`); } function printHelp(appRoot: string): void {