cel-tui
    Preparing search index...

    Interface Cell

    A single terminal cell with character content and styling.

    Each cell represents one column in the terminal grid. Wide characters (CJK, emoji) occupy two cells — the first cell holds the character, the second is a continuation marker.

    interface Cell {
        bgColor: Color | null;
        bold: boolean;
        char: string;
        fgColor: Color | null;
        italic: boolean;
        underline: boolean;
    }
    Index

    Properties

    bgColor: Color | null

    Background color, or null for terminal default.

    bold: boolean

    Bold weight.

    char: string

    The grapheme cluster displayed in this cell.

    fgColor: Color | null

    Foreground color, or null for terminal default.

    italic: boolean

    Italic style.

    underline: boolean

    Underline decoration.