illixion / vscode-vibrancy-continued

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

[Feature]: Allow Theme Color In FullScreen #47

Open EmreSURK opened 1 year ago

EmreSURK commented 1 year ago

Is there an existing issue for this?

Is your feature request related to a problem? Please describe.

When VSCode becomes fullscreen on macOS, the theme color not using for the background, and this causes a colorless, dead visual.

Describe your idea or feature request

When VSCode is fullscreen, use the theme's background color.

Describe alternatives you've considered

As an alternative, we can apply the native approach as I mentioned in this issue: https://github.com/illixion/vscode-vibrancy-continued/issues/37#issuecomment-1342749244

illixion commented 1 year ago

As mentioned in https://github.com/illixion/vscode-vibrancy-continued/issues/37#issuecomment-1342787176, this is affected by a .monaco-workbench.fullscreen background-color setting. Need to ensure that this works properly on macOS and Windows before implementing it.

Feel free to use the Vibrancy custom import feature in the meantime using this CSS:

.monaco-workbench.fullscreen {
    background-color: transparent !important;
}