-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam_colors.py
More file actions
37 lines (37 loc) · 1.26 KB
/
Copy pathteam_colors.py
File metadata and controls
37 lines (37 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# from rgbmatrix import graphics
# Team Abbreviation: (Background Color, Font Color)
TeamColors = {
"AL" : ((16,0,0), (255,0,0)),
"NL" : ((0,0,16), (0,0,255)),
"ATH": ((0,16,0), (0,255,0)),
"ARI": ((16,0,0), (255,0,0)),
"ATL": ((16,0,0), (255,0,0)),
"BAL": ((16,8,0), (255,128,0)),
"BOS": ((16,0,0), (255,0,0)),
"CHC": ((16,0,0), (255,0,0)),
"CIN": ((16,0,0), (255,0,0)),
"DET": ((0,0,16), (0,0,255)),
"HOU": ((16,8,0), (255,128,0)),
"KC": ((0,8,16), (0,128,255)),
"LAA": ((16,0,0), (255,0,0)),
"LAD": ((0,0,16), (0,0,255)),
"MIN": ((16,0,0), (255,0,0)),
"COL": ((16,16,16), (255,255,255)),
"MIA": ((0,8,16), (0,128,255)),
"NYY": ((0,0,16), (0,0,255)),
"NYM": ((16,8,0), (255,128,0)),
"OAK": ((0,16,0), (0,255,0)),
"PHI": ((16,0,0), (255,0,0)),
"PIT": ((16,12,0), (255,192,0)),
"SF": ((16,8,0), (255,128,0)),
"SD": ((16,16,16), (255,255,255)),
"CHW": ((16,16,16), (255,255,255)),
"CLE": ((16,0,0), (255,0,0)),
"TB": ((0,0,16), (0,0,255)),
"MIL": ((0,0,16), (255,0,0)),
"SEA": ((0,16,16), (0,255,255)),
"TOR": ((0,0,16), (255,0,0)),
"STL": ((16,0,0), (255,0,0)),
"TEX": ((16,0,0), (255,0,0)),
"WSH": ((16,0,0), (255,0,0))
}