File tree Expand file tree Collapse file tree 1 file changed +53
-5
lines changed Expand file tree Collapse file tree 1 file changed +53
-5
lines changed Original file line number Diff line number Diff line change 11import os
22class colors ():
3- Lime = '\33 [92m'
4-
5- Red = '\033 [91m'
6-
7- Yellow = '\033 [93m'
83
4+ # Colors
5+
6+ Lime = '\33 [92m'
7+ Red = '\33 [91m'
8+ Yellow = '\33 [93m'
9+ Black = '\33 [30m'
10+
11+ Green = '\33 [32m'
12+ Blue = '\33 [34m'
13+ Violet = '\33 [35m'
14+ Beige = '\33 [36m'
15+ White = '\33 [37m'
16+ Grey = '\33 [90m'
17+
18+ BG_Black = '\33 [40m'
19+ BG_Red = '\33 [41m'
20+ BG_Green = '\33 [42m'
21+ BG_Yellow = '\33 [43m'
22+ BG_Blue = '\33 [44m'
23+ BG_Violet = '\33 [45m'
24+ BG_Beige = '\33 [46m'
25+ BG_White = '\33 [47m'
26+
27+ Red2 = '\33 [31m'
28+ Yellow2 = '\33 [33m'
29+ Blue2 = '\33 [94m'
30+ Violet2 = '\33 [95m'
31+ Beige2 = '\33 [96m'
32+ White2 = '\33 [97m'
33+
34+ BG_Grey = '\33 [100m'
35+ BG_Red2 = '\33 [101m'
36+ BG_Green2 = '\33 [102m'
37+ BG_Yellow2 = '\33 [103m'
38+ BG_Blue2 = '\33 [104m'
39+ BG_Violet2 = '\33 [105m'
40+ BG_Beige2 = '\33 [106m'
41+ BG_White2 = '\33 [107m'
42+
43+ # Type
44+
45+ HEADER = '\033 [95m'
46+ OKBLUE = '\033 [94m'
47+ OKCYAN = '\033 [96m'
48+ OKGREEN = '\033 [92m'
49+ WARNING = '\033 [93m'
50+ FAIL = '\033 [91m'
51+ ENDC = '\033 [0m'
52+ BOLD = '\033 [1m'
53+ UNDERLINE = '\033 [4m'
54+
55+
56+ # End
957 CD = '\033 [0m'
1058
1159os .system ("" )
You can’t perform that action at this time.
0 commit comments