Color¶
A Color is a human-understandable description of a color which the end-user’s presentation UI should use in its display in order to reproduce the same (e.g. HTML colour value).
{
"title" : "blue",
"rgb" : [0,0,255],
"hex" : "#0000FF",
"meta" : {
"property": "value"
}
}
| Property | Description | Type | Required |
|---|---|---|---|
| hex | Friendly HTML-reference code of the color. | string | No |
| meta | Arbitrary Meta object of custom properties. | object | No |
| rgb | RGB reference numbers of the color. | array [int 0-255] | Yes |
| title | A sluggable, human-understandable name for the color. | string | Yes |