We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5bcecf commit 8438953Copy full SHA for 8438953
src/lib/run/colorize.ts
@@ -7,11 +7,11 @@ export const COLORS: Array<(s: string) => string> = [
7
s => color.cyan(s),
8
s => color.magenta(s),
9
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),
+ s => color.info(s),
+ s => color.name(s),
+ s => color.addon(s),
+ s => color.pipeline(s),
+ s => color.warning(s),
15
]
16
const assignedColors: any = {}
17
let isInitialized = false
0 commit comments