Repeateable string to color converter
npm install identicol> roses are red
> violets are blue
> put in a string and
> out comes a hue
``javascript
const identicol = require('identicol')
identicol('hello world') // '#c6b5ee'
`
It's not case sensitive:
`javascript`
identicol('hello world') // '#c6b5ee'
identicol('HELLO WORLD') // '#c6b5ee'
And all non-alphanumerical characters are valued equally (including whitespace):
`javascript`
identicol('hello world!') // '#cee337'
identicol('hello-world?') // '#cee337'
Copyright (c) 2016, Peter-Paul van Gemerden.
Distributed under the ISC license (see LICENSE`).