@rendley/sdk - v1.15.5
    Preparing search index...

    Variable CommonTextStyleSchemaConst

    CommonTextStyleSchema: Zod.ZodObject<
        {
            backgroundColor: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>;
            backgroundCornerRadius: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            backgroundPadding: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            color: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>;
            dropShadow: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodBoolean>>;
            dropShadowAlpha: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            dropShadowAngle: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            dropShadowBlur: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            dropShadowColor: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>;
            dropShadowDistance: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            fontFamily: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>;
            fontSize: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            fontStyle: Zod.ZodDefault<
                Zod.ZodOptional<Zod.ZodEnum<["normal", "italic", "oblique"]>>,
            >;
            fontWeight: Zod.ZodDefault<
                Zod.ZodOptional<
                    Zod.ZodEnum<
                        [
                            "normal",
                            "bold",
                            "bolder",
                            "lighter",
                            "100",
                            "200",
                            "300",
                            "400",
                            "500",
                            "600",
                            "700",
                            "800",
                            "900",
                        ],
                    >,
                >,
            >;
            letterSpacing: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            padding: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
            strokeColor: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>;
            strokeThickness: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodNumber>>;
        },
        "strip",
        Zod.ZodTypeAny,
        {
            backgroundColor: string;
            backgroundCornerRadius: number;
            backgroundPadding: number;
            color: string;
            dropShadow: boolean;
            dropShadowAlpha: number;
            dropShadowAngle: number;
            dropShadowBlur: number;
            dropShadowColor: string;
            dropShadowDistance: number;
            fontFamily: string;
            fontSize: number;
            fontStyle: "normal"
            | "italic"
            | "oblique";
            fontWeight:
                | "normal"
                | "bold"
                | "bolder"
                | "lighter"
                | "100"
                | "200"
                | "300"
                | "400"
                | "500"
                | "600"
                | "700"
                | "800"
                | "900";
            letterSpacing: number;
            padding: number;
            strokeColor: string;
            strokeThickness: number;
        },
        {
            backgroundColor?: string;
            backgroundCornerRadius?: number;
            backgroundPadding?: number;
            color?: string;
            dropShadow?: boolean;
            dropShadowAlpha?: number;
            dropShadowAngle?: number;
            dropShadowBlur?: number;
            dropShadowColor?: string;
            dropShadowDistance?: number;
            fontFamily?: string;
            fontSize?: number;
            fontStyle?: "normal"
            | "italic"
            | "oblique";
            fontWeight?:
                | "normal"
                | "bold"
                | "bolder"
                | "lighter"
                | "100"
                | "200"
                | "300"
                | "400"
                | "500"
                | "600"
                | "700"
                | "800"
                | "900";
            letterSpacing?: number;
            padding?: number;
            strokeColor?: string;
            strokeThickness?: number;
        },
    > = ...

    Zod schema for text style properties shared by main and highlighted subtitle text.