You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportconstmanageExtensionIcon=registerIcon('theme-selection-manage-extension',Codicon.gear,localize('manageExtensionIcon','Icon for the \'Manage\' action in the theme selection quick pick.'));
constmessage=localize({key: 'cannotToggle',comment: ['{0} is a setting name']},"Cannot toggle between light and dark themes when `{0}` is enabled in settings.",ThemeSettings.DETECT_COLOR_SCHEME);
markdownDescription: nls.localize({key: 'preferredDarkColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the color theme when the system color is dark and {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
46
+
markdownDescription: nls.localize({key: 'preferredDarkColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the color theme when system color mode is dark and {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
markdownDescription: nls.localize({key: 'preferredLightColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the color theme when the system color is light and {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
56
+
markdownDescription: nls.localize({key: 'preferredLightColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the color theme when system color mode is light and {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
nls.localize({key: 'detectColorScheme',comment: ['{0} and {1} will become links to other settings.']},'If enabled, will automatically select a color theme based on the OS system color. If the OS system color is dark, the theme specified at {0} is used, else {1}.',formatSettingAsLink(ThemeSettings.PREFERRED_DARK_THEME),formatSettingAsLink(ThemeSettings.PREFERRED_LIGHT_THEME))
88
-
+(ENABLE_SYSTEM_COLOR_SCHEME_SETTING ? nls.localize({key: 'detectColorSchemeSys',comment: ['{0} will become a link to another setting.']},'\n\nThis setting is ignored if {0} is configured.',formatSettingAsLink(ThemeSettings.SYSTEM_COLOR_THEME)) : ''),
89
-
86
+
markdownDescription: nls.localize({key: 'detectColorScheme',comment: ['{0} and {1} will become links to other settings.']},'If enabled, will automatically select a color theme based on the system color mode. If the system color mode is dark, {0} is used, else {1}.',formatSettingAsLink(ThemeSettings.PREFERRED_DARK_THEME),formatSettingAsLink(ThemeSettings.PREFERRED_LIGHT_THEME)),
90
87
default: false,
91
88
tags: [COLOR_THEME_CONFIGURATION_SETTINGS_TAG],
92
89
};
@@ -316,7 +313,7 @@ export class ThemeConfiguration {
localize('window.systemColorTheme.default',"System color theme matches the configured OS theme."),
20
-
localize('window.systemColorTheme.matchColorTheme',"Enforce a light system color theme when a light workbench color theme is configured and the same for configured dark workbench color themes."),
21
-
localize('window.systemColorTheme.light',"Enforce a light system color theme."),
22
-
localize('window.systemColorTheme.dark',"Enforce a dark system color theme."),
20
+
localize('window.systemColorTheme.default',"Native widget colors match the system colors."),
21
+
localize('window.systemColorTheme.auto',"Use light native widget colors for light color themes and dark for dark color themes."),
localize('window.systemColorTheme.dark',"Use dark native widget colors."),
23
24
],
24
-
markdownDescription: localize({key: 'window.systemColorTheme',comment: ['{0} and {1} will become links to other settings.']},"Overrides the system color theme that is used for native UI elements such as native dialogs, menus and title bar. Even if your OS is configured in light appearance mode, you can select a dark system color theme for the window. You can also configure to automatically adjust based on the {0} setting. Note: Using this setting will disable {1}.",formatSettingAsLink(ThemeSettings.COLOR_THEME),formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
25
+
markdownDescription: localize({key: 'window.systemColorTheme',comment: ['{0} and {1} will become links to other settings.']},"Set the color mode for native UI elements such as native dialogs, menus and title bar. Even if your OS is configured in light color mode, you can select a dark system color theme for the window. You can also configure to automatically adjust based on the {0} setting.\n\nNote: This setting is ignored when {1} is enabled.",formatSettingAsLink(ThemeSettings.COLOR_THEME),formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
0 commit comments