MMRIZE / MMM-CalendarExt3

MagicMirror calendar view module
MIT License
58 stars 22 forks source link

Color Change Preset Sat/Sun and CW Fonts #61

Closed Stoked18 closed 1 year ago

Stoked18 commented 1 year ago

Hello, first of all thanks for the amazing module. It is running perfect and was easy to set up even for a beginner like me. I would like to ask if you can help me in changing the preset colors for the fonts of "Saturday" and "Sunday" incl. their dates and the "CW XX" in yellow in the first cell of each row. I would like to have them white, too, just as the rest of the calender fonts.

I have not yet played with CSS styling so I may need some help for "real beginners".

Thanks in advance to anyone investing their time for helping me with this issue :)

image

eouia commented 1 year ago
  1. Open ~/MagicMirror/css/custom.css
  2. Add these lines;
    .CX3 .cw,   /* Count of Weeks */
    .CX3 .weekday_0,  /* Sunday */
    .CX3 .weekday_6 {   /* Saturday */
    color: white; /* Or 'inherit', '#FAFAFA', whatever you want */
    }
  3. Save then restart.
Stoked18 commented 1 year ago

that was easier than expected. Thank you so much for the quick reply. Works perfectly! Learning a bit everyday ... :)