This is quite minor a change per se, in preparation of another one. It (a) makes visited links a bit less aggressive in their blue-ness and a tad brighter, (b) makes unvisited links a bit less bright, and (c) brings the two colors closer together to make the overall page impression less chequered (many sites these days use exactly the same color for both).
Applied. Gerald Index: gcc.css =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc.css,v retrieving revision 1.20 diff -u -r1.20 gcc.css --- gcc.css 1 May 2011 21:24:37 -0000 1.20 +++ gcc.css 11 Sep 2011 02:03:30 -0000 @@ -5,8 +5,8 @@ body { background-color: white; color: black; } -a:link { color: #0066dd; text-decoration: none; } -a:visited { color: #000099; text-decoration: none; } +a:link { color: #0066bb; text-decoration: none; } +a:visited { color: #003399; text-decoration: none; } a:hover { color: darkorange; text-decoration: none; } h1 { color: gray; text-align:center; }