Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/vs
diff options
context:
space:
mode:
authorAlexandru Dima <alexdima@microsoft.com>2022-07-24 15:40:54 +0300
committerGitHub <noreply@github.com>2022-07-24 15:40:54 +0300
commit6ab408190e6a76bf460b4cee205a830b66d0e7c7 (patch)
tree69c7ae1e97f28bbe51f313ffc3032c2c08b6dc1a /src/vs
parenta3c4e5ffcee85677f1dd7e208cbd32bc84fee4d5 (diff)
Use white as editor background (#155993)
Fixes #154257: Use white as editor background
Diffstat (limited to 'src/vs')
-rw-r--r--src/vs/platform/theme/common/colorRegistry.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vs/platform/theme/common/colorRegistry.ts b/src/vs/platform/theme/common/colorRegistry.ts
index 9bfb2dfc45a..3305267657d 100644
--- a/src/vs/platform/theme/common/colorRegistry.ts
+++ b/src/vs/platform/theme/common/colorRegistry.ts
@@ -304,10 +304,8 @@ export const sashHoverBorder = registerColor('sash.hoverBorder', { dark: focusBo
/**
* Editor background color.
- * Because of bug https://monacotools.visualstudio.com/DefaultCollection/Monaco/_workitems/edit/13254
- * we are *not* using the color white (or #ffffff, rgba(255,255,255)) but something very close to white.
*/
-export const editorBackground = registerColor('editor.background', { light: '#fffffe', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, nls.localize('editorBackground', "Editor background color."));
+export const editorBackground = registerColor('editor.background', { light: '#ffffff', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, nls.localize('editorBackground', "Editor background color."));
/**
* Editor foreground color.