Calendar Print Enhancement Request

This feature request includes 2 components:


1. The ability to print a calendar and all events in color. This would print the exact colors of all events as displayed within the online calendar.


2. The ability to print multiple months of calendar activity, ideally up to 12 months in one print request.

I would like to be able to print the calendar colors also. It seems the following Knack CSS is forcing it into grey. I've tried various workarounds but nothing has worked:

Knack's CSS:
@media print {
.kn-content .fc-event-skin {
background-color: #eee!important;
color: #333!important;
}
}

My failed workarounds:
@media print { body { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; } }
@media print { .fc-event-inner { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; } }
@media print { .fc-event-skin { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; } }
@media print { .kn-content { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; } }