I am using mat-calendar. I am trying to highlight certain dates but I couldn\'t do it. There is no proper documentation for this.
mat-calendar
HTML
Complementing Fabian's answer, if you have problem seeing the highlighted color and you are using lazy loading components, remember to add the ::ng-deep in front of the class. Like this:
lazy loading
::ng-deep
::ng-deep.special-date { background-color: red; }
Cheers!