Change default FillColor?

I need to produce some plots for a document, so I need to remove the washed out grey that ROOT uses as the standard fill color (19, I believe). I have tried adding gStyle->SetFillColor(0) and gStyle->SetFillStyle(4000) to my rootlogon.c, but they do not work seem to work. Oddly, adding something like gStyle->SetTitleFillColor(0) will work for the specific object. Is there an easy way of making the default fill color 0 for everything, or am going to have to set the fill color manually for each object?

Thanks for any help.

In your rootlogon.C file, add
gROOT->SetStyle(“Plain”);
See the definition of styles in TStyle and also the Users Guide

Rene

Perfect! Thanks.