Const
Overlined style (Not supported in Terminal app)
// ANSI Themeoverlined("text") // => "\x1b[53mtext\x1b[55m" (includes reset to not overlined)`${overlined}text` // => "\x1b[53mtext" (no reset included)overlined + "text" // => "\x1b[53mtext" (no reset included)overlined.concat("text") // => "\x1b[53mtext" (no reset included) Copy
// ANSI Themeoverlined("text") // => "\x1b[53mtext\x1b[55m" (includes reset to not overlined)`${overlined}text` // => "\x1b[53mtext" (no reset included)overlined + "text" // => "\x1b[53mtext" (no reset included)overlined.concat("text") // => "\x1b[53mtext" (no reset included)
Overlined style (Not supported in Terminal app)