Normal intensity (neither bold nor faint), this is the default intensity. And also resets bold and dim styles,
which is why automatic reset behavior ignores any embedded normal intensity.
It is not recommended to use this style directly but rather rely on the automatic reset behavior of other styles.
Example
// ANSI Theme normal("text") // => "\x1b[22mtext\x1b[22m" (includes reset to normal intensity) `${normal}text`// => "\x1b[22mtext" (no reset included) normal + "text"// => "\x1b[22mtext" (no reset included) normal.concat("text") // => "\x1b[22mtext" (no reset included)
Normal intensity (neither bold nor faint), this is the default intensity. And also resets bold and dim styles, which is why automatic reset behavior ignores any embedded normal intensity. It is not recommended to use this style directly but rather rely on the automatic reset behavior of other styles.