Return text in yellow color for terminal output. Args: text: The text to format Returns: Text wrapped with ANSI yellow color codes
(text: str)
| 33 | |
| 34 | |
| 35 | def yellow_text(text: str) -> str: |
| 36 | """ |
| 37 | Return text in yellow color for terminal output. |
| 38 | |
| 39 | Args: |
| 40 | text: The text to format |
| 41 | |
| 42 | Returns: |
| 43 | Text wrapped with ANSI yellow color codes |
| 44 | """ |
| 45 | return f"\033[33m{text}\033[0m" |
| 46 | |
| 47 | |
| 48 | def blue_text(text: str) -> str: |