@nevware21/chromacon
    Preparing search index...

    Variable grayConst

    gray: ChromaColor = ...

    Set the foreground color to gray

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