Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to remove shadow from VS Code

I'm trying make as much as possible VS Code looking as the Sublime Material theme: https://github.com/equinusocio/material-theme . I found only one bottle neck for now - is shadows.

They looking as an issue in the interface and took too much mine attention.

Example of VS Code shadow

All other stuff already are restyled using the *.tmTheme files and awesome workbench.experimental.colorCustomizations.

Would be glad for any proposals.

like image 846
Egor Malkevich Avatar asked Apr 09 '17 18:04

Egor Malkevich


People also ask

How do you remove dots from VS Code?

You can click on View and then Click on Command Palette or type Ctrl + Shift + P keyboard shortcut. Click on Toggle Render Whitespace. This option can be used to toggle Indentation dots in VSCode.

How do I remove Zen mode from VS Code?

Press Esc twice to exit Zen Mode.

How do you hide part of a code in VS Code?

The #Region directive enables you to collapse and hide sections of code in Visual Basic files. The #Region directive lets you specify a block of code that you can expand or collapse when using the Visual Studio code editor. The ability to hide code selectively makes your files more manageable and easier to read.


Video Answer


1 Answers

Try it:

"workbench.colorCustomizations": {
            "scrollbar.shadow": "#ffffff00",
            "widget.shadow": "#ffffff00"
        },
like image 198
kapelka_orgazma Avatar answered Sep 20 '22 01:09

kapelka_orgazma