I'd like to NOT specify a color for each plotted line:
for i in range(20):
ax1.plot(x, y)
If you look at the image for this, matplotlib attempts to pick colors for each line that are different, but eventually it re-uses colors. I just want to stop it from repeating already used colors AND/OR feed it a list of colors to use.