@jsfkit/types
    Preparing search index...

    Type Alias ThemeFontCollection

    A font collection from the theme.

    A font collection consists of a font definition for Latin, East Asian, and complex script. On top of these, a font collection can also define a font for use in a specific language or languages.

    type ThemeFontCollection = {
        complexScript?: ThemeTextFont;
        eastAsian?: ThemeTextFont;
        latin: ThemeTextFont;
        supplemental?: ThemeSupplementalFont[];
    }
    Index

    Properties

    complexScript?: ThemeTextFont

    Complex script defaults.

    eastAsian?: ThemeTextFont

    East Asian script defaults.

    Latin script defaults.

    supplemental?: ThemeSupplementalFont[]

    Additional fonts used for language-specific fonts in themes. For example, one can specify a font that gets used only within the Japanese language context.