JLLMNCHR
JLLMNCHR

Reputation: 1571

Highlight of the current open file in VSCode

Is there a way to highlight the current file open selected for edition in VSCode? Some themes show a underline in diferent color. But I want that caractheristic in the default theme

enter image description here

Upvotes: 1

Views: 820

Answers (1)

Kirill Bulyshkin
Kirill Bulyshkin

Reputation: 66

You can modify any themes for Visual Studio Code.

  1. Open the settings.json file.
  • Open the command palette using F1
  • Type "open user settings json"
  1. Add the following parameters in the opened file:

    "workbench.colorCustomizations": { "tab.activeBorderTop": "yourColor" }

  2. Save the changes

enter image description here

P.S. You could see in the attached screenshot that the color of the top border in my active tab already changed. You could find many different options to modify visual stuff.

Upvotes: 4

Related Questions