From 6578e5e4cfb69dc3fd0e10219475025790140a54 Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Fri, 15 Apr 2022 14:19:12 -0700 Subject: [PATCH] Fix High Contrast theme name (#19125) --- src/vs/workbench/services/themes/common/themeConfiguration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/themes/common/themeConfiguration.ts b/src/vs/workbench/services/themes/common/themeConfiguration.ts index 153633e867..80c0e7c70d 100644 --- a/src/vs/workbench/services/themes/common/themeConfiguration.ts +++ b/src/vs/workbench/services/themes/common/themeConfiguration.ts @@ -18,7 +18,7 @@ import { isMacintosh, isWeb, isWindows } from 'vs/base/common/platform'; const DEFAULT_THEME_DARK_SETTING_VALUE = 'Default Dark Azure Data Studio'; // {{SQL CARBON EDIT}} replace default theme const DEFAULT_THEME_LIGHT_SETTING_VALUE = 'Default Light Azure Data Studio'; // {{SQL CARBON EDIT}} replace default theme -const DEFAULT_THEME_HC_SETTING_VALUE = 'Default High Contrast Azure Data Studio'; // {{SQL CARBON EDIT}} replace default theme +const DEFAULT_THEME_HC_SETTING_VALUE = 'High Contrast'; // {{SQL CARBON EDIT}} replace default theme const DEFAULT_FILE_ICON_THEME_SETTING_VALUE = 'vs-seti';