Node.js examples for Number:Hex
Convert Number to HSL
Number.prototype.intToHSL = function() { return "hsl(" + (this % 360) + ", 100%, 30%)"; }; String.prototype.colorize = function() { return this.getHashCode().intToHSL(); };