@nevware21/chromacon
    Preparing search index...

    Variable bgYellowConst

    bgYellow: ChromaColor = ...

    Set the background color to yellow

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