Change colors on different objects blinking

@debxyz Thank you!
here it is, Purple and Blue…
I don´t understand yet how comes that colors… lol
I did also change de frequency, blink/flashs. Slow to Fast.
And i have to learn what is that “p” is about… rsrs
Also in “fill (p, 70, 200);” i add a Alpha its get tranparent


   int m1 = millis();
   int p = m1 % 200;   // velocity
   fill(p, 70, 200);  // here it is, purple and blue : )
  circle(520,184, 220);

Look how beatifull is this rectangle color!


  int m = millis();    // start flash rec
  int p1 = m % 200;    // velocity
  fill(606, 0, p1, 100); // color 
  rect(25, 25, 555, 355);  // end ret flash

2 - Working on how to drow and the draw stay on top of those images…
Thank you for your time and knowledge :slight_smile: