Material theme color definitions

This commit is contained in:
str4d
2014-10-19 06:05:08 +00:00
parent 6f01989a4b
commit 0d029988c3
2 changed files with 23 additions and 1 deletions

View File

@ -1,4 +1,8 @@
<resources>
<color name="primary">#673ab7</color>
<color name="primary_dark">#512da8</color>
<color name="accent">#ff6e40</color>
<color name="indicator_red">#ffff0000</color>
<color name="indicator_yellow">#ffffff00</color>
<color name="indicator_green">#ff00ff00</color>

View File

@ -1,5 +1,23 @@
<resources>
<style name="Theme.I2P" parent="Theme.AppCompat" />
<style name="Theme.I2P" parent="Theme.AppCompat">
<!-- Here we setting appcompats actionBarStyle -->
<!--<item name="actionBarStyle">@style/MyActionBarStyle</item>-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/primary</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/primary_dark</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">@color/accent</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight & colorSwitchThumbNormal. -->
<!-- The rest of your attributes -->
</style>
<style name="WizardPageContainer">
<item name="android:layout_width">match_parent</item>