-
Notifications
You must be signed in to change notification settings - Fork 17
Calendar Icon
The Calendar icon background may be themed by either targeting the original icon with the standard "Bundles/<icon name here>.png" or you may use IconBundles to theme the Calendar icon background.
The calendar icon has 2 labels. One that shows the number of the day (known to Anemone as the Date Label) and another label that shows the day of the week (known to Anemone as the Day Label).
To customize the Date Label, you may use the "CalendarIconDateSettings" key (as a dictionary) in your Info.plist. In the dictionary, you may then use the standard Label Settings Keys to adjust the label settings.
To customize the Day Label, you may use the "CalendarIconDaySettings" key (as a dictionary) in your Info.plist. In the dictionary, you may then use the standard Label Settings Keys to adjust the label settings.
###Example Plist Here's an example plist that fits with Amury by @iAmury
<?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>CalendarIconDateSettings</key>
<dict>
<key>FontSize</key>
<integer>36</integer>
<key>ShadowBlurRadius</key>
<integer>2</integer>
<key>ShadowColor</key>
<string>#cecece</string>
<key>ShadowXoffset</key>
<real>0.0</real>
<key>ShadowYoffset</key>
<real>1.0</real>
<key>TextColor</key>
<string>#242424</string>
<key>TextYoffset</key>
<real>6.0</real>
</dict>
<key>CalendarIconDaySettings</key>
<dict>
<key>FontSize</key>
<integer>8</integer>
<key>ShadowBlurRadius</key>
<integer>2</integer>
<key>ShadowColor</key>
<string>#a72424</string>
<key>ShadowXoffset</key>
<real>0.0</real>
<key>ShadowYoffset</key>
<real>1.0</real>
<key>TextColor</key>
<string>#ffffff</string>
</dict>
</dict>
</plist>
To be done.