Trails Packages
    Preparing search index...

    Interface ApplicationConfig

    Runtime application configuration.

    interface ApplicationConfig {
        chakraSystemConfig?: SystemConfig;
        colorMode?: ColorModeValue | "system";
        locale?: string;
        properties?: ApplicationProperties;
    }
    Index

    Properties

    chakraSystemConfig?: SystemConfig

    Chakra styled system object.

    Used to configure chakra's theme.

    NOTE: This setting has priority over CustomElementOptions.chakraSystemConfig.

    colorMode?: ColorModeValue | "system"

    Configures the application's initial color mode.

    Use system to use the user's preferred color mode, derived from the browser or operating system.

    Default: light.

    locale?: string

    Set this value to a locale string (e.g. "en") to for the application's locale. The default behavior is to choose an appropriate locale for the current user based on the browser's settings.

    The locale must be supported by the application.

    Properties specified here will override default properties of the application's packages.