@nevware21/chromacon
    Preparing search index...

    Variable bgGreyConst

    bgGrey: ChromaColor = ...

    Set the background color to grey

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