I am currently using the ngx-pagination
plugin in my Angular 16
project and I would like to change the default blue color to a different one, is there anyone who can assist me with this?
https://i.sstatic.net/NNuy7.png
This is the HTML code snippet:
<div>
<pagination-controls></pagination-controls>
</div>
For CSS customization:
.ngx-pagination .current{
color: #ffffff !important;
background-color: red !important;
}
I have tried the above CSS as well as similar ones, but it seems that they are not working as expected. Any assistance on this matter would be highly appreciated.