platform-bible-utils
    Preparing search index...

    Interface ThemeFamily

    A group of related themes. Each key is a theme type, and each value is a ThemeDefinition.

    A theme type indicates the kind of theme (e.g. light, dark). Some UI elements use the theme type to determine how to look. Colors not present in the theme will fall back to the built-in colors for this type.

    interface ThemeFamily {
        dark?: ThemeDefinition;
        light?: ThemeDefinition;
        [themeType: string]: undefined | ThemeDefinition;
    }

    Indexable

    Index

    Properties

    Properties