interface IColorManager {
    key: string;
    stringPrefix: string;
    handleColor(color: IColor): undefined | IRgb;
    handleRangeColor(color: IRangeColor): undefined | IRgb;
    parseString(input: string): undefined | IRgba;
}

Properties

key: string
stringPrefix: string

Methods

  • Parameters

    Returns undefined | IRgb

  • Parameters

    Returns undefined | IRgb

  • Parameters

    • input: string

    Returns undefined | IRgba