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