The animatable color interface, it provides all the necessary properties to create a color animation [[include:Options/Particles/Color.md]]

interface IAnimatableColor {
    animation: IColorAnimation | IHslAnimation;
    value: SingleOrMultiple<
        | SingleOrMultiple<string>
        | IRangeValueColor
        | IRangeRgb
        | IRangeHsl
        | IRangeHsv>;
}

Hierarchy (view full)

Implemented by

Properties

Properties

The color animation property

value: SingleOrMultiple<
    | SingleOrMultiple<string>
    | IRangeValueColor
    | IRangeRgb
    | IRangeHsl
    | IRangeHsv>

Color value, can be a single or an array of IValueColor, IRgb, IHsl or string