File tree 2 files changed +23
-4
lines changed
2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 33
33
"test" : " node ./out/test/runTest.js"
34
34
},
35
35
"extensionDependencies" : [
36
- " eamodio.gitlens"
37
36
],
38
37
"devDependencies" : {
39
38
"@types/glob" : " ^7.2.0" ,
61
60
"description" : " Log all DAP messages"
62
61
}
63
62
}
64
- }
63
+ },
64
+ "colors" : [
65
+ {
66
+ "id" : " debugutils.trailingLineBackgroundColor" ,
67
+ "description" : " Specifies the background color of the PerfTips" ,
68
+ "defaults" : {
69
+ "dark" : " #00000000" ,
70
+ "light" : " #00000000" ,
71
+ "highContrast" : " #00000000"
72
+ }
73
+ },
74
+ {
75
+ "id" : " debugutils.trailingLineForegroundColor" ,
76
+ "description" : " Specifies the foreground color of the PerfTips" ,
77
+ "defaults" : {
78
+ "dark" : " #99999959" ,
79
+ "light" : " #99999959" ,
80
+ "highContrast" : " #99999999"
81
+ }
82
+ }
83
+ ]
65
84
}
66
85
}
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ export class PerfTipsProvider implements vs.DebugAdapterTracker {
10
10
this . decorationType = vs . window . createTextEditorDecorationType ( {
11
11
after : {
12
12
margin : '0 0 0 3em' ,
13
- backgroundColor : new vs . ThemeColor ( 'gitlens .trailingLineBackgroundColor' ) ,
14
- color : new vs . ThemeColor ( 'gitlens .trailingLineForegroundColor' ) ,
13
+ backgroundColor : new vs . ThemeColor ( 'debugutils .trailingLineBackgroundColor' ) ,
14
+ color : new vs . ThemeColor ( 'debugutils .trailingLineForegroundColor' ) ,
15
15
fontWeight : 'normal' ,
16
16
fontStyle : 'normal' ,
17
17
textDecoration : 'none' ,
You can’t perform that action at this time.
0 commit comments