aboutsummaryrefslogtreecommitdiff
path: root/colorcode.py
blob: b8debd52f75dabdcac9857e3a6a750f39d41a0d3 (plain) (blame)
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
#Simplified color codes here for error/warning/ok and the such.. messages

#def endcolor(s):
#	print s+'\033[0m'
#
#def bold(s):
#	endcolor('\033[1m'+s)
#	
#def header(s):
#    endcolor('\033[95m'+s)
#    
#def okblue(s):
#    print '\033[94m'+endcolor(s)
#    
#def okgreen(s):
#    print '\033[92m'+endcolor(s)
#    
#def warning(s):
#    print '\033[93m'+endcolor(s)
#    
#def fail(s):
#    print '\033[91m'+endcolor(s)
#
#def underline(s):
#    print '\033[4m'+endcolor(s)

#bold("fancy shit man")