| 181 | } |
| 182 | |
| 183 | TStringBuf TColors::StyleLight() const noexcept { |
| 184 | return IsTTY() ? ToStringBufC(EAnsiCode::ST_LIGHT) : ToStringBufC(EAnsiCode::INVALID); |
| 185 | } |
| 186 | TStringBuf TColors::StyleDark() const noexcept { |
| 187 | return IsTTY() ? ToStringBufC(EAnsiCode::ST_DARK) : ToStringBufC(EAnsiCode::INVALID); |
| 188 | } |
nothing calls this directly
no test coverage detected