Terminal color definitions
| 17 | |
| 18 | # ANSI color codes |
| 19 | class Colors: |
| 20 | """Terminal color definitions""" |
| 21 | |
| 22 | RESET = "\033[0m" |
| 23 | BOLD = "\033[1m" |
| 24 | DIM = "\033[2m" |
| 25 | |
| 26 | # Foreground colors |
| 27 | RED = "\033[31m" |
| 28 | GREEN = "\033[32m" |
| 29 | YELLOW = "\033[33m" |
| 30 | BLUE = "\033[34m" |
| 31 | MAGENTA = "\033[35m" |
| 32 | CYAN = "\033[36m" |
| 33 | |
| 34 | # Bright colors |
| 35 | BRIGHT_BLACK = "\033[90m" |
| 36 | BRIGHT_RED = "\033[91m" |
| 37 | BRIGHT_GREEN = "\033[92m" |
| 38 | BRIGHT_YELLOW = "\033[93m" |
| 39 | BRIGHT_BLUE = "\033[94m" |
| 40 | BRIGHT_MAGENTA = "\033[95m" |
| 41 | BRIGHT_CYAN = "\033[96m" |
| 42 | BRIGHT_WHITE = "\033[97m" |
| 43 | |
| 44 | |
| 45 | class Agent: |
nothing calls this directly
no outgoing calls
no test coverage detected