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