(w io.Writer, st lipgloss.Style, s string)
| 43 | ) |
| 44 | |
| 45 | func render(w io.Writer, st lipgloss.Style, s string) string { |
| 46 | if shouldColor(w) { |
| 47 | ss := st.Render(s) |
| 48 | return ss |
| 49 | } |
| 50 | return s |
| 51 | } |
| 52 | |
| 53 | func reset(w io.Writer, termW io.Writer) { |
| 54 | if shouldColor(termW) { |