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

Implemented by

Properties

key: string
stringPrefix: string

Methods