Skip to content

Commit 8438953

Browse files
committed
fix: use valid color exports in log colorize
Made-with: Cursor
1 parent f5bcecf commit 8438953

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib/run/colorize.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ export const COLORS: Array<(s: string) => string> = [
77
s => color.cyan(s),
88
s => color.magenta(s),
99
s => color.blue(s),
10-
s => color.teal(s),
11-
s => color.pink(s),
12-
s => color.gold(s),
13-
s => color.purple(s),
14-
s => color.orange(s),
10+
s => color.info(s),
11+
s => color.name(s),
12+
s => color.addon(s),
13+
s => color.pipeline(s),
14+
s => color.warning(s),
1515
]
1616
const assignedColors: any = {}
1717
let isInitialized = false

0 commit comments

Comments
 (0)