Skip to content

Commit 8e665b0

Browse files
authored
Merge pull request microsoft#209997 from microsoft/ddossett/afraid-gazelle
Fix ansiGreen contrast for light and light high contrast themes
2 parents 97df4da + f485907 commit 8e665b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vs/workbench/contrib/terminal/common/terminalColorRegistry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ export const ansiColorMap: { [key: string]: { index: number; defaults: ColorDefa
143143
'terminal.ansiGreen': {
144144
index: 2,
145145
defaults: {
146-
light: '#00BC00',
146+
light: '#107C10',
147147
dark: '#0DBC79',
148148
hcDark: '#00cd00',
149-
hcLight: '#00bc00'
149+
hcLight: '#136C13'
150150
}
151151
},
152152
'terminal.ansiYellow': {

src/vs/workbench/contrib/terminal/test/common/terminalColorRegistry.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ suite('Workbench - TerminalColorRegistry', () => {
6464
assert.deepStrictEqual(colors, [
6565
'#000000',
6666
'#cd3131',
67-
'#00bc00',
67+
'#107c10',
6868
'#949800',
6969
'#0451a5',
7070
'#bc05bc',

0 commit comments

Comments
 (0)