We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b2b1d commit fd5fe99Copy full SHA for fd5fe99
clibot/colors.py
@@ -1,7 +1,12 @@
1
-LIGHT_BLUE = "\033[94m"
2
-LIGHT_CYAN = "\033[96m"
3
-LIGHT_GREEN = "\033[92m"
4
-LIGHT_WHITE = "\033[97m"
5
-LIGHT_YELLOW = "\033[93m"
6
-LIGHT_RED = "\033[91m"
7
-COLOR_RESET = "\033[0m"
+from colorama import Fore, Style, init
+
+# Initialize colorama
+init(autoreset=True)
+LIGHT_BLUE = Fore.LIGHTBLUE_EX
+LIGHT_CYAN = Fore.LIGHTCYAN_EX
8
+LIGHT_GREEN = Fore.LIGHTGREEN_EX
9
+LIGHT_WHITE = Fore.LIGHTWHITE_EX
10
+LIGHT_YELLOW = Fore.LIGHTYELLOW_EX
11
+LIGHT_RED = Fore.LIGHTRED_EX
12
+COLOR_RESET = Style.RESET_ALL
0 commit comments