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