Is there any way to recover the default color cycle used for plotting lines, which is somehow defined by the matplotlib stylesheet.
Since the pie function does not use the default colors, I would like to force it to use them.
You can get the color cycle from the rc-params.
>>> from matplotlib import pyplot as plt
>>> color_cycle = plt.rcParams['axes.color_cycle']
>>> color_cycle
[u'b', u'g', u'r', u'c', u'm', u'y', u'k']
This can then be used as the colors argument to plt.pie.