Ejemplo n.º 1
0
 def RGB2HEX(RGB):
     
     HEX = []
     for i in range(len(RGB)):
         col = Colour(str(RGB[i]).split(","))
         col.create()
         HEX.append(col.getHexRGB())
         
     return HEX