Generally, links and visited links in XF are the same colour, regardless of where they are used.
You can override this in the EXTRA.css template, e.g.
Code:
a:visited
{
color: red !important;
}
This would actually affect all visited links across the entire board. To specifically affect only the thread list, the CSS will need to be more specific:
Code:
.discussionListItem .titleText .title a:visited
{
color: red;
}
Change "red" to another colour or hex/RGB value as desired.