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