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