Thanks so much - this documentation fell a little bit flat - it was only changing the symbol and not the font itself… however… at this link https://forum.magicmirror.builders/topic/18528/calendar-calendarext3-font-color-and-symbol/12?page=2 it outlined a font change option
now, im not great at all of this (clearly) however after some well thought out trial and error i was able to get this code to adjust for the font change, appreciate the help!!
Hopefully they add some updates to the documentation
module: "MMM-CalendarExt3",
position: "bottom_bar",
config: {
eventTransformer: (ev) => {
if (ev.title.search('Owen') > -1) ev.color = 'blue'
ev.title=ev.title.replace ('Owen','<font color=blue>Owen</font>')
return ev
}
}
},
apologies for the formatting