@nevware21/chromacon
    Preparing search index...

    Variable magentaConst

    magenta: ChromaColor = ...

    Set the foreground color to magenta

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