@nevware21/chromacon
    Preparing search index...

    Variable blueConst

    blue: ChromaColor = ...

    Set the foreground color to blue

    // ANSI Theme
    blue("text") // => "\x1b[34mtext\x1b[39m" (includes reset to default foreground)
    `${blue}text` // => "\x1b[34mtext" (no reset included)
    blue + "text" // => "\x1b[34mtext" (no reset included)
    blue.concat("text") // => "\x1b[34mtext" (no reset included)