I see the following CSS sets the color for icons that can be marked active, such as lights and switches.
--paper-item-icon-active-color: #FDD835;
How can this be updated for other types, such as the zwave multi-sensor motion sensors that aren’t handled gracefully and need a value_template and icon_template? Or can it be done?
kitchen_motion_template:
friendly_name: Kitchen Motion Template
value_template: >-
{%- if is_state("sensor.aeotec_multi_02_burglar", "0") -%}
None
{%- else -%}
Detected
{%- endif -%}
icon_template: >-
{%- if is_state("sensor.aeotec_multi_02_burglar", "0") -%}
mdi:walk
{%- else -%}
mdi:run-fast
{%- endif %}
Many Thanks!