KC's Workspace
    Preparing search index...
    Gradient:
        | {
            direction: LineDirection;
            items: GradientItemFor_DimensionPercentageFor_LengthValue[];
            type: "linear";
            vendorPrefix: VendorPrefix;
        }
        | {
            direction: LineDirection;
            items: GradientItemFor_DimensionPercentageFor_LengthValue[];
            type: "repeating-linear";
            vendorPrefix: VendorPrefix;
        }
        | {
            items: GradientItemFor_DimensionPercentageFor_LengthValue[];
            position: Position;
            shape: EndingShape;
            type: "radial";
            vendorPrefix: VendorPrefix;
        }
        | {
            items: GradientItemFor_DimensionPercentageFor_LengthValue[];
            position: Position;
            shape: EndingShape;
            type: "repeating-radial";
            vendorPrefix: VendorPrefix;
        }
        | {
            angle: Angle;
            items: GradientItemFor_DimensionPercentageFor_Angle[];
            position: Position;
            type: "conic";
        }
        | {
            angle: Angle;
            items: GradientItemFor_DimensionPercentageFor_Angle[];
            position: Position;
            type: "repeating-conic";
        }
        | | {
            from: WebKitGradientPoint;
            kind: "linear";
            stops: WebKitColorStop[];
            to: WebKitGradientPoint;
            type: "webkit-gradient";
        }
        | {
            from: WebKitGradientPoint;
            kind: "radial";
            r0: number;
            r1: number;
            stops: WebKitColorStop[];
            to: WebKitGradientPoint;
            type: "webkit-gradient";
        }

    A CSS <gradient> value.

    Type Declaration