forked from zpm-zsh/colors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.plugin.zsh
213 lines (188 loc) · 5.9 KB
/
colors.plugin.zsh
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/usr/bin/env zsh
if [[ $PMSPEC != *f* ]] {
fpath+=( "${0:h}/functions" )
}
if [[ $PMSPEC != *b* ]] {
PATH=$PATH:"${0:h}/bin"
}
autoload -Uz test_color_24bit test_color_codes test_color_names
if [[ -z "$NO_COLOR" && "$CLICOLOR" != 0 ]]; then
export CLICOLOR='true'
export TERM_ITALICS='true'
typeset -Ag c; c=(
reset '[0m'
# Modificators
bold '[1m'
dim '[2m'
faint '[2m'
coursive '[3m'
italic '[3m'
underline '[4m'
blink '[5m'
inveverse '[7m'
reverse '[7m'
hidden '[8m'
conceal '[8m'
strike '[9m'
strikethrough '[9m'
double_underline '[4;21m'
overline '[53m'
# Reset Modificators
reset_text '[22m'
no_coursive '[23m'
no_italic '[23m'
no_underline '[24m'
no_blink '[25m'
no_inveverse '[27m'
no_reverse '[27m'
no_hidden '[28m'
no_strike '[29m'
no_strikethrough '[29m'
# White-Gray-Black Colors
default '[39m'
base '[39m'
base1 '[37;97m'
white '[37;97m' # Do not use this. Just for compatibility
base2 '[37m'
light_grey '[37m' # Do not use this. Just for compatibility
base3 '[30;90m'
grey '[30;90m' # Do not use this. Just for compatibility
base4 '[30m'
black '[30m' # Do not use this. Just for compatibility
# Colors
purple '[31;91m'
red '[31m'
orange '[33;93m'
yellow '[33m'
chartreuse '[32;92m'
green '[32m'
springgreen '[36;96m'
cyan '[36m'
azure '[34;94m'
blue '[34m'
violet '[35;95m'
magenta '[35m'
light_red '[31;91m' # Do not use this. Just for compatibility
light_green '[32;92m' # Do not use this. Just for compatibility
light_yellow '[33;93m' # Do not use this. Just for compatibility
light_blue '[34;94m' # Do not use this. Just for compatibility
light_magenta '[35;95m' # Do not use this. Just for compatibility
light_cyan '[36;96m' # Do not use this. Just for compatibility
# White-Gray-Black Background Colors
bg_default '[49m'
bg_base '[49m'
bg_base1 '[47;107m'
bg_white '[47;107m' # Do not use this. Just for compatibility
bg_base2 '[47m'
bg_light_grey '[47m' # Do not use this. Just for compatibility
bg_base3 '[40;100m'
bg_grey '[40;100m' # Do not use this. Just for compatibility
bg_base4 '[40m'
bg_black '[40m' # Do not use this. Just for compatibility
# Background Colors
bg_purple '[41;101m'
bg_red '[41m'
bg_orange '[43;103m'
bg_yellow '[43m'
bg_chartreuse '[42;102m'
bg_green '[42m'
bg_springgreen '[46;106m'
bg_cyan '[46m'
bg_azure '[44;104m'
bg_blue '[44m'
bg_violet '[45;105m'
bg_magenta '[45m'
bg_light_red '[41;101m' # Do not use this. Just for compatibility
bg_light_green '[42;102m' # Do not use this. Just for compatibility
bg_light_yellow '[43;103m' # Do not use this. Just for compatibility
bg_light_blue '[44;104m' # Do not use this. Just for compatibility
bg_light_magenta '[45;105m' # Do not use this. Just for compatibility
bg_light_cyan '[46;106m' # Do not use this. Just for compatibility
### RAW
raw_reset '0'
raw_bold '1'
raw_dim '2'
raw_faint '2'
raw_coursive '3'
raw_italic '3'
raw_underline '4'
raw_blink '5'
raw_inveverse '7'
raw_reverse '7'
raw_hidden '8'
raw_conceal '8'
raw_strike '9'
raw_strikethrough '9'
raw_double_underline '4;21'
raw_overline '53'
raw_reset_text '22'
raw_no_coursive '23'
raw_no_italic '23'
raw_no_underline '24'
raw_no_blink '25'
raw_no_inveverse '27'
raw_no_reverse '27'
raw_no_hidden '28'
raw_no_strike '29'
raw_no_strikethrough '29'
raw_default '39'
raw_base '39'
raw_base1 '37;97'
raw_white '37;97' # Do not use this. Just for compatibility
raw_base2 '37'
raw_light_grey '37' # Do not use this. Just for compatibility
raw_base3 '30;90'
raw_grey '30;90' # Do not use this. Just for compatibility
raw_base4 '30'
raw_black '30' # Do not use this. Just for compatibility
raw_purple '31;91'
raw_red '31'
raw_orange '33;93'
raw_yellow '33'
raw_chartreuse '32;92'
raw_green '32'
raw_springgreen '36;96'
raw_cyan '36'
raw_azure '34;94'
raw_blue '34'
raw_violet '35;95'
raw_magenta '35'
raw_light_red '31;91' # Do not use this. Just for compatibility
raw_light_green '32;92' # Do not use this. Just for compatibility
raw_light_yellow '33;93' # Do not use this. Just for compatibility
raw_light_blue '34;94' # Do not use this. Just for compatibility
raw_light_magenta '35;95' # Do not use this. Just for compatibility
raw_light_cyan '36;96' # Do not use this. Just for compatibility
raw_bg_default '49'
raw_bg_base '49'
raw_bg_base1 '47;107'
raw_white '47;107' # Do not use this. Just for compatibility
raw_bg_base2 '47'
raw_bg_light_grey '47m' # Do not use this. Just for compatibility
raw_bg_base3 '40;100'
raw_bg_grey '40;100' # Do not use this. Just for compatibility
raw_bg_base4 '40'
raw_bg_black '40' # Do not use this. Just for compatibility
raw_bg_purple '41;101'
raw_bg_red '41'
raw_bg_orange '43;103'
raw_bg_yellow '43'
raw_bg_chartreuse '42;102'
raw_bg_green '42'
raw_bg_springgreen '46;106'
raw_bg_cyan '46'
raw_bg_azure '44;104'
raw_bg_blue '44'
raw_bg_violet '45;105'
raw_bg_magenta '45'
raw_bg_light_red '41;101' # Do not use this. Just for compatibility
raw_bg_light_green '42;102' # Do not use this. Just for compatibility
raw_bg_light_yellow '43;103' # Do not use this. Just for compatibility
raw_bg_light_blue '44;104' # Do not use this. Just for compatibility
raw_bg_light_magenta '45;105' # Do not use this. Just for compatibility
raw_bg_light_cyan '46;106' # Do not use this. Just for compatibility
)
else
export CLICOLOR=0
export NO_COLOR=1
fi