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

    Interface RenderColors

    Resolved colors for a render frame.

    interface RenderColors {
        background: RenderColor;
        cursor: RenderColor | null;
        cursorAccent?: RenderColor;
        foreground: RenderColor;
        palette: readonly RenderColor[];
        selectionBackground?: RenderColor;
        selectionForeground?: RenderColor | null;
        selectionInactiveBackground?: RenderColor;
    }
    Index
    background: RenderColor

    Default background color.

    cursor: RenderColor | null

    Cursor color, or null for the default.

    cursorAccent?: RenderColor

    Text color underneath a block cursor.

    foreground: RenderColor

    Default text color.

    palette: readonly RenderColor[]

    Resolved 256-color palette.

    selectionBackground?: RenderColor

    Active selection background.

    selectionForeground?: RenderColor | null

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

    selectionInactiveBackground?: RenderColor

    Inactive selection background.