@nevware21/chromacon
    Preparing search index...

    Variable whiteConst

    white: ChromaColor = ...

    Set the foreground color to white

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