Here is the code snippet I am using to highlight the color of the currently active page button:
<li ng-repeat="pageNumber in pages track by tracker(pageNumber, $index)"
ng-class="{active :pagination.current == pageNumber, disabled : pageNumber == '...' }">
<a href="" ng-click="setCurrent(pageNumber)">{{ pageNumber }}</a>
</li>
Take a look at the button image provided here:
https://i.sstatic.net/X2gYO.jpg
I want to customize the color of the active button. Can anyone help me with this?