Вы можете использовать ngClass
для списка опций:
HTML:
[ngClass]="{'special-class': selectedOptions.includes(filter.value) }"
CSS:
.special-class{
background-color: red; -- to set the background color
pointer-events: none; -- to disable user clicks
}