Module: Tuile::Ansi
- Defined in:
- lib/tuile/ansi.rb
Overview
ANSI escape sequence constants. Tuile emits colors and text attributes via Rainbow, which produces SGR sequences (“Select Graphic Rendition”, ‘ESC [ <params> m` — e.g. `e[31m` red, `e[1m` bold, `e[0m` reset).
Constant Summary collapse
- RESET =
SGR reset (‘ESC [ 0 m`). Restores the terminal’s default foreground, background, and text attributes.
"\e[0m"