PartyColors

Use the PartyColors entity to define color values for a Party.

Elements

The following table describes the elements for PartyColors:

Element Multiplicity Type Description
DarkThemeColor 0 or 1 HtmlColorString An HTML color to use for display in a dark theme UI.
LightThemeColor 0 or 1 HtmlColorString An HTML color to use for display in a light theme UI.
OfficialColor 0 or more HtmlColorString The official HTML color(s) for the party.

Examples

XML

    <Party objectId="par-0001">
      <Colors>
        <DarkThemeColor>ffffff</DarkThemeColor>
        <LightThemeColor>000000</LightThemeColor>
        <OfficialColor>aaaaaa</OfficialColor>
        <OfficialColor>bbbbbb</OfficialColor>
        <OfficialColor>cccccc</OfficialColor>
      </Colors>
      <Name>
        <Text language="en">Example Party</Text>
      </Name>
    </Party>