How to add new colors in Multiplayer mode

From AOW HT Wiki

The colors of the players in multiplayer modes (skirmish, lan and online) are defined in this file :
AOW\DataLight\PythonModules\multiplayer\networkconf.py

At the end of this file, you should read something along :

<ndf> 
couleur = [
    (50,  212,  40, 255 ),  #green
    (250,   1,   0, 255 ),  #red
    (140,   2, 180, 255 ),  #purple
    (252, 180, 250, 255 ),  #pink
    (250, 156,  25, 255 ),  #orange
    (149, 174,  62, 255 ),  #kaki
    ( 60, 90 , 252, 255 ),  #blue
    ( 70, 228, 224, 255 )   #cyan
]
</ndf>

The colors are defined in RGBA (Red, Green, Blue and Alpha) composants.
Use your favorite painting program to add new values or modify existing ones.