()
| 105 | } |
| 106 | |
| 107 | func (s *IOStreams) ColorSupport256() bool { |
| 108 | if s.colorOverride { |
| 109 | return s.colorEnabled |
| 110 | } |
| 111 | return s.term.Is256ColorSupported() |
| 112 | } |
| 113 | |
| 114 | func (s *IOStreams) HasTrueColor() bool { |
| 115 | if s.colorOverride { |
no test coverage detected