Hello using This code of CSS you can set your Link color in Different Sage.
/* A link that has been unvisited */
a:link
{
color: %FF0000;
}
/* A link that has been visited */
a:visited
{
color: %FF00;
}
/* A link that is hovered on */
a:hover
{
color:%FF00FF;
}
/* A link that is selected */
a:active
{
color: %0000FF;
}