Link text is difficult to make out

The link text for both a link and a visited link is too similar in color to distinguish. For example:

Perhaps a bit of contrast would help.

@biapalmeiro can you help us on this.

Actually they are identical

a {
 color:#0070C5;
 text-decoration:none;
 cursor:pointer
}
a:visited {
 color:#0070C5
}
a:hover {
 color:#0070C5
}
a:active {
 color:#0070C5
}

I think I can change it. I’ll try soon. Thanks for the feedback.

Guys, please check if it works.

Link

Plain text

2 Likes

It still seems the same to me.
The following is what I see from web developer tools of firefox.

a {
	color: #0070c5;
	text-decoration: none;
	cursor: pointer;
        background: transparent;
}
a:hover, a: active {
	color: #0070c5;
        outline: 0;
}