@nevware21/chromacon
    Preparing search index...

    Variable brightCyanConst

    brightCyan: ChromaColor = ...

    Set the foreground color to bright cyan

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