Our WordPress template displays the categories that a post is within. For example if a post is in the category Dogs and also the category Cats then those category links are displayed on the post's page.
Is it possible to output the links like this...
<a href="/category/cats" class="cats">Cats</a>
<a href="/category/cats" class="dogs">Dogs</a>
The reason is we'd like to style each category's link with a different color.
If so, how can I accomplish this?