(c)
| 838 | |
| 839 | function rgbToHex(rgb) { |
| 840 | function componentToHex(c) { |
| 841 | var hex = parseInt(c).toString(16) |
| 842 | return hex.length == 1 ? "0" + hex : hex |
| 843 | } |
| 844 | return "#" + componentToHex(rgb.r) + componentToHex(rgb.g) + componentToHex(rgb.b) |
| 845 | } |
| 846 |