Color Picker

Description: Interactive tool for selecting and exploring colors with various formats and palettes.

API Response Structure:

{
  "color": {
    "hex": "#FF5733",
    "rgb": {
      "r": 255,
      "g": 87,
      "b": 51
    },
    "hsl": {
      "h": 9,
      "s": 100,
      "l": 60
    }
  },
  "palette": [
    {
      "color": "#FF5733",
      "name": "Coral Red"
    },
    {
      "color": "#33FF57",
      "name": "Lime Green"
    }
  ],
  "harmonies": {
    "complementary": "#33B5FF",
    "analogous": ["#FF3333", "#FF9933"]
  },
  "type": "instantAnswers",
  "configType": "colorPicker"
}

Fields:

  • color (object): Selected color information

    • hex (string): Hexadecimal value

    • rgb (object): RGB values

    • hsl (object): HSL values

  • palette (array): Related colors

    • color (string): Color value

    • name (string): Color name

  • harmonies (object): Color harmonies

  • type (string): Always "instantAnswers"

  • configType (string): Always "colorPicker"