@nevware21/chromacon
    Preparing search index...

    Variable resetConst

    reset: ChromaStyle = ...

    Reset bth the Normal color and style with all attributes off.

    // ANSI Theme
    reset("text") // => "\x1b[0mtext\x1b[0m" (includes reset)
    `${reset}text` // => "\x1b[0mtext" (no reset included)
    reset + "text" // => "\x1b[0mtext" (no reset included)
    reset.concat("text") // => "\x1b[0mtext" (no reset included)