@nevware21/chromacon
    Preparing search index...

    Variable yellowConst

    yellow: ChromaColor = ...

    Set the foreground color to yellow

    // ANSI Theme
    yellow("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)