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