# -*- coding: utf-8 -*- """ UI Color Constants """ COLOR_PROMPT = '\033[93m' # Yellow COLOR_SELECTION = '\033[96m' # Cyan COLOR_RESET = '\033[0m' COLOR_INFO = '\033[94m' # Blue COLOR_ERROR = '\033[91m' # Red COLOR_SUCCESS = '\033[92m' # Green COLOR_WARNING = '\033[93m' # Yellow (reusing prompt color) COLOR_DISABLED = '\033[90m' # Grey COLOR_ACTION = '\033[97m' # Bright White for action/descriptions COLOR_INPUT = '\033[97m' # Bright White for input prompts