| 204 | } |
| 205 | |
| 206 | TStringBuf TColors::ForeDefault() const noexcept { |
| 207 | return IsTTY() ? ToStringBufC(EAnsiCode::FG_DEFAULT) : ToStringBufC(EAnsiCode::INVALID); |
| 208 | } |
| 209 | TStringBuf TColors::ForeBlack() const noexcept { |
| 210 | return IsTTY() ? ToStringBufC(EAnsiCode::FG_BLACK) : ToStringBufC(EAnsiCode::INVALID); |
| 211 | } |
nothing calls this directly
no test coverage detected