Color Property

Color Picker 

A basic color picker input.

1colorProperty: Color;

Color Picker

The value returned from the selection contains both the hex value and the RGB value.

The object structure is as follows:

1{
2  hex: string;
3  a: number;
4  b: number;
5  g: number;
6  r: number;
7}