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