Skip to content

Commit 2b010c5

Browse files
authored
fix(cli-output): improve color contrast for chalkWorker on light mode
1 parent 275ce9f commit 2b010c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-v3/src/utilities/cliOutput.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function chalkLink(text: string) {
3838
}
3939

4040
export function chalkWorker(text: string) {
41-
return chalk.hex("#FFFF89")(text);
41+
return chalk.yellowBright(text);
4242
}
4343

4444
export function chalkTask(text: string) {

0 commit comments

Comments
 (0)