@nevware21/chromacon
    Preparing search index...

    Variable blackConst

    black: ChromaColor = ...

    Set the foreground color to black

    // ANSI Theme
    black("text") // => "\x1b[30mtext\x1b[39m" (includes reset to default foreground)
    `${black}text` // => "\x1b[30mtext" (no reset included)
    black + "text" // => "\x1b[30mtext" (no reset included)
    black.concat("text") // => "\x1b[30mtext" (no reset included)