@nevware21/chromacon
    Preparing search index...

    Variable bgCyanConst

    bgCyan: ChromaColor = ...

    Set the background color to cyan

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