Hey There!
I'm trying to remove the weekend yellow highlights. But I couldn't find any issue/question related to it? Is it possible?

@DavidVeloso
Yeah, you should be able to change their styling via the .rct-day-6 .rct-day-0 CSS classes.
Great! Thank you @diegocasmo.
I'm using material-ui and I just added on my component:
const useStyles = makeStyles((theme) =>
createStyles({
'@global .rct-day-0, .rct-day-6': {
background: 'unset !important',
},
}),
);
Most helpful comment
@DavidVeloso
Yeah, you should be able to change their styling via the
.rct-day-6.rct-day-0CSS classes.