AnemoneTeam / Anemone

Anemone, a revolutionary theming engine for iOS 7 to iOS 10! Theme more than just images!
134 stars 17 forks source link

Override and Tint Colors Issue. #49

Closed ghost closed 8 years ago

ghost commented 8 years ago

The BlackColor key in override colors affects the signal strength and other status bar items. Even when tint colors is applied to change it with Global or UIStatusBar. Doesn't matter what BlackColor is set to the status bar items remain black until it's removed from plist. But the the text on the tables are not colored.

ghost commented 8 years ago

blackcoloren This is with BlackColor in the plist.

blackcolords This is without it in plist.

coolstar commented 8 years ago

Can you send both plists so I can take a look?

ghost commented 8 years ago

Plist with BlackColor

<?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>22</integer>
        <key>ShadowBlurRadius</key>
        <integer>0</integer>
        <key>ShadowColor</key>
        <string>#ffffff</string>
        <key>ShadowXoffset</key>
        <real>0.0</real>
        <key>ShadowYoffset</key>
        <real>0.0</real>
        <key>TextColor</key>
        <string>#00ffff</string>
        <key>TextYoffset</key>
        <real>6.0</real>
    </dict>
    <key>CalendarIconDaySettings</key>
    <dict>
        <key>FontSize</key>
        <integer>0</integer>
        <key>ShadowBlurRadius</key>
        <integer>0</integer>
        <key>ShadowColor</key>
        <string>#ffffff</string>
        <key>ShadowXoffset</key>
        <real>0.0</real>
        <key>ShadowYoffset</key>
        <real>0.0</real>
        <key>TextColor</key>
        <string>#00ffff</string>
    </dict>

<key>BadgeSettings</key>
  <dict>
      <key>FontName</key>
      <string>Helvetica Neue</string>
      <key>FontSize</key>
      <real>13</real>
      <key>HeightChange</key>
      <real>1</real>
      <key>WidthChange</key>
      <real>0</real>
      <key>TextXoffset</key>
      <real>1.0</real>
      <key>TextYoffset</key>
      <real>0.0</real>
  </dict>
  <key>IB-MaskIcons</key>
  <true/>

  <key>ColorFilter</key>
    <dict>
        <key>BundleIdentifiers</key>
        <array>
            <string>com.apple.Preferences</string>
        </array>
        <key>policy</key>
        <string>whitelist</string>
    </dict>

  <key>OverrideColors</key>
  <dict>
    <key>BarBackgroundColor</key>
  <string>#1a1a1a</string>
  <key>TableCellBackground</key>
  <string>#2a2a2a</string>
  <key>TableCellSelectionBackground</key>
    <string>#4a4a4a</string>
  <key>TableBackground</key>
    <string>#252525</string>

  <key>BlackColor</key>
  <string>#00ffff</string>
  </dict>

  <key>TintColors</key>
  <dict>
    <key>Global</key>
    <string>#00ffff</string>
    <key>UIStatusBar</key>
    <string>#00ffff</string>
    <key>UISwitchThumb</key>
    <string>#4a4a4a</string>
  </dict>

  <key>TintFilter</key>
    <dict>
    <key>BundleIdentifiers</key>
    <array>
            <string>com.apple.Preferences</string>
        </array>
    <key>policy</key>
  <string>whitelist</string>
    </dict>
</dict>
</plist>
ghost commented 8 years ago

Plist without BlackColor

<?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>22</integer>
        <key>ShadowBlurRadius</key>
        <integer>0</integer>
        <key>ShadowColor</key>
        <string>#ffffff</string>
        <key>ShadowXoffset</key>
        <real>0.0</real>
        <key>ShadowYoffset</key>
        <real>0.0</real>
        <key>TextColor</key>
        <string>#00ffff</string>
        <key>TextYoffset</key>
        <real>6.0</real>
    </dict>
    <key>CalendarIconDaySettings</key>
    <dict>
        <key>FontSize</key>
        <integer>0</integer>
        <key>ShadowBlurRadius</key>
        <integer>0</integer>
        <key>ShadowColor</key>
        <string>#ffffff</string>
        <key>ShadowXoffset</key>
        <real>0.0</real>
        <key>ShadowYoffset</key>
        <real>0.0</real>
        <key>TextColor</key>
        <string>#00ffff</string>
    </dict>

<key>BadgeSettings</key>
  <dict>
      <key>FontName</key>
      <string>Helvetica Neue</string>
      <key>FontSize</key>
      <real>13</real>
      <key>HeightChange</key>
      <real>1</real>
      <key>WidthChange</key>
      <real>0</real>
      <key>TextXoffset</key>
      <real>1.0</real>
      <key>TextYoffset</key>
      <real>0.0</real>
  </dict>
  <key>IB-MaskIcons</key>
  <true/>

  <key>ColorFilter</key>
    <dict>
        <key>BundleIdentifiers</key>
        <array>
            <string>com.apple.Preferences</string>
        </array>
        <key>policy</key>
        <string>whitelist</string>
    </dict>

  <key>OverrideColors</key>
  <dict>
    <key>BarBackgroundColor</key>
  <string>#1a1a1a</string>
  <key>TableCellBackground</key>
  <string>#2a2a2a</string>
  <key>TableCellSelectionBackground</key>
    <string>#4a4a4a</string>
  <key>TableBackground</key>
    <string>#252525</string>
  </dict>

  <key>TintColors</key>
  <dict>
    <key>Global</key>
    <string>cyan</string>
    <key>UIStatusBar</key>
    <string>#00ffff</string>
    <key>UISwitchThumb</key>
    <string>#4a4a4a</string>
  </dict>

  <key>TintFilter</key>
    <dict>
    <key>BundleIdentifiers</key>
    <array>
            <string>com.apple.Preferences</string>
        </array>
    <key>policy</key>
  <string>whitelist</string>
    </dict>
</dict>
</plist>
ghost commented 8 years ago

By changing the BlackColor to #c0c0c0 it fixed the issue but any other color I've tried it has the same issue.

coolstar commented 8 years ago

Duplicate of #42. Issue will be tracked there.