RGB to hex and hex to RGB

前端 未结 30 2785
遥遥无期
遥遥无期 2020-11-21 06:56

How to convert colors in RGB format to hex format and vice versa?

For example, convert \'#0080C0\' to (0, 128, 192).

30条回答
  •  醉话见心
    2020-11-21 07:28

    A simple answer for rgb to hex

        function rgbtohex(r,g,b){
            return "#" + (Math.round(r) * 65536 + Math.round(g) * 256 + Math.round(b)).toString(16));
        }
    

提交回复
热议问题