Hi Jeff,
Thanks for writing in! You can add this under Custom > CSS in the Customizer.
/*normal state*/
.x-pagination a, .x-pagination span {
color: #333;
font-size: 12px;
height: 32px;
line-height: 32px;
width: 32px;
}
/*hover color and background*/
.x-pagination a:hover {
background-color: #1abc9c;
color: #fff;
}
/*current item color and background*/
.x-pagination span.current {
background-color: #2c3e50;
color: #fff;
}
Let’s adjust the color codes to your preferred values.
Hope this helps.
Cheers!