blessed-components - v1.20.0
    Preparing search index...

    Interface ResolveBoxThemeOptions

    Semantic theme configuration accepted by resolveBoxTheme.

    interface ResolveBoxThemeOptions {
        capabilities: Pick<TerminalCapabilities, "colorLevel">;
        component?: string;
        backgroundTone?: keyof ThemeColors;
        borderTone?: keyof ThemeColors;
        foregroundTone?: keyof ThemeColors;
        theme?: Theme;
    }
    Index

    Properties

    capabilities: Pick<TerminalCapabilities, "colorLevel">

    Explicit terminal color capability.

    component?: string

    Component key used for component-level color overrides.

    backgroundTone?: keyof ThemeColors

    Semantic background token.

    'background'

    borderTone?: keyof ThemeColors

    Semantic border token.

    'border'

    foregroundTone?: keyof ThemeColors

    Semantic foreground token.

    'foreground'

    theme?: Theme

    Semantic terminal theme.

    DEFAULT_THEME