meo-canvas - v9.0.2
    Preparing search index...

    Interface TextShadowProps

    Defines the properties for a single text-shadow effect, similar to CSS text-shadow.

    interface TextShadowProps {
        blur?: number;
        color?: string;
        offsetX?: number;
        offsetY?: number;
    }
    Index
    blur?: number

    The blur radius. Larger values create bigger, lighter blurs. Negative values are invalid.

    Pixels.

    0 (hard shadow)
    
    color?: string

    The color of the shadow. Accepts standard CSS color strings.

    offsetX?: number

    The horizontal offset of the shadow. Positive values move it right, negative values left.

    Pixels.

    0
    
    offsetY?: number

    The vertical offset of the shadow. Positive values move it down, negative values up.

    Pixels.

    0