🔹 Card-mod - Add css styles to any lovelace card

ok will test that too!

currently trying to understand why the new variable for the slider-control doesn’t work in my mod:

            type: custom:slider-entity-row
            card_mod:
              style: |
                ha-slider::part(indicator) {
                  background: rgba(from var(--ha-control-color) r g b /0.6);
                }
# this new ha-slider-indicator-color doesnt work on the custom slider

before it was ha-control-color, which was changed during this release in .2 I believe

2025.10: Undo, redo, and draw me too - #43 by Mariusthvdb did work at the time of that 2025.10.0 :wink:

maybe it the type: custom:slider-entity-row that doesnt yet support that, and we need to get that fixed…

so for now Ill use the default of primary-color there

            type: custom:slider-entity-row
            card_mod:
              style: |
                ha-slider::part(indicator) {
                  background: rgba(from var(--primary-color) r g b /0.6);
                }