A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
All White MMM-CalendarExt3 & Agenda
-
I can’t seem to make the color formatting work for the dates shown on MMM-CalendarExt3 and MMM-CalendarExt3Agenda to make all of my dates be white in lieu of ‘gold’, ‘blue’, and ‘red’. I tried the changes below in my custom.css, but it has not worked no matter how many times I have messed with it. Any help would be greatly appreciated.
.CX3A .cellheader .cellHeaderMain .cellDate {
color: white;
} -
@DarkHelmet1
Gold is dedicated for today or current moment.
Blue(dodgerblue) is for weekend_1
Red(crimson) is for weekend_2You can find those colors in module’s css.
So; you can override like this;.CX3A .cell.today .cellDay { color: white; /* It was var(--todayColor) */ } .CX3A .cell.weekend_1 .cellDay { color: white; /* It was dodgerblue */ } .CX3A .cell.weekend_2 .cellDay color: white; /* It was crimson */ }
The reason why your selector
.CX3A .cellheader .cellHeaderMain .cellDate
didn’t work, is this;.cellHeader
is right, not.cellheader
.