-
Notifications
You must be signed in to change notification settings - Fork 13
/
dircolors.jellybeans
337 lines (303 loc) · 7.81 KB
/
dircolors.jellybeans
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# 256 color jellybeans theme for the color GNU ls utility.
# Used and tested with dircolors (GNU coreutils) 8.13
#
# @author {@link http://c7.se Peter Hellberg}
# @license http://opensource.org/licenses/MIT The MIT License (MIT)
#
# Heavily based on https://github.com/seebi/dircolors-solarized
#
# More Information at
# https://github.com/peterhellberg/dircolors-jellybeans
#
#
# Standard colors
#
# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# 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 color support
# see here: http://www.mail-archive.com/[email protected]/msg11030.html)
#
# Text 256 color coding:
# 38;5;COLOR_NUMBER
# Background 256 color coding:
# 48;5;COLOR_NUMBER
## Special files
# No color code at all
NORMAL 00;38;5;15
# Regular file: use no color at all
FILE 00
# Reset to "normal" color
RESET 0
# Directory
DIR 1;38;5;4
# Symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
LINK 01;38;5;111
# Regular file with more than one link
MULTIHARDLINK 00
# Pipe
FIFO 48;5;230;38;5;136;01
# Socket
SOCK 48;5;230;38;5;136;01
# Block device driver
BLK ;4;230;38;5;142;01
# Character device driver
CHR ;1;230;38;5;94;01
# Symlink to nonexistent file, or non-stat'able file
ORPHAN 38;5;009;48;5;052
# File that is setuid (u+s)
SETUID 48;5;160;38;5;230
# File that is setgid (g+s)
SETGID 48;5;136;38;5;230
# File with capability
CAPABILITY 30;41
# Dir with the sticky bit set (+t) and not other-writable
STICKY 48;5;33;38;5;230
# Dir that is other-writable (o+w) and not sticky
OTHER_WRITABLE 38;5;110
# Dir that is sticky and other-writable (+t,o+w)
STICKY_OTHER_WRITABLE 48;5;64;38;5;230
# This is for files with execute permission:
EXEC 1;38;5;2
# Code
.s 01;38;5;123
.c 01;38;5;148
.h 01;38;5;150
.cpp 01;38;5;064
.go 01;38;5;081
*_test.go 01;38;5;025
.rb 00;38;5;160
.ru 01;38;5;088
.lua 01;38;5;025
.js 01;38;5;003
.sh 01;38;5;067
.zig 00;38;5;214
.zig.zon 00;38;5;202
.wasmp 01;38;5;064
.typ 03;38;5;032
# Binary
.wasm 01;38;5;209
*Makefile 0;38;5;3
*Rakefile 0;38;5;3
*Gemfile 0;38;5;3
*Gemfile.lock 0;38;5;239
.gemspec 0;38;5;3
*Procfile 0;38;5;244
*go.mod 0;38;5;3
*go.sum 0;38;5;239
.gitignore 0;38;5;243
.gitattributes 0;38;5;243
# Templates
.erb 01;38;5;012
.html 01;38;5;012
.slim 01;38;5;012
.haml 01;38;5;012
.sass 01;38;5;012
.scss 01;38;5;012
# Data
.json 01;38;5;3
.ndjson 01;38;5;3
.ldjson 01;38;5;3
.yml 01;38;5;3
.yaml 01;38;5;3
.xml 01;38;5;3
.csv 01;38;5;3
# Binary serialization formats
.pb 01;38;5;201
.proto 01;38;5;201
.bson 01;38;5;201
# Documents
.txt 01;38;5;15
.tex 01;38;5;15
.nfo 01;38;5;5
.rdf 01;38;5;5
.docx 01;38;5;5
.pdf 01;38;5;5
.markdown 01;38;5;5
.md 01;38;5;5
*README 01;38;5;176
*README.md 01;38;5;176
*README.txt 01;38;5;176
*readme.txt 01;38;5;176
*LICENSE 01;38;5;165
*LICENSE.txt 01;38;5;165
*AUTHORS 01;38;5;165
*COPYRIGHT 01;38;5;165
*CONTRIBUTORS 01;38;5;165
*CONTRIBUTING.md 01;38;5;165
*PATENTS 01;38;5;165
# Files of special interest
.torrent 00;38;5;120
*rc 01;38;5;141
.cfg 01;38;5;005
.conf 01;38;5;005
# "transient" files as logs and backups (dark gray)
.log 00;38;5;239
.bak 00;38;5;239
.aux 00;38;5;239
.out 00;38;5;239
.toc 00;38;5;239
*~ 00;38;5;239
*# 00;38;5;239
.part 00;38;5;239
.incomplete 00;38;5;239
.swp 00;38;5;239
.tmp 00;38;5;239
.temp 00;38;5;239
.o 00;38;5;239
.pyc 00;38;5;239
.class 00;38;5;239
.cache 00;38;5;239
.rdb 00;38;5;239
# Audio formats (orange)
.aac 00;38;5;166
.au 00;38;5;166
.flac 00;38;5;166
.mid 00;38;5;166
.midi 00;38;5;166
.mka 00;38;5;166
.mp3 00;38;5;166
.ogg 00;38;5;166
.wav 00;38;5;166
.m4a 00;38;5;166
# Video formats (darker orange + bold)
.mov 01;38;5;202
.mpg 01;38;5;202
.mpeg 01;38;5;202
.m2v 01;38;5;202
.mkv 01;38;5;202
.ogm 01;38;5;202
.mp4 01;38;5;202
.m4v 01;38;5;202
.mp4v 01;38;5;202
.vob 01;38;5;202
.qt 01;38;5;202
.nuv 01;38;5;202
.wmv 01;38;5;202
.asf 01;38;5;202
.rm 01;38;5;202
.rmvb 01;38;5;202
.flc 01;38;5;202
.avi 01;38;5;202
.fli 01;38;5;202
.flv 01;38;5;202
.gl 01;38;5;202
.m2ts 01;38;5;202
.divx 01;38;5;202
.webm 01;38;5;202
# Image formats (yellow)
.jpg 00;38;5;215
.JPG 00;38;5;215 #stupid but needed
.jpeg 00;38;5;215
.gif 00;38;5;215
.bmp 00;38;5;215
.pbm 00;38;5;215
.pgm 00;38;5;215
.ppm 00;38;5;215
.tga 00;38;5;215
.xbm 00;38;5;215
.xpm 00;38;5;215
.tif 00;38;5;215
.tiff 00;38;5;215
.pxm 00;38;5;215
.png 00;38;5;215
.PNG 00;38;5;215
.svg 00;38;5;215
.svgz 00;38;5;215
.mng 00;38;5;215
.pcx 00;38;5;215
.dl 00;38;5;215
.xcf 00;38;5;215
.xwd 00;38;5;215
.yuv 00;38;5;215
.cgm 00;38;5;215
.emf 00;38;5;215
.eps 00;38;5;215
.CR2 00;38;5;215
.ico 00;38;5;215
.webp 00;38;5;215
# Disk images
.iso 01;38;5;209
.dmg 01;38;5;209
# Archives or compressed (violet)
.zip 01;38;5;61
.tar 00;38;5;61
.tgz 01;38;5;61
.lzh 01;38;5;61
.z 01;38;5;61
.Z 01;38;5;61
.7z 01;38;5;61
.gz 01;38;5;61
.bz2 01;38;5;61
.bz 01;38;5;61
.deb 01;38;5;61
.rpm 01;38;5;61
.jar 01;38;5;61
.rar 01;38;5;61
.apk 01;38;5;61
.gem 01;38;5;61
# 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 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-256color
TERM screen-256color-bce
TERM screen-256color-s
TERM screen-256color-bce-s
TERM screen-bce
TERM screen-w
TERM screen.linux
TERM st
TERM st-256color
TERM vt100
TERM xterm
TERM xterm-16color
TERM xterm-256color
TERM xterm-88color
TERM xterm-color
TERM xterm-debian
TERM xterm-termite