I am experimenting with colour settings with the tabs.
tabArt = aui.VC8TabArt()
tabArt.SetDefaultColours(wx.Colour(255, 250, 205)) # LEMON CHIFFON
Above will change the colour of all the tabs and the area where there are no tabs.
tabArt = aui.ChromeTabArt()
tabArt.SetDefaultColours(wx.Colour(255, 250, 205)) # LEMON CHIFFON
Using CromeTabArt will only change the area not used by tabs.
Browsing aui.tabart.py I noticed that VC8 calls FillVC8GradientColour from DrawTab and there is no equivalent for Crome.
Is this intended or could FillVC8GradientColour be used for Crome too?
Werner