@@ -8,55 +8,37 @@ import { registerColor } from 'vs/platform/theme/common/colorRegistry';
8
8
9
9
export const diff = registerColor (
10
10
'mergeEditor.change.background' ,
11
- { dark : '#40A6FF33 ' , light : '#40A6FF33 ' , hcDark : '#40A6FF33 ' , hcLight : '#40A6FF33 ' , } ,
11
+ { dark : '#9bb95533 ' , light : '#9bb95533 ' , hcDark : '#9bb95533 ' , hcLight : '#9bb95533 ' , } ,
12
12
localize ( 'mergeEditor.change.background' , 'The background color for changes.' )
13
13
) ;
14
14
15
15
export const diffWord = registerColor (
16
16
'mergeEditor.change.word.background' ,
17
- { dark : '#9bb9551e' , light : '#9bb9551e' , hcDark : null , hcLight : null , } ,
17
+ { dark : '#9bb9551e' , light : '#9bb9551e' , hcDark : '#9bb9551e' , hcLight : '#9bb9551e' , } ,
18
18
localize ( 'mergeEditor.change.word.background' , 'The background color for word changes.' )
19
19
) ;
20
20
21
21
export const conflictBorderUnhandledUnfocused = registerColor (
22
22
'mergeEditor.conflict.unhandledUnfocused.border' ,
23
- { dark : '#ffa6007a' , light : '#ffa6007a' , hcDark : '#ffa60080 ' , hcLight : '#ffa60080 ' , } ,
23
+ { dark : '#ffa6007a' , light : '#ffa6007a' , hcDark : '#ffa6007a ' , hcLight : '#ffa6007a ' , } ,
24
24
localize ( 'mergeEditor.conflict.unhandledUnfocused.border' , 'The border color of unhandled unfocused conflicts.' )
25
25
) ;
26
26
27
- export const conflictBackgroundUnhandledUnfocused = registerColor (
28
- 'mergeEditor.conflict.unhandledUnfocused.background' ,
29
- { dark : '#ffa60026' , light : '#ffa60080' , hcDark : '#ffa60026' , hcLight : '#ffa6007a' , } ,
30
- localize ( 'mergeEditor.conflict.unhandledUnfocused.background' , 'The background color of unhandled unfocused conflicts.' )
31
- ) ;
32
-
33
27
export const conflictBorderUnhandledFocused = registerColor (
34
28
'mergeEditor.conflict.unhandledFocused.border' ,
35
- { dark : '#ffa600BF ' , light : '#ffa600' , hcDark : '#ffa600' , hcLight : '#ffa600' , } ,
29
+ { dark : '#ffa600 ' , light : '#ffa600' , hcDark : '#ffa600' , hcLight : '#ffa600' , } ,
36
30
localize ( 'mergeEditor.conflict.unhandledFocused.border' , 'The border color of unhandled focused conflicts.' )
37
31
) ;
38
32
39
33
export const conflictBorderHandledUnfocused = registerColor (
40
34
'mergeEditor.conflict.handledUnfocused.border' ,
41
- { dark : '#40C8AE49 ' , light : '#40C8AE49 ' , hcDark : '#40C8AE ' , hcLight : '#40C8AE ' , } ,
35
+ { dark : '#86868649 ' , light : '#86868649 ' , hcDark : '#86868649 ' , hcLight : '#86868649 ' , } ,
42
36
localize ( 'mergeEditor.conflict.handledUnfocused.border' , 'The border color of handled unfocused conflicts.' )
43
37
) ;
44
38
45
- export const conflictBackgroundHandledUnfocused = registerColor (
46
- 'mergeEditor.conflict.handledUnfocused.background' ,
47
- { dark : '#40C8AE33' , light : '#40C8AE33' , hcDark : '#40C8AE33' , hcLight : '#40C8AE33' , } ,
48
- localize ( 'mergeEditor.conflict.handledUnfocused.background' , 'The background color of handled unfocused conflicts.' )
49
- ) ;
50
-
51
- export const conflictBackgroundHandledFocused = registerColor (
52
- 'mergeEditor.conflict.handledFocused.background' ,
53
- { dark : '#40C8AE33' , light : '#40C8AE33' , hcDark : '#40C8AE33' , hcLight : '#40C8AE33' , } ,
54
- localize ( 'mergeEditor.conflict.handledFocused.background' , 'The background color of handled focused conflicts.' )
55
- ) ;
56
-
57
39
export const conflictBorderHandledFocused = registerColor (
58
40
'mergeEditor.conflict.handledFocused.border' ,
59
- { dark : '#40C8AEBF ' , light : '#40C8AEBF ' , hcDark : '#40C8AE ' , hcLight : '#40C8AE ' , } ,
41
+ { dark : '#c1c1c1cc ' , light : '#c1c1c1cc ' , hcDark : '#c1c1c1cc ' , hcLight : '#c1c1c1cc ' , } ,
60
42
localize ( 'mergeEditor.conflict.handledFocused.border' , 'The border color of handled focused conflicts.' )
61
43
) ;
62
44
0 commit comments