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