Const
Set the background color to magenta
// ANSI ThemebgMagenta("text") // => "\x1b[45mtext\x1b[49m" (includes reset to default background)`${bgMagenta}text` // => "\x1b[45mtext" (no reset included)bgMagenta + "text" // => "\x1b[45mtext" (no reset included)bgMagenta.concat("text") // => "\x1b[45mtext" (no reset included) Copy
// ANSI ThemebgMagenta("text") // => "\x1b[45mtext\x1b[49m" (includes reset to default background)`${bgMagenta}text` // => "\x1b[45mtext" (no reset included)bgMagenta + "text" // => "\x1b[45mtext" (no reset included)bgMagenta.concat("text") // => "\x1b[45mtext" (no reset included)
Set the background color to magenta