I have a Label for which I want to set the foreground color. However, there is also a white shadow/outline:
I've set the Foreground to a color (Blue):
// This is GTK# in MonoDevelop on Mac OS X
var fg = new Gdk.Color ();
Gdk.Color.Parse ("#0000ff", ref fg);
lbl.ModifyFg (StateType.Normal, fg);
lbl.ModifyFg (StateType.Active, fg);
lbl.ModifyFg (StateType.Prelight, fg);
But I can't seem to find the option for the Shadow/Outline.
Does anyone know which setting I'm missing? (Answers for GTK+ in C/C++ are also okay, I just need to know what I'm actually looking for)