Design System Utilities @ 0.1.1-alpha.0
    Preparing search index...

    Type Alias InputParam<T_ColourName, T_ExtraColourLevels, T_ThemeBrightnessMode, T_ThemeContrastMode, T_ThemeName, T_Keyword_Universal, T_Keyword_Text, T_Keyword_Background>Internal

    InputParam: {
        name: T_ThemeName;
        forcedColours?: Omit<
            Tokens_Themes_Set_SingleMode.InputParam<
                T_ColourName,
                T_ExtraColourLevels,
                T_Keyword_Universal,
                T_Keyword_Text,
                T_Keyword_Background,
                CssSystemColor,
            >,
            "levels"
            | "variations",
        > & {
            overrides?: Tokens_Themes_Set_SingleMode.Data_RecursivePartial<
                T_ColourName,
                T_ExtraColourLevels,
                T_Keyword_Universal,
                T_Keyword_Text,
                T_Keyword_Background,
                CssSystemColor,
            >;
        };
        variations?: Tokens_Themes_Set_SingleMode.InputParam<
            T_ColourName,
            T_ExtraColourLevels,
            T_Keyword_Universal,
            T_Keyword_Text,
            T_Keyword_Background,
        >["variations"];
    } & {
        [B in T_ThemeBrightnessMode[number]]?: {
            [C in T_ThemeContrastMode[number]]?: Tokens_Themes_Set_SingleMode.InputParam<
                T_ColourName,
                T_ExtraColourLevels,
                T_Keyword_Universal,
                T_Keyword_Text,
                T_Keyword_Background,
            > & {
                overrides?: Tokens_Themes_Set_SingleMode.Data_RecursivePartial<
                    T_ColourName,
                    T_ExtraColourLevels,
                    T_Keyword_Universal,
                    T_Keyword_Text,
                    T_Keyword_Background,
                >;
            }
        }
    }

    Type Parameters

    • T_ColourName extends string
    • T_ExtraColourLevels extends Optional
    • T_ThemeBrightnessMode extends readonly string[]
    • T_ThemeContrastMode extends readonly ThemeMode_ContrastOption[]
    • T_ThemeName extends string
    • T_Keyword_Universal extends string
    • T_Keyword_Text extends string
    • T_Keyword_Background extends string

    0.1.0-alpha