Map Card Trail Colors

Hi all,

Would love to see to define colors for trails in the Map Card.

Like so:

type: map
entities:
  - entity: device_tracker.dirk
    color: blue
  - entity: device_tracker.Mo
    color: yellow
dark_mode: false
auto_fit: true
default_zoom: 16
aspect_ratio: '16:9'
hours_to_show: 24

That would make it easier to differentiate between the individual displayed persons.

do also vote for your own request

Through Developer Tools, you can find out the route color and then use Card Mod to change it to the desired color.

card_mod:
  style:
    ha-map$:
      .leaflet-pane: |
        path[stroke="#44739e"]{
          fill: red;
          stroke: orange;
        }
        path[stroke="#984ea3"]{
          fill: blue;
          stroke: green;
        }

image