fix button colors based on @bb8 feedback!

This commit is contained in:
Kevin Hester
2021-05-09 11:16:28 +08:00
parent 56fd43e6f5
commit 510ae0002f
2 changed files with 6 additions and 0 deletions

View File

@@ -11,4 +11,5 @@
<color name="colorMenuItem">#000000</color>
<color name="selectedColor">#67EA94</color>
<color name="unselectedColor">#212121</color>
<color name="buttonColor">#67EA94</color>
</resources>

View File

@@ -4,6 +4,7 @@
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
<!-- Customize your theme here. -->
<item name="actionBarTheme">@style/MyActionBar</item>
<item name="materialButtonStyle">@style/Widget.App.Button</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
@@ -53,6 +54,10 @@
<item name="cornerSize">50%</item>
</style>
<style name="Widget.App.Button" parent="Widget.MaterialComponents.Button">
<item name="backgroundTint">@color/buttonColor</item>
</style>
<style name="MyThemeOverlay_Toolbar" parent="">
<item name="background">@color/colorPrimary</item>
<item name="android:textColorPrimary">@color/colorOnPrimary</item>