Color Table

Hi all!
I am using TColor::CreateGradientColorTable(NRGBs, stops, red, green, blue, NCont); to create my color palette when I draw histograms. Recently I saw some nice examples on ROOT home page on Data analysis & Visualisation root.cern.ch/drupal/category/ima … ualization showing Mercury, Sun and other cosmic objects. I wonder if somebody knows which is the color table used in those examples? I would very like very much to use the same color table for my plots.
Thanks,
Alexei.

P.S. If someone is interested, my settings are:
const Int_t NRGBs = 5;
const Int_t NCont = 25;

Double_t stops[NRGBs] = { 0.00, 0.34, 0.61, 0.84, 1.00 };
Double_t red[NRGBs]   = { 0.00, 0.00, 0.87, 1.00, 0.51 };
Double_t green[NRGBs] = { 0.00, 0.81, 1.00, 0.20, 0.00 };
Double_t blue[NRGBs]  = { 0.51, 1.00, 0.12, 0.00, 0.00 };
TColor::CreateGradientColorTable(NRGBs, stops, red, green, blue, NCont);
gStyle->SetNumberContours(NCont);

then histograms are plotted with hist…->Draw(“colz”);

These pictures are coming from presentations or posters and the macro (color palette) which created them are not available. We have only the pictures.