Home > Back-end >  How to chang background color of the section below tab bar?
How to chang background color of the section below tab bar?

Time:12-05

I want to change background color of the section which below the tab bar but I don't know what name is it. enter image description here

Thanks!

I tried with some option in tab bar but it not work.

CodePudding user response:

That is controlled by the breadcrumb properties found in workbench.colorCustomizations:

"workbench.colorCustomizations": {
    "breadcrumb.background": "#ff0000",
    "breadcrumb.foreground": "#00ff26"
  }

image showing breadcrumb bar color changes

  • Related