//colors of rainbow const int RED[3] = {255,0,0}; const int ORANGE[3] = {255,32,0}; const int YELLOW[3] = {255,80,0}; const int GREEN[3] = {0,150,0}; const int BLUE[3] = {0,0,255}; const int INDIGO[3] = {64,0,255}; const int VIOLET[3] = {127,0,255}; //in-between colors const int DARK_PINK[3] = {255,15,127}; const int PINK[3] = {255,32,87}; const int YELLOW_GREEN[3] ={100,70,0}; const int ICY_GREEN[3] = {0,255,127}; const int TEAL[3] = {0,255,255}; const int LIGHT_BLUE[3] = {0,127,255}; const int SKY_BLUE[3] = {0,64,255}; const int MAGENTA[3] = {255,0,255}; //white const int WH[3] = {255,255,255};