gespenst API - v0.1.0
    Preparing search index...

    Interface ResolvedTerminalTheme

    Fully normalized terminal theme.

    interface ResolvedTerminalTheme {
        appearance: ThemeAppearance;
        background: RgbaColor;
        cursor: RgbaColor;
        cursorAccent: RgbaColor;
        foreground: RgbaColor;
        palette: readonly RgbaColor[];
        selectionBackground: RgbaColor;
        selectionForeground: RgbaColor | null;
        selectionInactiveBackground: RgbaColor;
    }
    Index
    appearance: ThemeAppearance

    Resolved light or dark appearance.

    background: RgbaColor

    Default background color.

    cursor: RgbaColor

    Cursor color.

    cursorAccent: RgbaColor

    Text color underneath a block cursor.

    foreground: RgbaColor

    Default text color.

    palette: readonly RgbaColor[]

    Complete 256-color ANSI palette.

    selectionBackground: RgbaColor

    Active selection background.

    selectionForeground: RgbaColor | null

    Active selection foreground, or null to retain the cell foreground.

    selectionInactiveBackground: RgbaColor

    Inactive selection background.