How to fix the date icon on iOS5?
To fix the text color of the date icon, you have to do little changes in the file
Code:
Info.plist, located in /Library/Themes/Glasklart HD Icons.theme/. Here ist the full content of the file, updated for iOS5:Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CalendarIconDateStyle</key>
<string>
color: rgba(221, 221, 221, 221);
text-shadow: #000000 0px 0px 1px;
font-size: 36px;
font-weight: bold;
font-family: Helvetica Neue;
margin-top: -2px
</string>
<key>CalendarIconDayStyle</key>
<string>
color: rgba(221, 221, 221, 221);
text-shadow: #000000 0px 0px 1px;
font-size: 8px;
font-weight: bold;
font-family: Helvetica Neue;
margin-top: 6px
</string>
<key>DockedIconLabelStyle</key>
<string>
color: rgba(221, 221, 221, 221);
text-shadow: #000000 0px 1px 2px
</string>
<key>UndockedIconLabelStyle</key>
<string>
color: rgba(221, 221, 221, 221);
text-shadow: #000000 0px 1px 2px
</string>
</dict>
</plist>You can also download the file here (right click and "Save as...").
