Change event icon and title colors in popup

Hello, I’m trying to change the clock icon and “WHEN” to one color and the location pin icon and “WHERE” to a different color. Is that possible? I’m using the month layout, but the icons are in the popup:

Hi there and welcome to the Community, @lilykgamble :waving_hand:

Sure, here is a CSS code for the clock icon and “WHEN”:

.eapp-events-calendar-popup-time-icon {
  fill: red !important;
}

.eapp-events-calendar-popup-time-titleText {
  color: red !important;
}

And this code will change the color of the pin icon and "WHERE":
.eapp-events-calendar-popup-location-icon {
  fill: green!important;
}

.eapp-events-calendar-popup-location-titleText {
  color: green!important;
}

Check it out and let me know if you like the result :slightly_smiling_face: