@nevware21/chromacon
    Preparing search index...

    Variable brightBlueConst

    brightBlue: ChromaColor = ...

    Set the foreground color to bright blue

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