@nevware21/chromacon
    Preparing search index...

    Variable bgBrightYellowConst

    bgBrightYellow: ChromaColor = ...

    Set the background color to bright yellow

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