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