spawn-streaming
Version:
Formats spawn with prefix and colors
22 lines (21 loc) • 394 B
JavaScript
import c from 'colors';
const colors = [
'cyan',
'magenta',
'blue',
'yellow',
'green',
'red',
'brightCyan',
'brightMagenta',
'brightBlue',
'brightYellow',
'brightGreen',
'brightRed'
];
let colorIndex = 0;
export default function nextColor() {
const colorName = colors[colorIndex % colors.length];
colorIndex++;
return c[colorName];
}