-
Notifications
You must be signed in to change notification settings - Fork 5
/
bliss.dircolors
304 lines (287 loc) · 5.89 KB
/
bliss.dircolors
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# Bliss theme for GNU dircolors
# @author https://github.com/JoshJon
#
# More Information about Bliss dircolors at:
# https://github.com/JoshJon/dircolors-bliss-macos
#
# For information on dircolors files refer to 'dir_colors - Linux Man Pages'
# https://www.systutorials.com/docs/linux/man/5-dir_colors/
# Term Section
TERM Eterm
TERM ansi
TERM color-xterm
TERM con132x25
TERM con132x30
TERM con132x43
TERM con132x60
TERM con80x25
TERM con80x28
TERM con80x30
TERM con80x43
TERM con80x50
TERM con80x60
TERM cons25
TERM console
TERM cygwin
TERM dtterm
TERM dvtm
TERM dvtm-256color
TERM eterm-color
TERM fbterm
TERM gnome
TERM gnome-256color
TERM jfbterm
TERM konsole
TERM konsole-256color
TERM kterm
TERM linux
TERM linux-c
TERM mach-color
TERM mlterm
TERM putty
TERM putty-256color
TERM rxvt
TERM rxvt-256color
TERM rxvt-cygwin
TERM rxvt-cygwin-native
TERM rxvt-unicode
TERM rxvt-unicode256
TERM rxvt-unicode-256color
TERM screen
TERM screen-16color
TERM screen-16color-bce
TERM screen-16color-s
TERM screen-16color-bce-s
TERM screen-256color
TERM screen-256color-bce
TERM screen-256color-s
TERM screen-256color-bce-s
TERM screen-256color-italic
TERM screen-bce
TERM screen-w
TERM screen.linux
TERM screen.xterm-256color
TERM st
TERM st-meta
TERM st-256color
TERM st-meta-256color
TERM tmux
TERM tmux-256color
TERM vt100
TERM xterm
TERM xterm-16color
TERM xterm-256color
TERM xterm-256color-italic
TERM xterm-88color
TERM xterm-color
TERM xterm-debian
TERM xterm-termite
## Documentation
# Reference: http://www.mail-archive.com/[email protected]/msg11030.html)
#
# standard colors
#
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
#
# 256 colors
#
# Text 256 color coding:
# 38;5;COLOR_NUMBER
# Background 256 color coding:
# 48;5;COLOR_NUMBER
#
# Example basic: 45;5;147;01 - lavender background, bold
# Example 256: 48;5;167;38;5;193,01 - red background, lime-green text, underscore
## Global defaults
NORMAL 00 # no color
RESET 0 # reset to "normal" color
FILE 00 # normal
DIR 38;5;218;01 # pink bg, bold
LINK 38;5;115 # green
MULTIHARDLINK 04;38;5;115 # green
FIFO 48;5;137 # bronze bg, white
SOCK 48;5;137 # bronze bg, white
DOOR 48;5;137 # bronze bg, white
BLK 38;5;222;04 # bronze bg, underscore
CHR 38;5;222;01 # bronze, bold
EXEC 01 # normal, bold
OTHER_WRITABLE 38;5;153;01 # blue, bold
STICKY 48;5;67 # blue bg, white
STICKY_OTHER_WRITABLE 48;5;30 # teal bg, white
ORPHAN 48;5;167; # red bg, white
SETUID 38;5;210;04 # red, underscore
SETGID 38;5;180;04 # bronze, underscore
# Unable to test capability on macOS
CAPABILITY 00 # white
## Archive or compressed - lavender, bold
.tar 38;5;147;01
.tgz 38;5;147;01
.arj 38;5;147;01
.taz 38;5;147;01
.lzh 38;5;147;01
.lzma 38;5;147;01
.tlz 38;5;147;01
.txz 38;5;147;01
.zip 38;5;147;01
.z 38;5;147;01
.Z 38;5;147;01
.dz 38;5;147;01
.gz 38;5;147;01
.lz 38;5;147;01
.xz 38;5;147;01
.bz2 38;5;147;01
.bz 38;5;147;01
.tbz 38;5;147;01
.tbz2 38;5;147;01
.tz 38;5;147;01
.deb 38;5;147;01
.rpm 38;5;147;01
.jar 38;5;147;01
.rar 38;5;147;01
.ace 38;5;147;01
.zoo 38;5;147;01
.cpio 38;5;147;01
.7z 38;5;147;01
.rz 38;5;147;01
.apk 38;5;147;01
.gem 38;5;147;01
# General file - normal
.tex 00
.rdf 00
.owl 00
.n3 00
.ttl 00
.nt 00
.torrent 00
.xml 00
*Makefile 00
*Rakefile 00
*Dockerfile 00
*build.xml 00
*rc 00
*1 00
.nfo 00
*README 00
*README.txt 00
*readme.txt 00
.md 00
*README.markdown 00
.ini 00
.yml 00
.cfg 00
.conf 00
.h 00
.hpp 00
.c 00
.cpp 00
.cxx 00
.cc 00
.objc 00
.sqlite 00
.go 00
.sql 00
.csv 00
# Image file - yellow
.jpg 38;5;229
.JPG 38;5;229
.jpeg 38;5;229
.gif 38;5;229
.bmp 38;5;229
.pbm 38;5;229
.pgm 38;5;229
.ppm 38;5;229
.tga 38;5;229
.xbm 38;5;229
.xpm 38;5;229
.tif 38;5;229
.tiff 38;5;229
.png 38;5;229
.PNG 38;5;229
.svg 38;5;229
.svgz 38;5;229
.mng 38;5;229
.pcx 38;5;229
.dl 38;5;229
.xcf 38;5;229
.xwd 38;5;229
.yuv 38;5;229
.cgm 38;5;229
.emf 38;5;229
.eps 38;5;229
.CR2 38;5;229
.ico 38;5;229
# Audio file - lime-green
.aac 38;5;193
.au 38;5;193
.flac 38;5;193
.mid 38;5;193
.midi 38;5;193
.mka 38;5;193
.mp3 38;5;193
.mpc 38;5;193
.ogg 38;5;193
.opus 38;5;193
.ra 38;5;193
.wav 38;5;193
.m4a 38;5;193
.axa 38;5;193
.oga 38;5;193
.spx 38;5;193
.xspf 38;5;193
# Video file - orange
.mov 38;5;222
.MOV 38;5;222
.mpg 38;5;222
.mpeg 38;5;222
.m2v 38;5;222
.mkv 38;5;222
.ogm 38;5;222
.mp4 38;5;222
.m4v 38;5;222
.mp4v 38;5;222
.vob 38;5;222
.qt 38;5;222
.nuv 38;5;222
.wmv 38;5;222
.asf 38;5;222
.rm 38;5;222
.rmvb 38;5;222
.flc 38;5;222
.avi 38;5;222
.fli 38;5;222
.flv 38;5;222
.gl 38;5;222
.m2ts 38;5;222
.divx 38;5;222
.webm 38;5;222
.axv 38;5;222
.anx 38;5;222
.ogv 38;5;222
.ogx 38;5;222
# 'unimportant' file e.g. logs and backups - grey
.log 38;5;248
.bak 38;5;248
.aux 38;5;248
.lof 38;5;248
.lol 38;5;248
.lot 38;5;248
.out 38;5;248
.toc 38;5;248
.bbl 38;5;248
.blg 38;5;248
*~ 38;5;248
*# 38;5;248
.part 38;5;248
.incomplete 38;5;248
.swp 38;5;248
.tmp 38;5;248
.temp 38;5;248
.o 38;5;248
.pyc 38;5;248
.class 38;5;248
.cache 38;5;248