Battery Entity Row: Symbole anpassen

Dann beschäftige dich mal mit card-mod
https://github.com/thomasloven/lovelace-card-mod

Bei dir könnte es dann so aussehen

type: entities
entities:
  - entity: sensor.sensor.kate_battery_level
    card_mod:
      style: |
        :host {
          {% if ( states.sensor.kate_battery_level.state | float < 50 ) %}
          --card-mod-icon-color: red;
          {% elif ( states.sensor.kate_battery_level.state | float < 95 ) %}
          --card-mod-icon-color: orange;
          {% else %}
          --card-mod-icon-color: green;
          {% endif %}
          }
state_color: true
show_header_toggle: false