Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Based on Arnout Kazemier's https://github.com/3rd-Eden/colorspace, only difference is updated packages to remove security vulnerbilities.
All credit goes to him.

# colorspace

Colorspace is a simple module which generates HEX color codes for namespaces.
Expand All @@ -11,7 +14,7 @@ The module is released in the public npm registry and can be installed by
running:

```
npm install --save colorspace
npm install --save @so-ric/colorspace
```

## Usage
Expand All @@ -21,7 +24,7 @@ We assume that you've already required the module using the following code:
```js
'use strict';

var colorspace = require('colorspace');
var colorspace = require('@so-ric/colorspace');
```

The returned function accepts 2 arguments:
Expand Down
Loading