UNPKG

colour-tool

Version:

dev-tool that makes colours easier to deal with

7 lines (6 loc) 169 B
module.exports = (R,G,B) => { R = R.toString(16).toUpperCase(); G = G.toString(16).toUpperCase(); B = B.toString(16).toUpperCase(); return [R,G,B] }