Use this custom CSS to highlight week-ends in the day, week, month and 4 days views:
/*Week-ends for the month view*/
.month-row .st-bg:nth-last-child(-n+2) {
background-color:#F0F0F0;
}
.month-row .st-dtitle:nth-last-child(-n+2) {
background-color:#E7E7E7;
}
/*Week-ends for day, week and 4 days views*/
td.tg-col.tg-weekend {
background-color:#F0F0F0;
}