diff options
author | Jim Meyering <jim@meyering.net> | 1996-07-08 04:25:49 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-07-08 04:25:49 +0000 |
commit | 013f2fe433267e488a5ff3caa2e1b1c0ba904fc0 (patch) | |
tree | 6d2d7f7122b5c232411c3bc105c01ad7a225f20a /src | |
parent | de75384c2befe98d81276a94b123ff3feb26e87b (diff) | |
download | coreutils-013f2fe433267e488a5ff3caa2e1b1c0ba904fc0.tar.xz |
Make initial colors for `color_indicator' match those
currently in dircolors.hin.
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -382,15 +382,15 @@ static struct bin_str color_indicator[] = { 0, NULL }, /* ec: End color (replaces lc+no+rc) */ { LEN_STR_PAIR ("0") }, /* no: Normal */ { LEN_STR_PAIR ("0") }, /* fi: File: default */ - { LEN_STR_PAIR ("32") }, /* di: Directory: green */ - { LEN_STR_PAIR ("36") }, /* ln: Symlink: cyan */ - { LEN_STR_PAIR ("31") }, /* pi: Pipe: red */ - { LEN_STR_PAIR ("33") }, /* so: Socket: yellow/brown */ - { LEN_STR_PAIR ("44;37") }, /* bd: Block device: white on blue */ - { LEN_STR_PAIR ("44;37") }, /* cd: Char device: white on blue */ + { LEN_STR_PAIR ("01;34") }, /* di: Directory: bright blue */ + { LEN_STR_PAIR ("01;36") }, /* ln: Symlink: bright cyan */ + { LEN_STR_PAIR ("33") }, /* pi: Pipe: yellow/brown */ + { LEN_STR_PAIR ("01;35") }, /* so: Socket: bright magenta */ + { LEN_STR_PAIR ("01;33") }, /* bd: Block device: bright yellow */ + { LEN_STR_PAIR ("01;33") }, /* cd: Char device: bright yellow */ { 0, NULL }, /* mi: Missing file: undefined */ { 0, NULL }, /* or: Orphanned symlink: undefined */ - { LEN_STR_PAIR ("35") } /* ex: Executable: purple */ + { LEN_STR_PAIR ("01;32") } /* ex: Executable: bright green */ }; /* FIXME: comment */ |