@nevware21/chromacon
    Preparing search index...

    Variable cyanConst

    cyan: ChromaColor = ...

    Set the foreground color to cyan

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