Const
Encircled style
// ANSI Themeencircled("text") // => "\x1b[52mtext\x1b[0m" (includes full reset)`${encircled}text` // => "\x1b[52mtext" (no reset included)encircled + "text" // => "\x1b[52mtext" (no reset included)encircled.concat("text") // => "\x1b[52mtext" (no reset included) Copy
// ANSI Themeencircled("text") // => "\x1b[52mtext\x1b[0m" (includes full reset)`${encircled}text` // => "\x1b[52mtext" (no reset included)encircled + "text" // => "\x1b[52mtext" (no reset included)encircled.concat("text") // => "\x1b[52mtext" (no reset included)
Encircled style