@nevware21/chromacon
    Preparing search index...

    Variable bgBlueConst

    bgBlue: ChromaColor = ...

    Set the background color to blue

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