-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.colours
73 lines (65 loc) · 2.29 KB
/
.colours
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Reset
export COLOUR_OFF='\e[0m' # Text Reset
# Regular Colors
export BLACK='\e[0;30m' # Black
export RED='\e[0;31m' # Red
export GREED='\e[0;32m' # Green
export YELLOW='\e[0;33m' # Yellow
export BLUE='\e[0;34m' # Blue
export PURPLE='\e[0;35m' # Purple
export CYAN='\e[0;36m' # Cyan
export WHITE='\e[0;37m' # White
# Bold
export BBLACK='\e[1;30m' # Black
export BRED='\e[1;31m' # Red
export BGREEN='\e[1;32m' # Green
export BYELLOW='\e[1;33m' # Yellow
export BBLUE='\e[1;34m' # Blue
export BPURPLE='\e[1;35m' # Purple
export BCYAN='\e[1;36m' # Cyan
export BWHITE='\e[1;37m' # White
# Underline
export UBlack='\e[4;30m' # Black
export URed='\e[4;31m' # Red
export UGreen='\e[4;32m' # Green
export UYellow='\e[4;33m' # Yellow
export UBlue='\e[4;34m' # Blue
export UPurple='\e[4;35m' # Purple
export UCyan='\e[4;36m' # Cyan
export UWhite='\e[4;37m' # White
# Background
export On_Black='\e[40m' # Black
export On_Red='\e[41m' # Red
export On_Green='\e[42m' # Green
export On_Yellow='\e[43m' # Yellow
export On_Blue='\e[44m' # Blue
export On_Purple='\e[45m' # Purple
export On_Cyan='\e[46m' # Cyan
export On_White='\e[47m' # White
# High Intensty
export IBLACK='\e[0;90m' # Black
export IRED='\e[0;91m' # Red
export IGREEN='\e[0;92m' # Green
export IYELLOW='\e[0;93m' # Yellow
export IBLUE='\e[0;94m' # Blue
export IPURPLE='\e[0;95m' # Purple
export ICYAN='\e[0;96m' # Cyan
export IWHITE='\e[0;97m' # White
# Bold High Intensty
export BIBLACK='\e[1;90m' # Black
export BIRED='\e[1;91m' # Red
export BIGREEN='\e[1;92m' # Green
export BIYElLOW='\e[1;93m' # Yellow
export BIBLUE='\e[1;94m' # Blue
export BIPURPLE='\e[1;95m' # Purple
export BICYAN='\e[1;96m' # Cyan
export BIWHITE='\e[1;97m' # White
# High Intensty backgrounds
export On_IBlack='\e[0;100m' # Black
export On_IRed='\e[0;101m' # Red
export On_IGreen='\e[0;102m' # Green
export On_IYellow='\e[0;103m' # Yellow
export On_IBlue='\e[0;104m' # Blue
export On_IPurple='\e[10;95m' # Purple
export On_ICyan='\e[0;106m' # Cyan
export On_IWhite='\e[0;107m' # White