@nevware21/chromacon
    Preparing search index...

    Variable brightMagentaConst

    brightMagenta: ChromaColor = ...

    Set the foreground color to bright magenta

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