Mushroom chip card text color

I have a issue where i do know know how to change the color of the entity info in the mushroom chip card.

type: custom:mushroom-chips-card
chips:
  - type: entity
    entity: sensor.ithocve_temperature
    card_mod:
        style: |
          ha-card {
                    --chip-box-shadow: none;
                    --chip-background: none;
                    --primary-text-color: red;
                    padding: 0px;
                }

test1

as you can see i can change the color of the icon to red, but i do know know how to change to color of the text next to the icon.

thanks in advance

type: custom:mushroom-chips-card
chips:
  - type: entity
    entity: sensor.living_room_motion_air_temperature
    card_mod:
      style: |-
        ha-card {
          --chip-box-shadow: none;
          --chip-background: none;
          --primary-text-color: red;
          --text-color: red;
          padding: 0px;
        }

1 Like