DuckDB Terminal - v0.2.0
    Preparing search index...

    Interface ThemeColors

    Color definitions for a terminal theme.

    Includes the standard 16 ANSI colors plus special terminal colors (background, foreground, cursor, selection).

    const colors: ThemeColors = {
    background: '#1e1e1e',
    foreground: '#d4d4d4',
    cursor: '#aeafad',
    selection: '#264f78',
    black: '#000000',
    red: '#cd3131',
    green: '#0dbc79',
    yellow: '#e5e510',
    blue: '#2472c8',
    magenta: '#bc3fbc',
    cyan: '#11a8cd',
    white: '#e5e5e5',
    brightBlack: '#666666',
    brightRed: '#f14c4c',
    brightGreen: '#23d18b',
    brightYellow: '#f5f543',
    brightBlue: '#3b8eea',
    brightMagenta: '#d670d6',
    brightCyan: '#29b8db',
    brightWhite: '#e5e5e5',
    };
    interface ThemeColors {
        background: string;
        black: string;
        blue: string;
        brightBlack: string;
        brightBlue: string;
        brightCyan: string;
        brightGreen: string;
        brightMagenta: string;
        brightRed: string;
        brightWhite: string;
        brightYellow: string;
        cursor: string;
        cyan: string;
        foreground: string;
        green: string;
        magenta: string;
        red: string;
        selection: string;
        white: string;
        yellow: string;
    }
    Index

    Properties

    background: string

    Terminal background color

    black: string

    ANSI black (color 0)

    blue: string

    ANSI blue (color 4)

    brightBlack: string

    ANSI bright black (color 8)

    brightBlue: string

    ANSI bright blue (color 12)

    brightCyan: string

    ANSI bright cyan (color 14)

    brightGreen: string

    ANSI bright green (color 10)

    brightMagenta: string

    ANSI bright magenta (color 13)

    brightRed: string

    ANSI bright red (color 9)

    brightWhite: string

    ANSI bright white (color 15)

    brightYellow: string

    ANSI bright yellow (color 11)

    cursor: string

    Cursor color

    cyan: string

    ANSI cyan (color 6)

    foreground: string

    Default text (foreground) color

    green: string

    ANSI green (color 2)

    magenta: string

    ANSI magenta (color 5)

    red: string

    ANSI red (color 1)

    selection: string

    Text selection highlight color

    white: string

    ANSI white (color 7)

    yellow: string

    ANSI yellow (color 3)