echo -e "\033[01;31mhi" Produces bright/bold red text, but echo -e "\033[01;31mhi" | go run ansi.go does not show bright red text, just regular red text.
This is using the code provided on the ANSI wiki page: https://github.com/rivo/tview/wiki/ANSI.
Interestingly, faint text shows up as expected: echo -e "\033[02;31mhi" | go run ansi.go
echo -e "\033[01;31mhi"Produces bright/bold red text, butecho -e "\033[01;31mhi" | go run ansi.godoes not show bright red text, just regular red text.This is using the code provided on the ANSI wiki page: https://github.com/rivo/tview/wiki/ANSI.
Interestingly, faint text shows up as expected:
echo -e "\033[02;31mhi" | go run ansi.go