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