UNPKG

spawn-streaming

Version:
22 lines (21 loc) 394 B
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]; }