@nevware21/chromacon
    Preparing search index...

    Variable bgBlackConst

    bgBlack: ChromaColor = ...

    Set the background color to black

    // ANSI Theme
    bgBlack("text") // => "\x1b[40mtext\x1b[49m" (includes reset to default background)
    `${bgBlack}text` // => "\x1b[40mtext" (no reset included)
    bgBlack + "text" // => "\x1b[40mtext" (no reset included)
    bgBlack.concat("text") // => "\x1b[40mtext" (no reset included)