0.1.0 • Published 8 years ago

ls-colors v0.1.0

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

ls-colors

Fetch LS_COLORS information.

Installation

npm install --global ls-colors
npm install --save ls-colors

Usage

const colors = require('ls-colors');
console.log(info);
// {
//     '.js': '32'
//     ....
// }

Meaning

Abbrv

With the help of dircolors --print-database, got

abbrvmeaning
nonormal
firegular file
didirectory
owother-writable
lnsymbolic link
pipipe
sosocket
dodoor
bdblock device
cdcharacter device
ororphan
mimissing
exexec
*.extfile with extension ext

Color Code

  • 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

For more information, please visit bigsoft#ls-colors.

References

  1. https://www.gnu.org/software/coreutils/manual/html_node/dircolors-invocation.html#dircolors-invocation
  2. http://www.bigsoft.co.uk/blog/index.php/2008/04/11/configuring-ls_colors

LICENSE

MIT