@nevware21/chromacon
    Preparing search index...

    Variable brightWhiteConst

    brightWhite: ChromaColor = ...

    Set the foreground color to bright white

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