diff options
Diffstat (limited to 'app/src/main/res/values-v21/themes.xml')
-rw-r--r-- | app/src/main/res/values-v21/themes.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/main/res/values-v21/themes.xml b/app/src/main/res/values-v21/themes.xml new file mode 100644 index 00000000..ac62b94c --- /dev/null +++ b/app/src/main/res/values-v21/themes.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="BitmaskTheme" parent="Theme.AppCompat.Light.NoActionBar"> + <item name="colorPrimary">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> + + <item name="textColorError">@color/colorError</item> + + <!-- progressBar color --> + <item name="colorAccent">@color/colorPrimary</item> + + <!-- button and controls --> + <item name="android:buttonStyle">@style/BitmaskButton</item> + <item name="android:colorButtonNormal">@color/colorPrimaryDark</item> + <item name="android:colorControlHighlight">@color/colorPrimaryDark</item> + </style> + + <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar"> + <item name="android:colorPrimary">@color/colorPrimary</item> + <item name="android:colorPrimaryDark">@color/colorPrimary</item> + <item name="android:windowBackground">@drawable/splash_page</item> + </style> + +</resources>
\ No newline at end of file |