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