interface ColorArgument {
    defaultValue?: string | number;
    type: "color";
}

Properties

Properties

defaultValue?: string | number

Should be a hex color code. No alpha channel supported. Defaults to random color.

type: "color"