mytheme
).<link>
tag:
<link rel="stylesheet" href="mytheme.css">
theme
property of the component to the prefix you specified
earlier:
<script> const scheduler = new DayPilot.Scheduler({ theme: 'mytheme', // ... });
Yes. You can generate themes for the Calendar, Month, and Navigator components from the open-source DayPilot Lite package.
Yes. You can edit the CSS file in any text editor. The most common styles are defined as CSS variables
(--dp-*
), so you can easily change the values without having to search through the entire file.
Yes. You will find the URL of the theme at the top of the CSS file. You can use the URL to open the theme in the Theme Designer, and create a copy of it.
Yes. The themes generated by the Theme Designer are standard CSS files and can be used in any web application, including React ones.
return ( <DayPilotScheduler theme="mytheme" // other properties /> );
Yes. The themes generated by the Theme Designer are standard CSS files and can be used in any web application, including Vue ones.
<template> <DayPilotScheduler theme="mytheme" // other properties /> </template>
Yes. The themes generated by the Theme Designer are standard CSS files and can be used in any web application, including Angular ones.
config: DayPilot.SchedulerConfig = { theme: 'mytheme', // other properties }