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