How to hide current line indicator under the scrollbar in VSCode? - visual-studio-code

Is there a way to customize the color of this in VSCode, or to remove this indicator completely?

Related

Vs Code tabbar design (Default drop shadow)

I was trying to customize my vs code theme but did not get any option to disable the drop shadow of the tab bar of the VS Code.
There is some option to modify the tab bar using the "editor
not get "editorGroupHeader.tabbar" but I am not able to find any option to disable the drop shadow.
tabbar drop shadow
Though I have figured it out and am happy to share it here...
"scrollbar.shadow": "#HEX",
You can use this property to change the shadow and background color.

How do I change color of Scrollbar in Visual Studio Code?

The question is - how do I change color of scrollbar in VSCode?
I want to change my scrollbar to the color of my VSCode background. Available scrollbar settings in workbench.colorCustomizations don't change it the way I want (all I could find is scrollBarSlider and scrollbar.shadow settings), and I know there's a way to change it cause it is different in other themes (it's the same color as the background in those themes, as it should be)
How my scrollbar looks right now
(Added an arrow juuuuuust incase)
Thanks a lot!
In your settings.json:
"workbench.colorCustomizations": {
"editorOverviewRuler.background": "#ff0000", // for the "track" where the scrollThumb lives
"scrollbarSlider.background": "#9aa", // for the scrollThumb color
}
For others, see theme color reference: scrollbars and editorOverViewRuler in the same link.
Do note that there are other indicators that also live in the editorOverviewRuler, like selection indicators, find match indicators and more, which have to play nice with the color as well.

Is it possible to invert colors of a selected chunk of text in VSCode?

In vim, when a selection is made the colors are inverted:
Is there a way to do this in visual studio code? Or a workaround, such as setting "editor.selectionBackground": "#000000" to make the selection background black and some command like editor.textSelectionForeground: "ffffff" to make the text color behind the selection white?

Change Color Collapse / Expand

is there a way to change the color under the expand/collapse bar when highlighting a procedure?
In dark mode(twilight) I'm not able to see the beginning and the end of the subprocedure.

Remove the vertical indicator line from Activity Bar in VS code

How can I remove the vertical indicator line from Activity Bar in VS code's new release?
How can the vertical line of the indicator be removed from the side of the activity bar in vs code, so it does not exist like in the previous version? I prefer the earlier version so the activity bar indicator does not exist.
Currently it is not possible to deactivate it. You could try to override the activityBar.activeBorder setting of your color theme. To do so, open your settings (Ctrl+Shift+P -> Preferences) and add a new entry:
"workbench.colorCustomizations": {
"activityBar.activeBorder": "#000000"
}
Instead of #000000 use e.g. the the value of activityBar.background of your current theme.
To see what you current theme is look for workbench.colorTheme in your settings.