One line of code to see heavily downvoted comments
1 comments
A more elaborate solution is to install a userstyle (http://userstyles.org/) and a browser plugin like as Stylish. There are dozens of themes available related to hacker news: http://userstyles.org/styles/browse/all/hacker+news.
Paste this in your console. It makes every text black.
d=document.getElementsByTagName('font');for(i=0;i<d.length;i++)d[i].color='#000';
Or make it a bookmark...
javascript:(function(){d=document.getElementsByTagName('font');for(i=0;i<d.length;i++)d[i].color='#000';})();