@jsfkit/types
    Preparing search index...

    Type Alias GradientColorStop

    Gradient color stop.

    Defines a color transition point within a gradient fill, specifying both the position and color at that point.

    type GradientColorStop = {
        color: Color;
        offset: Percentage;
    }
    Index

    Properties

    Properties

    color: Color

    Color value at this gradient stop position.

    offset: Percentage

    Position of this color stop within the gradient (0-100, where 0 is start and 100 is end).