Hi Paul,
As David says, OsmAnd can display GPX tracks and routes using a colour specified in the GPX file itself.
This is useful as you don't need to keep selecting your desired colour when you display the file in OsmAnd.
To do this:
1. Open a GPX file in a text editor (such as Notepad) on your computer.
2. The file will start with something like this:
<?xml version="1.0"?>
<gpx creator="GPS Visualizer
http://www.gpsvisualizer.com/" version="1.0" xmlns="
http://www.topografix.com/GPX/1/0" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
After the <gpx> tag, or after the <metadata> tag if it exists, insert this:
<extensions>
<color>#BBF5F532</color>
</extensions>
3. As you can see, the colour is specified inside the <color> tag. Use one of the many online colour picking tools such as
http://html-color-codes.info/ to get the code for your colour and edit appropriately.
*However*, take note--by default, the colour won't be transparent, so the rendered track in OsmAnd will be opaque and will obscure details beneath it. To do this, you specify an alpha value for the colour--that's the BB in the example above. That's about 50% transparent (it's in hex, so it ranges from 00 which is opaque to FF which is fully transparent).
To be clear, let's say you pick #31F642 (light green) as your colour. You would change this to #BB31F642 (i.e. add BB at the start) to make the track appear semi-transparent in OsmAnd.
4. Copy the updated track to your phone. If the track is currently displayed, untick it from My Places and then re-add it.
Good luck,
Nick