@jsfkit/types
    Preparing search index...

    Type Alias PatternFill

    Pattern fill.

    Defines a fill using a repeating pattern (dots, stripes, crosshatch, etc.) with configurable foreground and background colors.

    type PatternFill = {
        bg?: Color;
        fg?: Color;
        style?: FillPatternStyle;
        type: "pattern";
    }
    Index

    Properties

    Properties

    bg?: Color

    Background color of the pattern.

    fg?: Color

    Foreground color of the pattern.

    Pattern style defining the visual design (horizontal, vertical, diagonal, dots, etc.).

    type: "pattern"

    Type discriminator for pattern fills.