A simple hexidecimal and rgb color converter
npm install chloeeA simple hexidecimal and rgb color converter.
```
npm install chloee
section.`
`Usage
$3
`
const chloee = require('chloee');chloee('c470ee');
// '196,112,238'
chloee('196,122,238');
// 'c470ee'
`$3
`
var result = new Chloee('c470ee').convert();
console.log(result); // '196,112,238'var result = new Chloee('196,112,238').convert();
console.log(result); // 'c470ee'
``