This is the data module used by .
Most lines will be of the following form
["TEAM NAME"] = {"HEX1", "HEX2", "HEX3", "HEX4"},The trailing comma is very important. Here,
HEX1
, HEX2
, HEX3
, and HEX4
are hexadecimal color values. To use the same color for more than one team name (e.g., if the team goes by more than one name, but the colors are the same), use
["SECONDARY TEAM NAME"] = "TEAM NAME",where
TEAM NAME
has already been defined, and SECONDARY TEAM NAME
is the alternative spelling, or name.In general:
Colors must at a minimum satisfy Web Content Accessibility Guidelines (WCAG) AA (contrast ratio of at least 4.5), and, if possible, satisfy WCAG AAA (contrast ratio of at least 7.0). The WebAIM Contrast Checker is a good tool to check colors.