eouia / MMM-CalendarExt

Calendar views for MagicMirror
MIT License
55 stars 18 forks source link

customize color for current week saturday and sunday #76

Closed ingo916 closed 4 years ago

ingo916 commented 4 years ago

Is it possible to change the background color of just to top cell for Saturdayand Sunday?

image

eouia commented 4 years ago

You can use this CSS selector for it;

.CALEXT .weekHeader .day_6

day_1 is Monday, day_7 is Sunday.

So, you can use like this;

.CALEXT .weekHeader .day_6 {
  background-color: yellow;
  color: black;
}
12