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