Skip to content

Commit

Permalink
Fix textPreformatForeground for HC themes (#213698)
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddossett authored May 28, 2024
1 parent 0051e79 commit 7f40fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/platform/theme/common/colors/baseColors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const textSeparatorForeground = registerColor('textSeparator.foreground',
// ------ text preformat

export const textPreformatForeground = registerColor('textPreformat.foreground',
{ light: '#A31515', dark: '#D7BA7D', hcDark: '#000000', hcLight: '#FFFFFF' },
{ light: '#A31515', dark: '#D7BA7D', hcDark: '#FFFFFF', hcLight: '#000000' },
nls.localize('textPreformatForeground', "Foreground color for preformatted text segments."));

export const textPreformatBackground = registerColor('textPreformat.background',
Expand Down

0 comments on commit 7f40fe4

Please sign in to comment.