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