@nevware21/chromacon
    Preparing search index...

    Variable bgBrightWhiteConst

    bgBrightWhite: ChromaColor = ...

    Set the background color to bright white

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