Skip to content

Commit 0119b6a

Browse files
authored
Revert "The code background and foreground color are inversed for the default high contrast theme" (microsoft#242312)
This reverts commit 75237f1.
1 parent d35066b commit 0119b6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/platform/theme/common/colors/baseColors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ export const textSeparatorForeground = registerColor('textSeparator.foreground',
6565
// ------ text preformat
6666

6767
export const textPreformatForeground = registerColor('textPreformat.foreground',
68-
{ light: '#A31515', dark: '#D7BA7D', hcDark: Color.white, hcLight: '#292929' },
68+
{ light: '#A31515', dark: '#D7BA7D', hcDark: '#000000', hcLight: '#FFFFFF' },
6969
nls.localize('textPreformatForeground', "Foreground color for preformatted text segments."));
7070

7171
export const textPreformatBackground = registerColor('textPreformat.background',
72-
{ light: '#0000001A', dark: '#FFFFFF1A', hcDark: Color.black, hcLight: '#F2F2F2' },
72+
{ light: '#0000001A', dark: '#FFFFFF1A', hcDark: '#FFFFFF', hcLight: '#09345f' },
7373
nls.localize('textPreformatBackground', "Background color for preformatted text segments."));
7474

7575

0 commit comments

Comments
 (0)