@nevware21/chromacon
    Preparing search index...

    Variable bgBrightCyanConst

    bgBrightCyan: ChromaColor = ...

    Set the background color to bright cyan

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