You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
450 B
11 lines
450 B
function shortenRgb(red, green, blue) {
|
|
var normalizedRed = Math.max(0, Math.min(parseInt(red), 255));
|
|
var normalizedGreen = Math.max(0, Math.min(parseInt(green), 255));
|
|
var normalizedBlue = Math.max(0, Math.min(parseInt(blue), 255));
|
|
|
|
// Credit: Asen http://jsbin.com/UPUmaGOc/2/edit?js,console
|
|
return '#' + ('00000' + (normalizedRed << 16 | normalizedGreen << 8 | normalizedBlue).toString(16)).slice(-6);
|
|
}
|
|
|
|
module.exports = shortenRgb;
|