We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d86c6ec commit 67758edCopy full SHA for 67758ed
1 file changed
CoreShell/colours.py
@@ -0,0 +1,29 @@
1
+def black():
2
+ return "\033[30m"
3
+
4
+def red():
5
+ return "\033[31m"
6
7
+def green():
8
+ return "\033[92m"
9
10
+def yellow():
11
+ return "\033[33m"
12
13
+def blue():
14
+ return "\033[34m"
15
16
+def magenta():
17
+ return "\033[35m"
18
19
+def cyan():
20
+ return "\033[96m"
21
22
+def white():
23
+ return "\033[37m"
24
25
+def reset():
26
+ return "\033[0m"
27
28
+def grey():
29
+ return "\033[90m"
0 commit comments