Mogadishu
Mogadishu

Reputation: 243

Change highlight color of breakpoint highlights?

When you hit a breakpoint and it highlights that line, I'd like to change that highlight color. It's currently yellow with white text, it would be great if there was a contrast. Please refer to the picture.Example

Upvotes: 2

Views: 439

Answers (1)

Mark
Mark

Reputation: 183124

You can change that yellow background color with this colorCustomization in your settings.json:

"workbench.colorCustomizations": {

  "editor.stackFrameHighlightBackground": "#5c5b5c"
}

For more info, see https://code.visualstudio.com/api/references/theme-color

Upvotes: 2

Related Questions