bach-or-bot / src /musiclime /print_utils.py
krislette's picture
Auto-deploy from GitHub: 7bbe4e79d2cd5e035a2fc8cda464b3cd867300d5
7633e2f
raw
history blame contribute delete
325 Bytes
def green_bold(text):
"""
Format text with green bold ANSI color codes for terminal output.
Parameters
----------
text : str
Text string to format
Returns
-------
str
Text wrapped with ANSI escape codes for green bold formatting
"""
return f"\033[1;32m{text}\033[0m"