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