Const
Set the foreground color to black
// ANSI Themeblack("text") // => "\x1b[30mtext\x1b[39m" (includes reset to default foreground)`${black}text` // => "\x1b[30mtext" (no reset included)black + "text" // => "\x1b[30mtext" (no reset included)black.concat("text") // => "\x1b[30mtext" (no reset included) Copy
// ANSI Themeblack("text") // => "\x1b[30mtext\x1b[39m" (includes reset to default foreground)`${black}text` // => "\x1b[30mtext" (no reset included)black + "text" // => "\x1b[30mtext" (no reset included)black.concat("text") // => "\x1b[30mtext" (no reset included)
Set the foreground color to black