The theme property (string) sets the calendar CSS theme.
DayPilot.Month.theme"month_default"JavaScript
const dp = new DayPilot.Month("dp", {
theme: "month_white",
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
theme: "month_white",
// ...
};React
<DayPilotMonth
theme="month_white"
{/* ... */}
/>Vue
<DayPilotMonth
theme="month_white"
<!-- ... -->
/>CSS Themes [doc.daypilot.org]