An object representation of a color, with an optional type and its values.

interface ColorObject {
    type?: string;
    values?: ColorValues;
}

Properties

Properties

type?: string

The type of the color (e.g., "CIMHSVColor").

values?: ColorValues

The color values.