How to change selected marker color in MapBox

By default the markers (points) displayed in MapBox are red. When you select one it goes burgundy. Is there a way to make the selected marker blue or green?

Related, is there a way to change its unselected color?

Hi @bradlymathews

you can do for unselected by adding this CSS in the app:

.mapboxgl-marker path {
  fill: blue;
}

Downside is losing the selected color, though.