Takes an input string and adds the ANSI codes for bright magenta
background.
Example
backgroundBrightMagenta("Vangware"); // "\x1b[105mVangware\x1b[49m" // It can also be used as a tag function for tagged templates: backgroundBrightMagenta`Vangware`; // "\x1b[105mVangware\x1b[49m"
Takes an
input
string and adds the ANSI codes for bright magenta background.Example
Returns
input
string with bright magenta background.