Set all Label components to use the Blue color
<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Style> @namespace mx "http://www.adobe.com/2006/mxml"; mx|Button { fontStyle: italic; color: #99FF00; } </mx:Style> <mx:Button id="myButton" label="Click Here"/> <mx:Label id="l1" text="My Label"/> <mx:TextInput id="ti1" text="Input text here"/> </mx:Application>