Home > Software design >  Trouble with setting up vscode Theme color
Trouble with setting up vscode Theme color

Time:03-01

I've installed iceberg theme extension on vscode, and spend decent amount of time to figure out how to change the color of line number in the way to be the same like code section background color. What I have

I want something like in dark (default dark) where both sections have same color

What I would like to have

Is it possible to override only line number column color?

CodePudding user response:

there are 2 workbench colors for line numbers

  • editorLineNumber.foreground
  • editorLineNumber.activeForeground

Set both color names to the same color in your settings.json file specific for this theme.

CodePudding user response:

After some more searching I found editorGutter.background responsible for setting that thing

  • Related