From 81c6d031671fd0cb462685f2df0e5e589f8cc98c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 14 Jan 2026 23:42:44 +0000 Subject: [PATCH 1/2] Initial plan From 6c9c4ffc46cc2efd119374db12765a1f10103bd0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 14 Jan 2026 23:50:26 +0000 Subject: [PATCH 2/2] Change background color to black for dark theme Co-authored-by: eli-w-king <201316543+eli-w-king@users.noreply.github.com> --- src/vs/platform/theme/common/colors/editorColors.ts | 2 +- src/vs/workbench/common/theme.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/platform/theme/common/colors/editorColors.ts b/src/vs/platform/theme/common/colors/editorColors.ts index d4e26b6c66eaa..6488d3dcf4689 100644 --- a/src/vs/platform/theme/common/colors/editorColors.ts +++ b/src/vs/platform/theme/common/colors/editorColors.ts @@ -17,7 +17,7 @@ import { scrollbarShadow, badgeBackground } from './miscColors.js'; // ----- editor export const editorBackground = registerColor('editor.background', - { light: '#ffffff', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, + { light: '#ffffff', dark: '#000000', hcDark: Color.black, hcLight: Color.white }, nls.localize('editorBackground', "Editor background color.")); export const editorForeground = registerColor('editor.foreground', diff --git a/src/vs/workbench/common/theme.ts b/src/vs/workbench/common/theme.ts index 143a09c1bf17c..691d3e7f1379c 100644 --- a/src/vs/workbench/common/theme.ts +++ b/src/vs/workbench/common/theme.ts @@ -20,7 +20,7 @@ export function WORKBENCH_BACKGROUND(theme: IColorTheme): Color { case ColorScheme.HIGH_CONTRAST_DARK: return Color.fromHex('#000000'); default: - return Color.fromHex('#252526'); + return Color.fromHex('#000000'); } }