What's the syntax to change the default link colors when using the paginator sort

Hi when using paginator sort the default link colors are black, red and blue I think but I just happen to have a black colored background on my table headers which then the text for the table header can not be seen. I guess I can either change the backcolor of the table header or programatically change the color of the default link colors but I am not sure how to do this. Does someone have an example?

wtf? are you talking about frontend or backend? Do u have any snapshot?

<th><?= $this->Paginator->sort('id', __('Deliveries:'))?></th>

check your css wherever they are

That is just basic css, nothing at all to do with cakephp. Like active

.active {
    background-color: #3097D1;
    color: #fff;
    border: 1px solid #4CAF50;
    padding: 12px 10px;
}

Just an example.

But if coding front end stuff also, you should know this stuff like the palm of your own hand before messing with an advanced framework.

Hey I was asking more specifically because I knew you could over ride the template and thought maybe I could do it that way. I am very familiar with css but I think I should have been more clear in my question.