I'm pretty sure stackoverflow already uses the same color as VS for everything except comments, which are displayed gray:
/* Test */
I think it's much better to display them in green-ish (same exact color as the default theme in Visual Studio).. Very often they contain useful information that should be easy to read, and gray on gray is not.
I recently made a prettify.css for my blog, so here it is. Everything is straight from VS except for numbers (abc = 5;) that are red instead of black.
.com { color: #008000; } /* <-- color of comments */
.str, .tag { color: #A31515; }
.kwd, .atv { color: #0000FF; }
.typ { color: #2B91AF; }
.lit, .atn { color: #FF0000; }
.pun, .pln { color: #000000; }
.dec { color: purple; }