Hi there,
Somewhere in your style you have the below style which is overwriting your other styles.
.mpcalendarday a[href*=javascript] {
color: #FFF!important;
}
You will need to place !important
on the style you make for the days because they have a hard coded color on the anchor element.
HTH,
-Elijah