Const// ANSI Theme
bgBrightGreen("text") // => "\x1b[102mtext\x1b[49m" (includes reset to default background)
`${bgBrightGreen}text` // => "\x1b[102mtext" (no reset included)
bgBrightGreen + "text" // => "\x1b[102mtext" (no reset included)
bgBrightGreen.concat("text") // => "\x1b[102mtext" (no reset included)
Set the background color to bright green