Changing WebLabel color

If I use an HTML template like in the sample "TMSWeb_HTMLTemplate", how would I change the color of a Weblabel referenced by element ID when the user clicks on a button.


eg. from the  TMSWeb_HTMLTemplate  sample app

procedure TForm1.WebComboBox1Change(Sender: TObject);
var
  webhtml : string;
begin
  WebLabel1.Caption := WebCombobox1.Items[WebCombobox1.ItemIndex];  This changes the caption as expected
  WebLabel1.Font.Color := $00FF0000;  This does not change the color
end;

For HTML elements referenced by control, the logic is that style is controlled by HTML, the data is coming from the Pascal class. You can of course access the HTML element (and its style) directly from Pascal code.

You could do something like 
weblabel.ElementHandle.style.setProperty('color','red');

Thanks for such a quick response Bruno.