Jeff Walker
Jeff Walker

Reputation: 1704

vs2010 c# debugging highlight color

The scenario is that I'm debugging some C# code in vs2010. I stop at a breakpoint. I step into a method. The current line is highlighted with yellow (I think by default). The line that I left before stepping into the method is now has a light grey background. Not bad if you have a dark text, but I have white text. Can't read it at all.

So, I want to change it, but what is it called?

Upvotes: 19

Views: 4323

Answers (1)

JaredPar
JaredPar

Reputation: 754725

Both of these colors are customizable. Go to the fonts and colors menu

  • Tools -> Options
  • Environment -> Fonts And Colors

The values you are interested in are

  • Current Statement: this is the line currently displaying in yellow
  • Read-Only Region: this is the line currently displaying in grey

Upvotes: 27

Related Questions