'Trouble with setting up vscode Theme color
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
Is it possible to override only line number column color?
Solution 1:[1]
You can add these to your settings.json:
"workbench.colorCustomizations": {
"editorLineNumber.froeground": ,
"editorGutter.background": ,
"editorCursor.foreground": ,
},
Choose the color you like and save the changes. Hope hepful.
Solution 2:[2]
there are 2 workbench colors for line numbers
editorLineNumber.foregroundeditorLineNumber.activeForeground
Set both color names to the same color in your settings.json file specific for this theme.
Solution 3:[3]
After some more searching I found editorGutter.background responsible for setting that thing
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | 1y0una |
| Solution 2 | rioV8 |
| Solution 3 | rouch |
