I can't find a way to change that anywhere and CodeRush sets the foreground color to a very light gray that is nearly unreadable on my monitor's white background. It is hard to read the code when variable names (as well as unused method parameters and using directives) are this light.
Asked
Active
Viewed 2,059 times
1 Answers
3
The options, such as colors of the different code issue types underlining, are available inside the Visual Studio configuration dialog. From the main IDE window, go to Tools | Options…, then Environment | Fonts and Colors. In the “Display items:” list, you can find the Dead Code item. For this item, you can change the “Item foreground” and “Item background” color properties.
See more details here: CodeRush Code Issues configuration and options

Alex Skorkin
- 4,264
- 3
- 25
- 47
-
```Dead Code under Tools / Options -> Environment / Fonts and Colors``` is what I was looking for. The problem is that CodeRush then takes the foreground item color I select and lightens it, making for example black into gray. – Michael Goldshteyn Feb 14 '12 at 18:34