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 {