This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
"[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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | |
} |