A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Digital Clock minutes darker
- 
 but the displayseconds is misspelled 
 displaySeconds
 MagicMirror is case sensitivealways best to copy/paste from the doc 
 https://docs.magicmirror.builders/modules/clock.html#using-the-modulecolor, see the second link in my signature below to use the developers window 
- 
 @alfi153 also, sadly the clock is displayed in one html element 
  
- 
 but make these changes to the modules/default/clock/clock.js add property sendNotifications: false, splittime:false, // add this lineand this code if (this.config.displayType !== "analog" && this.config.showTime) { if (this.config.splittime) { // add these lines let ts = timeString.split(':') timeString = `<span class="clockhour">${ts[0]}</span>:<span class="clockminute">${ts[1]}</span>` } // end of addition timeWrapper.innerHTML = timeString;then in config.js for clock config: { splittime: true, ...and in css/custom.css .clock .clockminute { color: red; }
- 
 Thank you 🙂 
- 
 @alfi153 i will submit something for permanent support I have added 
 https://github.com/MagicMirrorOrg/MagicMirror/pull/3737
