MCPcopy Create free account
hub / github.com/MiniMax-AI/Mini-Agent / Colors

Class Colors

mini_agent/agent.py:19–42  ·  view source on GitHub ↗

Terminal color definitions

Source from the content-addressed store, hash-verified

17
18# ANSI color codes
19class 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
45class Agent:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected