Created
February 2, 2018 19:33
-
-
Save wcoder/0f2dc9cfe230764cc9caa7b5234a3fab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<resources> | |
<!-- Colors --> | |
<color name="CustomHighlight">@android:color/transparent</color> | |
<color name="DarkOverride">@android:color/black</color> | |
<color name="Brand">#BE1003</color> | |
<style name="MainTheme" parent="MainTheme.Base"> | |
</style> | |
<!-- Base theme applied no matter what API --> | |
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar"> | |
<item name="windowNoTitle">true</item> | |
<item name="windowActionBar">false</item> | |
<item name="colorPrimary">@color/Brand</item> | |
<item name="colorPrimaryDark">@color/DarkOverride</item> | |
<item name="colorAccent">@color/Brand</item> | |
<item name="windowActionModeOverlay">true</item> | |
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item> | |
<!-- Override --> | |
<item name="android:colorPressedHighlight">@color/CustomHighlight</item> | |
<item name="android:colorLongPressedHighlight">@color/CustomHighlight</item> | |
<item name="android:colorFocusedHighlight">@color/CustomHighlight</item> | |
<item name="android:colorActivatedHighlight">@color/CustomHighlight</item> | |
<item name="android:activatedBackgroundIndicator">@color/CustomHighlight</item> | |
<!--<item name="android:textColorHint">#C14242</item>--> | |
</style> | |
<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog"> | |
<item name="colorAccent">@color/Brand</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment