Fixing my theme

I could maintain my theme for a while now by myself, throught several breaking changes in Home Assistant. However, I’m struggling to fix two annoying issues with my dark-mode theme. Several elements (input/dropdown, input fields) are white, while they should be dark.

4

3

Which elements are these to include in my theme for the appropriate color change?

try this:

“paper-listbox-background-color”

Appreciate your input, unfortunately it has no effect on the above screens.

I fixed the editor windows with code-editor-background-color. Now the other ones remaining…

Gettng there, step by step. I figured it out a bit more, which actually fixes the majority of the issues in my dashboards:

mdc-text-field-fill-color: var(–primary-background-color)
mdc-text-field-ink-color: var(–primary-text-color)
mdc-text-field-label-ink-color: var(–primary-text-color)

Edit. More fixes:

mdc-select-fill-color: var(–primary-background-color)
mdc-select-ink-color: var(–primary-text-color)
mdc-select-label-ink-color: var(–primary-text-color)
mdc-select-dropdown-icon-color: var(–primary-text-color)

Edit.And last one:

input-dropdown-icon-color: var(–primary-text-color)

Issues are now all fixed. Did my own element inspection, but now with the help of this list: Full list of theme.yaml lines - #15 by studioIngrid