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