如何在 ng-multiselect-dropdown Angular 7 中将所选文本和复选框蓝色更改为灰色

use*_*961 5 css multi-select angular

我正在研究 ng-multi-select 下拉菜单(在 Angular7 中),并且我能够在外部更改宽度大小。但是,我无法更改所选文本的颜色,也无法更改复选框颜色。简而言之,我需要将蓝色更改为灰色。我尝试了不同的解决方案但没有成功。我可以从下面的代码中看到我做错了什么吗?

样本图像

Oma*_*mar 0

对于 Angular v8,添加此 CSS 样式应该可以解决问题:

.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
     color: #17c017 !important;
}

.mat-primary .mat-pseudo-checkbox-checked, 
.mat-primary .mat-pseudo-checkbox-indeterminate {
     background: #17c017 !important;
}
Run Code Online (Sandbox Code Playgroud)