interface ScreenLookAndFeel {
    background: string;
    backgroundAttachment?: null | string;
    backgroundBlendMode?: null | string;
    backgroundClip?: null | string;
    backgroundColor?: null | string;
    backgroundImage?: null | string;
    backgroundOrigin?: null | string;
    backgroundPosition?: null | string;
    backgroundRepeat?: null | string;
    backgroundSize?: null | string;
    gutterBottom?: null | string;
    gutterLeft?: null | string;
    gutterRight?: null | string;
    gutterTop?: null | string;
    layer?: null | {
        height?: string;
        width?: string;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • ScreenLookAndFeel

Properties

background: string
backgroundAttachment?: null | string
backgroundBlendMode?: null | string
backgroundClip?: null | string
backgroundColor?: null | string
backgroundImage?: null | string
backgroundOrigin?: null | string
backgroundPosition?: null | string
backgroundRepeat?: null | string
backgroundSize?: null | string
gutterBottom?: null | string
gutterLeft?: null | string
gutterRight?: null | string
gutterTop?: null | string
layer?: null | {
    height?: string;
    width?: string;
} & {
    [key: string]: unknown;
}