skip to Main Content

How do I make the outline around the Explorer View a different color?
outline

Here is my .vscode/settings.json file:

{
    "workbench.colorCustomizations": {
        "tab.activeBorderTop": "#fc7c05",
        "statusBar.background": "#85410165",
        "activityBar.activeBorder": "#fc7c05",
        "statusBarItem.remoteBackground": "#fc7c05",
        "terminal.tab.activeBorder": "#fc7c05",
        "activityBarBadge.background": "#fc7c05",
        "menu.selectionBackground": "#ff7b0074",
        "list.focusAndSelectionOutline": "#fc7c05",
        "list.activeSelectionBackground": "#803f0243"
    }
}

2

Answers


  1. Chosen as BEST ANSWER

    UPDATE

    I found out what it is, it's focusBorder.


  2. I think the colour customization point you’re looking for is focusBorder. Note that that’s for borders/outlines of things that are focused in general, so it’s going to affect more than just the primary sidebar.

    You might also be interested in sideBar.border and sideBarSectionHeader.border, but I don’t think those are the ones for what you’ve shown in your screenshot.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search