# GitHub Language Colors

[![NPM](https://nodei.co/npm/gh-lang-colors.png)](https://nodei.co/npm/gh-lang-colors/)

JSON of GitHub language colors, automatically maintained by CI.

## Getting started

1. Install the package:

```
npm install --save gh-lang-colors
```

2. Add the package into your app:

```js
const GH_LANG_COLORS = require('gh-lang-colors');

console.log(GH_LANG_COLORS['JavaScript']); // #f1e05a
```
