Skip to content

Commit 9ecda81

Browse files
bk7312nicktrn
andauthored
fix(cli): improve contrast for chalkWorker yellow in light mode (#2239)
* fix(cli-output): improve color contrast for chalkWorker on light mode * add changeset --------- Co-authored-by: nicktrn <[email protected]>
1 parent 7b54c35 commit 9ecda81

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/giant-rivers-tease.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"trigger.dev": patch
3+
---
4+
5+
improve contrast for chalkWorker in light mode

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)