Preparing search index...

    Enum specifying color group role.

        const Ui = await import('LensStudio:Ui');

    // ColorGroup represents widget interaction states used to select theme colors.
    // Each state maps to a different color set in the theme palette.
    const groups = [
    { name: 'Base', value: Ui.ColorGroup.Base },
    { name: 'Normal', value: Ui.ColorGroup.Normal },
    { name: 'Hover', value: Ui.ColorGroup.Hover },
    { name: 'Pressed', value: Ui.ColorGroup.Pressed },
    { name: 'Disabled', value: Ui.ColorGroup.Disabled },
    { name: 'ReadOnly', value: Ui.ColorGroup.ReadOnly },
    { name: 'DisabledInHierarchy', value: Ui.ColorGroup.DisabledInHierarchy },
    ];
    for (const g of groups) {
    console.log(`ColorGroup.${g.name}:`, g.value);
    }
    Index

    Enumeration Members

    Base: number

    Base color state.

    Disabled: number

    Disabled color state.

    DisabledInHierarchy: number

    Color state for disabled elements in hierarchy.

    Hover: number

    Hover color state.

    Normal: number

    Normal color state.

    Pressed: number

    Pressed color state.

    ReadOnly: number

    Read-only color state.