illixion / vscode-vibrancy-continued

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

[Feature]: Please add minimap when use GitHub Dark Default theme #118

Closed whr3430633 closed 5 months ago

whr3430633 commented 6 months ago

Is there an existing issue for this?

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

No response

Describe your idea or feature request

Please add the minimap for GitHub Dark Default theme PixPin_2023-12-22_15-55-00

Describe alternatives you've considered

No response

Anything else?

No response

iSplasher commented 5 months ago

Import a custom css with these rules:

/* Editor minimap */

.monaco-editor .minimap {
    opacity: 0.2 !important;
}

/* Editor scrollbar decorations */

.editor-scrollable > .decorationsOverviewRuler {
    opacity: 0.6 !important;
}
whr3430633 commented 5 months ago

Import a custom css with these rules:

/* Editor minimap */

.monaco-editor .minimap {
    opacity: 0.2 !important;
}

/* Editor scrollbar decorations */

.editor-scrollable > .decorationsOverviewRuler {
    opacity: 0.6 !important;
}

Thanks, It worked!