@nevware21/chromacon
    Preparing search index...

    Variable greyConst

    grey: ChromaColor = ...

    Set the foreground color to grey

    // ANSI Theme
    grey("text") // => "\x1b[90mtext\x1b[39m" (includes reset to default foreground)
    `${grey}text` // => "\x1b[90mtext" (no reset included)
    grey + "text" // => "\x1b[90mtext" (no reset included)
    grey.concat("text") // => "\x1b[90mtext" (no reset included)