Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 987 Bytes

File metadata and controls

30 lines (26 loc) · 987 Bytes

Colors

Overwatch League teams each have their own color palettes for branding and recognition during live matches. Each team has a primary color, a secondary color, and a tertiary color.

Colors Data Dictionary

Attribute Type Description
primary Object Has a color and an opacity property
secondary Object Has a color and an opacity property
tertiary Object Has a color and an opacity property

Sample Colors JSON

"colors": {
    "primary": {
        "color": "#032340",
        "opacity": 1
    },
    "secondary": {
        "color": "#0072CE",
        "opacity": 1
    },
    "tertiary": {
        "color": "#9EA2A2",
        "opacity": 1
    }
}