]> git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/models.py
Remove <ul>s, center tables, and tweak the team colors a bit.
[xonotic/xonstat.git] / xonstat / models.py
index 0e68b5c786559c78c717013c6c88d33036479890..bcebb9c128069a13e7320acb657c0fa3983e4d1c 100755 (executable)
@@ -88,10 +88,12 @@ class PlayerGameStat(object):
         return html_colors(self.nick)
 
     def team_html_color(self):
+        # blue
         if self.team == 5:
-            return "#0000FF"
+            return "#312AB1"
+        # red
         if self.team == 14:
-            return "#FF0000"
+            return "#FF0033"
         if self.team == 13:
             return "#FFFF00"
         if self.team == 10: