| 364 | } |
| 365 | |
| 366 | TStringBuf TColors::CyanColor() const noexcept { |
| 367 | return IsTTY() ? "\033[22;36m" : ""; |
| 368 | } |
| 369 | |
| 370 | TStringBuf TColors::RedColor() const noexcept { |
| 371 | return IsTTY() ? "\033[22;31m" : ""; |
no outgoing calls
no test coverage detected