do not use bright green color for action spinner text
It has bad readability when using dark-on-light terminal color schemes.
This commit is contained in:
parent
d7594443cd
commit
0b0b76ef70
1 changed files with 1 additions and 2 deletions
|
@ -8,8 +8,7 @@ export type ProgressCallback = (progress: string) => void
|
|||
|
||||
export function createActionSpinner(action: string) {
|
||||
return ora({
|
||||
prefixText: chalk.bold(chalk.greenBright(action)),
|
||||
color: 'green',
|
||||
prefixText: chalk.bold(action),
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue