RGB to hex and hex to RGB

前端 未结 30 2774
遥遥无期
遥遥无期 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:21

    function getRGB(color){
      if(color.length == 7){
        var r = parseInt(color.substr(1,2),16);
        var g = parseInt(color.substr(3,2),16);
        var b = parseInt(color.substr(5,2),16);    
        return 'rgb('+r+','+g+','+b+')' ;
      }    
      else
        console.log('Enter correct value');
    }
    var a = getRGB('#f0f0f0');
    if(!a){
     a = 'Enter correct value'; 
    }
    
    a;
    

提交回复
热议问题