I think the idea behind the a:visited color is that to make it blend into the text more. The user has already visited the link, so it doesn't need to stand out as much. Basically, the blue color is mixed together with the black to make it flow into the text more. While I understand the idea, I think it is a bad one. I like my links to still pop out at me no matter how many times I've visited them. Blending them into the text afterwards just makes it harder for me to find it again in the future.
See this nice chart of the current link colors (on the top) and a suggested alternate #05A for the visited link color, which would be noticeably darker, but still stand out from the black text next to it.

Because I didn't feel like waiting for SE to implement this, I wrote some CSS rules of my own. This will catch all links inside the post text, any links inside the comment text, and also the questions lists. Just apply it to the stackoverflow.com domain and enjoy different visited link colors. I also changed the border for hover to a dotted border, and even accounted for links appearing inside inline code, to make them stand out. It doesn't include the links found below the posts (last edited and usernames).
.post-text a, .comment-copy a { border: 0; color: #07C; text-decoration: none !important }
.post-text a:hover, .post-text a:hover code, .comment-copy a:hover, .comment-copy a:hover code { border-bottom: 1px dotted #07C; color: #07C }
.post-text a:visited, .comment-copy a:visited, .question-hyperlink:visited { color: #05A }
.post-text a:visited:hover, .comment-copy a:visited:hover { border-bottom: 1px dotted #05A }
How this looks viewing the questions list:

How the visited color looks around other text, not blending in so much:

How this makes inline code blocks stand out when they're linked:

Just underline it with light dotted line so it won't add any noise but it will 10x more recognizable– fl00r Apr 25 '11 at 8:46the codewas a link and he was referring to my jsFiddle. But I didn't notice the link and thought he was referring to my code pasted into the question. The problem was that the jsFiddle and pasted code actually worked slightly differently because one was in body and one was in head. I had to ask for clarification and only later realized that it was a link. – toxalot Dec 1 '12 at 21:25