Skip to content

Instantly share code, notes, and snippets.

@anthroid
anthroid / default-dark-transparent.jsonc
Created February 22, 2021 22:37
Transparency example for the VS Code Default Dark+ theme with vibrancy patch
"[Default Dark+]": {
"editor.background": "#1d1d1d60",
"sideBar.background": "#202020C0",
"activityBar.background": "#20202080",
"list.activeSelectionBackground": "#12121250",
"list.inactiveSelectionBackground": "#C0C0C020",
"list.focusOutline": "#12121250",
"list.focusBackground": "#0759cb",
"list.hoverBackground": "#0759cb",
"list.hoverForeground": "#ffffff",
@anthroid
anthroid / vibrancy.patch
Last active February 22, 2021 22:40
Vibrancy patch for VS Code @ 11cd760 (macOS)
diff --git a/src/vs/platform/windows/common/windows.ts b/src/vs/platform/windows/common/windows.ts
index 3ca7fa2b74..08dd8e8876 100644
--- a/src/vs/platform/windows/common/windows.ts
+++ b/src/vs/platform/windows/common/windows.ts
@@ -115,6 +115,7 @@ export interface IWindowSettings {
readonly closeWhenEmpty: boolean;
readonly clickThroughInactive: boolean;
readonly enableExperimentalMainProcessWorkspaceStorage: boolean;
+ readonly vibrancy: 'none' | 'appearance-based' | 'light' | 'dark' | 'titlebar' | 'medium-light' | 'ultra-dark' | 'content' | 'window';
}