#MDI icon color

1 messages · Page 1 of 1 (latest)

frosty palm
#

I have a dashboard filter card that shows when it exceeds a given value. I am using an MDI icon for this. I would like the color of the icon to be a fixed color but not the default. The filter on the card makes it show or not depending on the value so I don’t want/need the color to change with the value. When I Google search all results have to do with changing the icon color based on the value so I am asking here.
Here is my current yaml code:

entities:
  - entity: sensor.inside_relative_humidity_2
    secondary_info: last-changed
    icon: mdi:bug-outline
  - entity: sensor.br_humidity
    secondary_info: last-changed
    icon: mdi:bug-outline
conditions:
  - condition: numeric_state
    above: 40
card:
  type: entities```
grim raptor