How to customize Schedule's default theme using SCSS file?
This knowledge base article explains the way to customize the Schedule’s default theme by SCSS file
Step 1: Generate and download the theme file from theme studio
https://ej2.syncfusion.com/themestudio/?theme=material
Step 2: Create an Angular project with Scheduler control. Kindly check the below link to create a project with Scheduler
https://ej2.syncfusion.com/angular/documentation/schedule/getting-started/?no-cache=1
Step 3: Move the downloaded file to this project.
Step 4: Rename the styles.css file into styles.scss
Step 4: Replace the below line in styles.scss file. And in this file, we can customize the Schedule’s theme variables like below,
$schedule-appointment-bg-color: green; @import './assets/material.scss';
Step 5: Run the application and the Schedule will be rendered and the appointment’s color as green
Sample: Override style using SCSS file