Const
Set the foreground color to bright red
// ANSI ThemebrightRed("text") // => "\x1b[91mtext\x1b[39m" (includes reset to default foreground)`${brightRed}text` // => "\x1b[91mtext" (no reset included)brightRed + "text" // => "\x1b[91mtext" (no reset included)brightRed.concat("text") // => "\x1b[91mtext" (no reset included) Copy
// ANSI ThemebrightRed("text") // => "\x1b[91mtext\x1b[39m" (includes reset to default foreground)`${brightRed}text` // => "\x1b[91mtext" (no reset included)brightRed + "text" // => "\x1b[91mtext" (no reset included)brightRed.concat("text") // => "\x1b[91mtext" (no reset included)
Set the foreground color to bright red