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