Last active
August 29, 2015 14:09
-
-
Save believe2200/e625ba05ad4328dead55 to your computer and use it in GitHub Desktop.
MaterialTheme
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
<resources> | |
<!-- Base application theme. --> | |
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar" > | |
<!-- システムバーの色 --> | |
<item name="colorPrimaryDark">#1B5E20</item> | |
<!-- アクションバーの色 --> | |
<item name="colorPrimary">#388E3C</item> | |
<!-- UIの色 --> | |
<item name="colorAccent">#E91E63</item> | |
</style> | |
</resources> | |
<resources> | |
<!-- Base application theme. --> | |
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar" > | |
<!-- システムバーの色 --> | |
<item name="colorPrimaryDark">#1B5E20</item> | |
<!-- アクションバーの色 --> | |
<item name="colorPrimary">#388E3C</item> | |
<!-- UIの色 --> | |
</style> | |
<!-- Application theme. --> | |
<style name="AppTheme" parent="AppBaseTheme"> | |
<!-- All customizations that are NOT specific to a particular API-level can go here. --> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment