@nevware21/chromacon
    Preparing search index...

    Variable brightYellowConst

    brightYellow: ChromaColor = ...

    Set the foreground color to bright yellow

    // 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)