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