Ok so I have a theme that has white icons...i wanna change it to white...usually the plist has the color an I can easily change it...but this is the plist <?xmlversion="1.0"encoding="UTF-8"?> <!DOCTYPEplistPUBLIC"-//Apple//DTDPLIST1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plistversion="1.0"> <dict> <key>DockedIconLabelStyle</key> <string>color:#FFFFFF;text-shadow:0px1px2px#303030;</string> <key>UndockedIconLabelStyle</key> <string>color:#FFFFFF;text-shadow:0px1px2px#303030;</string> </dict> </plist> How do I change it so they are black and no I don't have any winterboard things on to change font color
So basically you want black text on your springboard? Well, where is says '#FFFFFF' (that's a Hex code in case your wondering), replace it with 'black' (no hash, #, needed) The result should be this: If that doesn't work, try removing the text-shadow, so it looks like this: For more help, refer to this similar question. Hope it helped!