将字符串格式的COLOR值转换成十进制的R,G,B数值。
比如 CCEEFF ⇒ (204, 238, 255)
c="CCEEFF" r,g,b = map(ord, c.decode('hex'))