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