Can Css-Ngx-Pagination be changed to a different color than blue?
I am using ngx-pagination in Angular 16 application and I want to customize the default blue color into another , Can anyone help me. Html code: <div> <pagination-controls (pageChange)="getPagedItems($event)"></pagination-controls> </div> CSS .ngx-pagination .current{ color: #ffffff !important; background-color: red !important; }…