ratatui / ansi-to-tui

Convert ansi colored text to tui::text::Text
https://crates.io/crates/ansi-to-tui
MIT License
57 stars 21 forks source link

Add fg/bg colors for 90-110 ANSI code range #21

Closed willcrichton closed 1 year ago

willcrichton commented 1 year ago

As per Wikipedia, the ANSI SGR code ranges 90-97 and 100-107 are used to set bright foreground and background colors. Notably, at least Typescript's tsc binary uses these codes as output.

This PR adds support for these color ranges, using the mapping described in this document: https://ss64.com/nt/syntax-ansi.html

uttarayan21 commented 1 year ago

Thank you for the pr