Last active
February 29, 2020 17:08
-
-
Save alorma/187ce3891cb5e22eed81e753a64da57d to your computer and use it in GitHub Desktop.
This file contains 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"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:color="?colorPrimary" android:state_enabled="true" /> | |
<item android:alpha="0.38" android:color="?colorPrimary" /> | |
</selector> |
This file contains 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"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:color="?colorPrimary" android:state_enabled="true" /> | |
<item android:alpha="0.38" android:color="?colorPrimary" /> | |
</selector> |
This file contains 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"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:color="?colorPrimary" android:state_enabled="true" /> | |
<item android:alpha="0.38" android:color="?colorPrimary" /> | |
</selector> |
This file contains 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"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:color="?colorOnPrimary" android:state_enabled="true" /> | |
<item android:alpha="0.38" android:color="?colorOnPrimary" /> | |
</selector> |
This file contains 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"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:color="?colorPrimary" android:state_enabled="true" /> | |
<item android:alpha="0.38" android:color="?colorPrimary" /> | |
</selector> |
This file contains 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"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:alpha="0.16" android:color="?colorPrimary" /> | |
</selector> |
This file contains 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
<style name="ThemeOverlay.Primary" parent="" /> | |
<style name="ThemeOverlay.Secondary" parent=""> | |
<item name="colorPrimary">?colorSecondary</item> | |
<item name="colorOnPrimary">?colorOnSecondary</item> | |
</style> | |
<style name="ThemeOverlay.Error" parent=""> | |
<item name="colorPrimary">?colorError</item> | |
<item name="colorOnPrimary">?colorOnError</item> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment