blob: dc571446c7c8bc6c1b01913a551ff3f8a8a28264 [file] [log] [blame]
"""Color 'constants' used by the command line client.
"""
import platform
if platform.system().lower() != 'windows':
GREEN = "\33[32m"
RED = "\33[31m"
NO_COLOR = "\33[0m"
BOLD = "\33[1m"
else:
GREEN = ""
NO_COLOR = ""
RED = ""
BOLD = ""