Date Picker days how to set font color days of the month

I am trying to us the Date Picker bric, i can not seem to change the color of the font nor can change the calendar green color. As you can see in the pictures i changed it to blue but it still shows green. I have tried using a class on the calendar but it had not effect.

Hi @Billy_R, To change the styling you will need to overwrite settings with a few lines of CSS and using !important. If you add the following to the page header:

    <style>
.mp-picker-info {
   background-color: #25AAD1!important;
	font-family: verdana!important;
	font-size: 1rem!important;
	color: #F9F7C2!important;
}

.mp-picker-choose .active {
  background-color: #C4D705!important;
}
</style>

The result would be:

By inspecting the element you will find all classes used in the date picker.

Jerry,

Thank you