设置颜色好对应的颜色值

void scc(int c,int color);
//c:颜色号 0~63
//color:颜色值,0~65535 RGB565格式

示例

scc(63,65535);  //63设置为透明色
scc(15,0xf7de);  //63设置为白色

注意