-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor.py
34 lines (34 loc) · 1.23 KB
/
color.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from colorama import init, Fore, Back, Style
init()
class printc:
#instagram : @0xdevil
def red(text):
print(Fore.RED + Style.BRIGHT + text + Style.RESET_ALL)
#instagram : @0xdevil
def blue(text):
print(Fore.BLUE + Style.BRIGHT + text + Style.RESET_ALL)
#instagram : @0xdevil
def green(text):
print(Fore.GREEN + Style.BRIGHT + text + Style.RESET_ALL)
#instagram : @0xdevil
def yellow(text):
print(Fore.YELLOW + Style.BRIGHT + text + Style.RESET_ALL)
#instagram : @0xdevil
def black(text):
print(Fore.BLACK + Style.BRIGHT + text + Style.RESET_ALL)
class inputc:
def red(text):
I = input(Fore.RED + Style.BRIGHT + text + Style.RESET_ALL)#instagram : @0xdevil
return I
def blue(text):
I = input(Fore.BLUE + Style.BRIGHT + text + Style.RESET_ALL)#instagram : @0xdevil
return I
def green(text):
I = input(Fore.GREEN + Style.BRIGHT + text + Style.RESET_ALL)#instagram : @0xdevil
return I
def yellow(text):
I = input(Fore.YELLOW + Style.BRIGHT + text + Style.RESET_ALL)#instagram : @0xdevil
return I
def black(text):
I = input(Fore.BLACK + Style.BRIGHT + text + Style.RESET_ALL)#instagram : @0xdevil
return I