@nevware21/chromacon
    Preparing search index...

    Variable bgMagentaConst

    bgMagenta: ChromaColor = ...

    Set the background color to magenta

    // ANSI Theme
    bgMagenta("text") // => "\x1b[45mtext\x1b[49m" (includes reset to default background)
    `${bgMagenta}text` // => "\x1b[45mtext" (no reset included)
    bgMagenta + "text" // => "\x1b[45mtext" (no reset included)
    bgMagenta.concat("text") // => "\x1b[45mtext" (no reset included)