Preparing search index...

    Enum specifying background color role.

        const Ui = await import('LensStudio:Ui');
    const parent = null as unknown as import('LensStudio:Ui').Widget;
    const callout = new Ui.CalloutFrame(parent);
    callout.setBackgroundRole(Ui.BackgroundRole.PanelBackground, Ui.ColorGroup.Normal);
    console.log(`BackgroundRole.PanelBackground=${Ui.BackgroundRole.PanelBackground}`);
    console.log(`Other roles: Window=${Ui.BackgroundRole.WindowBackground}, Popup=${Ui.BackgroundRole.PopupBackground}, Button=${Ui.BackgroundRole.ButtonBackground}`);
    Index

    Enumeration Members

    ButtonBackground: number

    Button and clickable element background

    ComponentBackground: number

    Standard component background

    CtaBackground: number

    Call-To-Action button background

    InputBackground: number

    Text input and form field background

    PanelBackground: number

    Secondary panel background

    PopupBackground: number

    Popup/tooltip background

    WindowBackground: number

    Application main window background