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