TInspectorBar 1.12.2.3: Panel Top Caption Color?

I set the Top Caption of the Panel with this code:

InspectorBarXMLAttributes.Panels[0].Caption := ' Attributes from Image: ' + ThisSVGObject.LocalName;

image

Unfortunately, It seems impossible to set the Panel Top Caption Color.
The Panel Property "CaptionColor" is misleading, as it sets the color for the ITEM CAPTIONS instead:

image

So, how can I set the color for the Panel Top Caption?

It would be nice if the Panel Top Caption would be of type HTMLText, giving one complete design freedom.

  1. This background color is set via
    InspectorBar.PanelCaption.Color/InspectorBar.PanelCaption.ColorTo
  2. The caption text can be HTML formatted text
    InspectorBar.Panels[x].Caption := 'Hello world';
    renders as HTML formatted

image