Skip to content

Commit 3b03ea7

Browse files
author
Miguel Solorio
authored
Increase contrast for diff inserted bg (microsoft#154969)
1 parent c41b1ca commit 3b03ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/theme/common/colorRegistry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ export const editorLightBulbAutoFixForeground = registerColor('editorLightBulbAu
401401
/**
402402
* Diff Editor Colors
403403
*/
404-
export const defaultInsertColor = new Color(new RGBA(155, 185, 85, 0.2));
404+
export const defaultInsertColor = new Color(new RGBA(53, 175, 34, 0.24));
405405
export const defaultRemoveColor = new Color(new RGBA(255, 0, 0, 0.2));
406406

407407
export const diffInserted = registerColor('diffEditor.insertedTextBackground', { dark: defaultInsertColor, light: defaultInsertColor, hcDark: null, hcLight: null }, nls.localize('diffEditorInserted', 'Background color for text that got inserted. The color must not be opaque so as not to hide underlying decorations.'), true);

0 commit comments

Comments
 (0)