How to change highlight color for TAdvSearchDropDown?

How can I change the RED highlight color for the AdvSearchDropDown?
I want to use the VCL Styles in my app and if it doesnt inherit the highlight colors from the VCL style I want to know how I can configure this.

Currently the default highlight in red is as follows:
image

Thanks in advance!

Please see .Appearance.HighlightTextColor

Thanks for your quick reply, I love it how AdvSearchDropDown looks now, thanks much!

All I needed was to add your suggestion in the formcreate and also change the text color:

procedure TForm1.FormCreate(Sender: TObject);
begin
AdvSearchComboBox1.Appearance.HighlightColor := clYellow;
AdvSearchComboBox1.Appearance.HighlightTextColor := AdvSearchComboBox1.Font.Color;
end;

image

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.