MCPcopy Create free account
hub / github.com/1rgs/claude-code-proxy / Colors

Class Colors

server.py:1651–1661  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1649
1650# Define ANSI color codes for terminal output
1651class Colors:
1652 CYAN = "\033[96m"
1653 BLUE = "\033[94m"
1654 GREEN = "\033[92m"
1655 YELLOW = "\033[93m"
1656 RED = "\033[91m"
1657 MAGENTA = "\033[95m"
1658 RESET = "\033[0m"
1659 BOLD = "\033[1m"
1660 UNDERLINE = "\033[4m"
1661 DIM = "\033[2m"
1662
1663
1664def log_request_beautifully(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected