@nevware21/chromacon
    Preparing search index...

    Variable bgWhiteConst

    bgWhite: ChromaColor = ...

    Set the background color to white

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