tabby
tabby copied to clipboard
Add colored output
Asking if you could add colored output per column and row. Alternatively, if someone knows of a golang package to use to print colored columns let me know.
I'm not a maintainer of this repo and I don't know if this feature is coming here. However, you could use faith/color to "color a string" using ANSI escape codes, which I'm assuming is what you're after.
Something like
t.AddLine(color.Cyan("John Smith."), color.Blue("Developer"), color.Red("Engineering"))
@remnestal i think i tried that and some other packages but they would mess up the formatting of the table. Columns would go into each other, it would cause a mess.