-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbash.colors
More file actions
81 lines (73 loc) · 1.9 KB
/
bash.colors
File metadata and controls
81 lines (73 loc) · 1.9 KB
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
73
74
75
76
77
78
79
80
81
# reset
X=$'\e[0m' # text reset
# regular colors
R=$'\e[0;31m' # red
G=$'\e[0;32m' # green
B=$'\e[0;34m' # blue
C=$'\e[0;36m' # cyan
M=$'\e[0;35m' # purple
Y=$'\e[0;33m' # yellow
K=$'\e[0;30m' # black
W=$'\e[0;37m' # white
# bold
EMR=$'\e[1;31m' # red
EMG=$'\e[1;32m' # green
EMB=$'\e[1;34m' # blue
EMC=$'\e[1;36m' # cyan
EMM=$'\e[1;35m' # purple
EMY=$'\e[1;33m' # yellow
EMK=$'\e[1;30m' # black
EMW=$'\e[1;37m' # white
# underline
ULR=$'\e[4;31m' # red
ULG=$'\e[4;32m' # green
ULB=$'\e[4;34m' # blue
ULC=$'\e[4;36m' # cyan
ULM=$'\e[4;35m' # purple
ULY=$'\e[4;33m' # yellow
ULK=$'\e[4;30m' # black
ULW=$'\e[4;37m' # white
# Background
BGR=$'\e[41m' # red
BGG=$'\e[42m' # green
BGB=$'\e[44m' # blue
BGC=$'\e[46m' # cyan
BGM=$'\e[45m' # purple
BGY=$'\e[43m' # yellow
BGK=$'\e[40m' # black
BGW=$'\e[47m' # white
# high intensty
HIR=$'\e[0;91m' # red
HIG=$'\e[0;92m' # green
HIB=$'\e[0;94m' # blue
HIC=$'\e[0;96m' # cyan
HIM=$'\e[0;95m' # purple
HIY=$'\e[0;93m' # yellow
HIK=$'\e[0;90m' # black
HIW=$'\e[0;97m' # white
# bold high intensty
HIEMR=$'\e[1;91m' # red
HIEMG=$'\e[1;92m' # green
HIEMB=$'\e[1;94m' # blue
HIEMC=$'\e[1;96m' # cyan
HIEMM=$'\e[1;95m' # purple
HIEMY=$'\e[1;93m' # yellow
HIEMK=$'\e[1;90m' # black
HIEMW=$'\e[1;97m' # white
# high intensty backgrounds
HIBGR=$'\e[0;101m' # red
HIBGG=$'\e[0;102m' # green
HIBGB=$'\e[0;104m' # blue
HIBGC=$'\e[0;106m' # cyan
HIBGM=$'\e[10;95m' # purple
HIBGY=$'\e[0;103m' # yellow
HIBGK=$'\e[0;100m' # black
FONT_UNDERLINE=$'\e[4m'
FONT_BLINK=$'\e[5m'
FONT_REVERSE=$'\e[7m'
FONT_HIDDEN=$'\e[8m'
FONT_INVISIBLE="$FONT_HIDDEN"
FONT_RESET=$'\e[0m'
FONT_BOLD=$'\e[1m'
FONT_BRIGHT="$FONT_BOLD"
FONT_DIM=$'\e[2m'