Login / Sign Up

Event Tag Color

A string to dictate the rendering of the highlight tag on an event. If it is either of the two pre-set options then the app will render them using branded colors, else it will render whatever valid RGB value is sent. If neither of the preset values are sent, and the value is not a valid RGB hex code then it will render black.
• 'main' : This will render using the primary accent color used on cards/detail in the app
• 'alt' : This will render using the secondary accent color used on cards/detail in the app (often for owners only)
• Any other valid HEX RGB value will be rendered as sent

Structure

{
  //Use main / standard accent
  "highlightColor" : "main"

  //Use alt accent - often for owners only
  "highlightColor" : "alt"

  //Use your own custom color
  "highlightColor" : "#FF00FF"
}