@Anonymous
It depends on what you are trying to change the color of. I would recommend using the RGBA() function for setting colors and fills.
Yellow is RGBA(255,255,0,100), White is RGBA(255, 255, 255, 1). To set the default fill color of a control on a screen, click on the screen and select the OnVisible property. Put UpdateContext({var: RGBA(255, 255, 255, 1)}) in this property. Put a label on the screen and set it's Fill property to var. Put a button on the screen and set its OnSelect property to UpdateContext({var: RGBA(255,255,0,100)}). 
