@nevware21/chromacon
    Preparing search index...

    Variable brightRedConst

    brightRed: ChromaColor = ...

    Set the foreground color to bright red

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