Skip to content

Commit f85efd1

Browse files
committed
fix: improve foreground contrast
1 parent af4efac commit f85efd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/RunCommand.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default class RunCommand extends GenerativeCommand {
2929

3030
async respond(query: string, cmd: string, options?: { refreshCmd: boolean }) {
3131
if (options?.refreshCmd)
32-
this.context.stdout.write(chalk.blue(`${cmd}\n\n`))
32+
this.context.stdout.write(chalk.cyan(`${cmd}\n\n`))
3333

3434
const action = await select<Actions>({
3535
message: "",
@@ -106,7 +106,7 @@ export default class RunCommand extends GenerativeCommand {
106106
const reviseStream = await reviseCommandStream(query, cmd, revisePrompt, ci)
107107
spinner.stop()
108108

109-
const revisedCmd = await this.writeStream(reviseStream, chunk => chalk.blue(chunk))
109+
const revisedCmd = await this.writeStream(reviseStream, chunk => chalk.cyan(chunk))
110110

111111
await this.respond(revisePrompt, revisedCmd, { refreshCmd: false })
112112
}
@@ -132,7 +132,7 @@ export default class RunCommand extends GenerativeCommand {
132132
const cmdStream = await generateCommandStream(query, ci)
133133
spinner.stop()
134134

135-
const cmd = await this.writeStream(cmdStream, chunk => chalk.blue(chunk))
135+
const cmd = await this.writeStream(cmdStream, chunk => chalk.cyan(chunk))
136136

137137
this.respond(query, cmd)
138138
}

0 commit comments

Comments
 (0)