We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 079f2de commit 88f361fCopy full SHA for 88f361f
colours.py
@@ -0,0 +1,6 @@
1
+from colorama import init, Fore, Back, Style
2
+
3
+init()
4
5
+def print_with_color(text, color=Fore.WHITE, brightness=Style.NORMAL):
6
+ print(f'{brightness}{color}{text}{Style.RESET_ALL}')
0 commit comments