by BlueToonYoshi » Mon Jul 16, 2012 4:10 pm 
			
			Are you doing normal server, or pyspades server?
For normal (vanilla) server, there is a server_config.ini file. You will see this:
rteam1 = 0 ; team 1 red component   (RGB) 0-255     
gteam1 = 0 ; team 1 green component (RGB) 0-255     
bteam1 = 255 ; team 1 blue component  (RGB) 0-255     
rteam2 = 0 ; team 2 red component   (RGB) 0-255     
gteam2 = 255 ; team 2 green component (RGB) 0-255     
bteam2 = 0 ; team 2 blue component  (RGB) 0-255     
team1name = Blue ; team 1 name     
team2name = Green ; team 2 name  
For pyspades, open up config.txt. You will see this:
    "team1" : {
        "name" : "Blue",
        "color" : [0, 0, 255]
    },
    "team2" : {
        "name" : "Green",
        "color" : [0, 255, 0]
I think it is self explainatory, change them to your liking. If you want to know color values, try opening up something like Paint and going to Edit Colors, get the RGB values from there.