illixion / vscode-vibrancy-continued

Enable Acrylic/Glass effect for your VS Code.
MIT License
557 stars 32 forks source link

[Bug]: Can't change sidebar color #59

Closed Jnorm911 closed 1 year ago

Jnorm911 commented 1 year ago

Is there an existing issue for this?

Current Behavior

Doesn't matter the theme, self made or not. The sidebar is always slightly lighter than the editor. Even if I use "sideBar.background": "#ff0000" the sidebar color will not change. sidebar color

Expected Behavior

Sidebar should be the same color as the editor on a blank theme.

Steps To Reproduce

Make/Change theme.

Environment

- OS: Windows 11
- VSCode: Latest
- Extension: Latest Stable

Anything else?

No response

illixion commented 1 year ago

Vibrancy overrides some of the styling options in VSCode, so you need to instead create a CSS file that has the following code snippet:

.monaco-workbench .part.sidebar {
  background-color: unset !important;
}

Afterwards, add the full path to the CSS file as an import in Vibrancy settings. That should remove the tint on the sidebar.