@nevware21/chromacon
    Preparing search index...

    Variable bgGreenConst

    bgGreen: ChromaColor = ...

    Set the background color to green

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