@nevware21/chromacon
    Preparing search index...

    Variable bgBrightRedConst

    bgBrightRed: ChromaColor = ...

    Set the background color to bright red

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