【问题标题】:How to change the background color of the section below tab bar?如何更改标签栏下方部分的背景颜色? 【发布时间】:2023-01-08 23:53:33 【问题描述】: 我想更改标签栏下方部分的背景颜色,但我不知道它的名称是什么。 我尝试在选项卡栏中使用一些选项,但它不起作用。 【问题讨论】: 只需查看主题颜色列表并丢弃其中大部分,因为名称肯定不匹配,然后您只剩下几个名称可以尝试 标签: visual-studio-code 【解决方案1】: 这是由 workbench.colorCustomizations 中的 breadcrumb 属性控制的: "workbench.colorCustomizations": { "breadcrumb.background": "#ff0000", "breadcrumb.foreground": "#00ff26" } 【讨论】: