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