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