I am using Material design components in my android project.
My promblem is that i cannot change DISABLED background color of the material button (https://material.io/develop/android/components/material-button/).
I want to change DISABLED color in my theme, but i cannot figure out how to do this.
I tried looking at Widget.MaterialComponents.Button style and I found out that it has "backgroundTint" property:
<item name="backgroundTint">@color/mtrl_btn_bg_color_selector</item>
But it does not have disabled state style, see below:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="?attr/colorPrimary" android:state_enabled="true"/>
<item android:alpha="0.12" android:color="?attr/colorOnSurface"/>
</selector>
I can always add it myself, but where does initial greyed out color of a DISABLED button come from?
What is the best way to change this color globally in my theme?
P.S. I am using Theme.MaterialComponents.NoActionBar theme.
Thanks!

