The reply depends on whether you want to be able to change the color during execution of your app, or whether you just changed your mind on what the right color is.
There is no magical button to change the color of all labels at the same time. For the design you have to go through each of them and do the change.
If you would like to change the color of the labels when some circumstance in your app would require it, you could cteate a list of your labels during Screen1.initialize and keep it in a global variable. Then, when needed, you do a "for each item in list ..." and use the any blocks to change the color.
Cheers, Ghica.