number-to-css-color
Converts a number to a CSS hex color. It even supports the upcoming CSS4 8 digits notation with alpha.
A note about compatibility
The npm package should be used in an ES6 environment. Even though the published code has ES5 syntax it uses some ES6 features, so you have to make sure to use ES5 and ES6 polyfills if you are in an ancient environment.
Install
npm install number-to-css-color
Usage
console // -> "#00000f"console // -> "#0000010c"
Test
npm test