PrimeNG p-calendar:更改日期的背景颜色

PrimeNG p-calendar: change the background-color of the dates

您好,我正在尝试自定义 p-calendar,但不知道如何更改所显示日期的颜色。请帮忙。提前致谢。

这是我的模板:

<div class="p-field p-col-12 p-md-4">
    <label for="time">Time</label>
    <p-calendar [(ngModel)]="date7" [showTime]="true" [inline]="true" inputId="time"></p-calendar>

</div>

我的Css:

  ::ng-deep .ui-datepicker .ui-datepicker-group {
     background-color: whitesmoke;
 }

  
  ::ng-deep .ui-datepicker .ui-widget-content {
     border: 1px solid #888888;
     font-weight: normal;
     color: #000000;
     background-color: red

 }

使用.p-datepicker代替.ui-datepicker

CSS:

::ng-deep .p-datepicker table td > span {
  background-color: orange;
}

::ng-deep .p-datepicker table td.p-datepicker-today > span {
  background-color: burlywood;
}

demo