@nevware21/chromacon
    Preparing search index...

    Variable bgBrightMagentaConst

    bgBrightMagenta: ChromaColor = ...

    Set the background color to bright magenta

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