@nevware21/chromacon
    Preparing search index...

    Variable bgBrightBlueConst

    bgBrightBlue: ChromaColor = ...

    Set the background color to bright blue

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