In my scss file for my component I have this to set the background color for mat-checkbox when checked:
/deep/.mat-checkbox-checked.mat-accent .mat-checkbox-background, .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background {
background-color: #A5C73C;
}
Now I need to set a different color for checkboxes when they are selected but disabled (some data have to be always selected and their checkbox disabled to prevent unchecking). How do I specify the disabled property with /deep/ in scss?