Const
Set the foreground color to grey
// ANSI Themegrey("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) Copy
// ANSI Themegrey("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)
Set the foreground color to grey