Setting color for header row

This should be easy but I can't find it.

How do I make the header row (row 0) background (not font) display as blue ?

Set grid.Look = glSoft or glStandard and then you can set the colors of any fixed cell via grid.Colors[col,row]:TColor or you can use the event OnGetCellColor to set the color dynamically via ABrush.Color parameter.

Ahh yes, thank you, it was Grid.Look that caused the problem.
Changing to Standard make the FixedColor start working.
Thanks