InstallShield XML changes uses XPath statements. It takes a little while to get used to so try something like this.
In XML File Changes, select XML Files and right click New File. On the general table you select the directory and file name that you want to manipulate and the feature(s) being installed that cause the change to occur.
Right click the XML file and select Add Predefined Element | .NET Configuration Files | Web Configuration File | Application Settings | Add.
You'll see InstallShield authored a query of:
/configuration/appSettings/add[@key="key" and @value="value"]
This tells MSI to get a reference to the add node that is a child of the appSettings node which is a child of the configuration node where the key attribute equals the literal of "key" and the value attribute equals the literal of "value". You'll actually want to tweak this XPath statement to compare based on the @Key="Color" and ignore the value attribute. Once it has a reference to this node you can tell it to create/set the value of the "value" attribute to the contents of your property. Remember that in MSI the [] symbols return the value of the specified property. ( [SOMEPROP] would return the value of SOMEPROP ).
Here's some reading material:
http://kb.flexerasoftware.com/doc/Helpnet/installshield14helplib/XMLFileChangesView.htm
If all of this XML stuff is too hard for you, recent versions of InstallShield also have a Text File Changes which can be done the way SteveLovell has mentioned.