@nevware21/chromacon
    Preparing search index...

    Variable bgGrayConst

    bgGray: ChromaColor = ...

    Set the background color to gray

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