When using the Plot or ListPlot command in Mathematica, certain default colors are chosen.
For reasons of uniformity within some report I would like to use them along with the PlotStyle option. It turned out that I cannot reproduce the default colors with the pre-defined color names, although blue and purple seem to be somehow close.
Hence my question:
How can I chose the standard colors used by Mathematica in plots along with PlotStyle?
Thank you in advance.
Nice answers were given by belisarius and Sjoerd from which we can conclude that
Plot[Sin[x], {x, 0, 2 Pi}, PlotStyle -> ColorData[1, 4]]
will result in a sine plotted in the fourth standard color, some nice green.



ColorData[1, "ColorList"]to see all the colors given by their RGB vales. – Simon Mar 22 '11 at 21:34