Dropdown text color property?

Is there a way to change the color property on a Dropdown component’s text? Changing the font and boldening the text works fine but actually changing the color doesn’t seem to work.

Interesting, the text color will change the “x” when an item is selected, but won’t change the selected items text color.
The text color for options does work. Might be a bug?

I get the same results as josborn on 8.1.11. Neither “style” or “dropdownOptionStyle” change the valuePill color.

In the theme, this color can be changed by modifying the CSS variable in “C:\Program Files\Inductive Automation\Ignition\data\modules\com.inductiveautomation.perspective\themes\themeName\common”:

.ia_dropdown__valuePill__value {
    color: var(--neutral-80);
}

Someone else asked about this before, here was my fix.

you should not modify the base theme.css files but create a new one which overwrites that line. Or use css injection

1 Like

Thanks, everybody! It’s good to now that I’m not the only one that’s run into this.