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