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