This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Maps on Connect

Former Member
Former Member

Good morning All, does anyone know whether the activity route lines on the maps can be changed from Red. I am red/green deficient colour blind and find it hard to follow my route. Thanks in advance

  • Yes, but only forcing other color in browser global CSS style.

    .

    For Windows & Firefox - open browser settings folder:

    %USERPROFILE%\AppData\Roaming\Mozilla\Firefox\Profiles\[PROFILE-CODE].default\

    .

    Open or create folder: chrome

    Open or create file: userContent.css

    .

    Add forced color:

    #000000 is black, you can use another by color name or code which can be found here:

    https://www.w3schools.com/colors/colors_picker.asp

    @-moz-document domain(garmin.com)
    {
    
     .leaflet-interactive { stroke: #000000 !important; }
    
    }