diff options
author | cyBerta <cyberta@riseup.net> | 2019-07-09 23:01:43 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2019-07-09 23:01:43 +0200 |
commit | 40266121f8f62bcbeca79d648fd673e5ee09c849 (patch) | |
tree | 269210986f86253a81f25acbe63849d20240f4aa /app/src/main/res/values | |
parent | ea7479f66048135292562abc324d8f9b3f20275b (diff) |
fix primaryDark colors in themes
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/themes.xml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index f3c55f41..b287b1f8 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -2,7 +2,7 @@ <resources> <style name="BitmaskTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorPrimary">@color/colorPrimary</item> - <item name="colorPrimaryDark">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="textColorError">@color/colorError</item> @@ -11,18 +11,12 @@ <!-- button and controls --> <item name="android:buttonStyle">@style/BitmaskButton</item> - <item name="colorButtonNormal">@color/colorPrimaryDark</item> - <item name="colorControlHighlight">@color/colorPrimaryDark</item> </style> <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar"> <item name="colorPrimary">@color/colorPrimary</item> - <item name="colorPrimaryDark">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="android:windowBackground">@drawable/splash_page</item> </style> - <style name="foo"> - <item name="textColorError">@color/colorPrimary</item> - </style> - </resources> |