the "Visual" section on a indicator do not take the color settings.
//in Variables :
private Color upColor=Color.Green
//in Properties :
[Description("Text Color ")]
[Category("Visual")]
[Gui.Design.DisplayName ("Text Down Color")]
public Color DnColor
{
get { return dnColor; }
set { dnColor = value; }
}

Comment