@checkly/playwright-core 1.47.20-alpha → 1.48.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. package/browsers.json +14 -10
  2. package/lib/checkly/escapeRegExp.js +33 -0
  3. package/lib/checkly/secretsFilter.js +23 -0
  4. package/lib/cli/program.js +26 -14
  5. package/lib/client/api.js +6 -0
  6. package/lib/client/browserContext.js +20 -2
  7. package/lib/client/channelOwner.js +5 -2
  8. package/lib/client/connection.js +3 -0
  9. package/lib/client/fetch.js +16 -3
  10. package/lib/client/jsHandle.js +0 -8
  11. package/lib/client/localUtils.js +1 -0
  12. package/lib/client/network.js +175 -17
  13. package/lib/client/page.js +21 -0
  14. package/lib/client/playwright.js +6 -3
  15. package/lib/client/tracing.js +16 -20
  16. package/lib/generated/consoleApiSource.js +1 -1
  17. package/lib/generated/injectedScriptSource.js +1 -1
  18. package/lib/generated/pollingRecorderSource.js +7 -0
  19. package/lib/generated/webSocketMockSource.js +7 -0
  20. package/lib/protocol/validator.js +80 -14
  21. package/lib/server/bidi/bidiBrowser.js +23 -8
  22. package/lib/server/bidi/bidiChromium.js +124 -0
  23. package/lib/server/bidi/bidiConnection.js +1 -1
  24. package/lib/server/bidi/bidiExecutionContext.js +0 -3
  25. package/lib/server/bidi/bidiFirefox.js +15 -21
  26. package/lib/server/bidi/bidiInput.js +16 -32
  27. package/lib/server/bidi/bidiNetworkManager.js +39 -5
  28. package/lib/server/bidi/bidiOverCdp.js +103 -0
  29. package/lib/server/bidi/bidiPage.js +98 -25
  30. package/lib/server/bidi/bidiPdf.js +140 -0
  31. package/lib/server/bidi/third_party/firefoxPrefs.js +221 -0
  32. package/lib/server/browser.js +13 -2
  33. package/lib/server/browserContext.js +6 -23
  34. package/lib/server/browserType.js +39 -11
  35. package/lib/server/chromium/chromium.js +3 -15
  36. package/lib/server/chromium/chromiumSwitches.js +3 -1
  37. package/lib/server/chromium/crBrowser.js +4 -3
  38. package/lib/server/chromium/crExecutionContext.js +0 -7
  39. package/lib/server/chromium/crPage.js +5 -2
  40. package/lib/server/chromium/videoRecorder.js +1 -1
  41. package/lib/server/codegen/csharp.js +2 -2
  42. package/lib/server/codegen/java.js +1 -1
  43. package/lib/server/codegen/javascript.js +1 -1
  44. package/lib/server/codegen/language.js +14 -2
  45. package/lib/server/codegen/python.js +2 -2
  46. package/lib/server/cookieStore.js +73 -0
  47. package/lib/server/debugController.js +2 -2
  48. package/lib/server/deviceDescriptorsSource.json +51 -51
  49. package/lib/server/dialog.js +1 -0
  50. package/lib/server/dispatchers/browserContextDispatcher.js +19 -2
  51. package/lib/server/dispatchers/jsHandleDispatcher.js +0 -5
  52. package/lib/server/dispatchers/pageDispatcher.js +9 -0
  53. package/lib/server/dispatchers/playwrightDispatcher.js +2 -1
  54. package/lib/server/dispatchers/webSocketRouteDispatcher.js +189 -0
  55. package/lib/server/download.js +9 -2
  56. package/lib/server/fetch.js +96 -99
  57. package/lib/server/firefox/ffBrowser.js +6 -4
  58. package/lib/server/firefox/ffExecutionContext.js +0 -3
  59. package/lib/server/firefox/ffPage.js +3 -0
  60. package/lib/server/firefox/firefox.js +2 -13
  61. package/lib/server/frameSelectors.js +1 -1
  62. package/lib/server/frames.js +3 -2
  63. package/lib/server/har/harTracer.js +11 -0
  64. package/lib/server/input.js +0 -1
  65. package/lib/server/javascript.js +0 -7
  66. package/lib/server/page.js +5 -1
  67. package/lib/server/playwright.js +5 -2
  68. package/lib/server/recorder/contextRecorder.js +33 -50
  69. package/lib/server/recorder/recorderActions.js +2 -1
  70. package/lib/server/recorder/recorderApp.js +16 -10
  71. package/lib/server/recorder/recorderCollection.js +68 -79
  72. package/lib/server/recorder/recorderFrontend.js +5 -0
  73. package/lib/server/recorder/recorderInTraceViewer.js +144 -0
  74. package/lib/server/recorder/recorderRunner.js +75 -97
  75. package/lib/server/recorder/recorderUtils.js +47 -6
  76. package/lib/server/recorder.js +30 -25
  77. package/lib/server/registry/index.js +85 -4
  78. package/lib/server/socksClientCertificatesInterceptor.js +15 -3
  79. package/lib/server/trace/recorder/snapshotter.js +1 -0
  80. package/lib/server/trace/recorder/snapshotterInjected.js +2 -2
  81. package/lib/server/trace/recorder/tracing.js +70 -5
  82. package/lib/server/trace/test/inMemorySnapshotter.js +1 -1
  83. package/lib/server/trace/viewer/traceViewer.js +2 -5
  84. package/lib/server/webkit/webkit.js +1 -1
  85. package/lib/server/webkit/wkBrowser.js +6 -5
  86. package/lib/server/webkit/wkExecutionContext.js +0 -3
  87. package/lib/server/webkit/wkPage.js +4 -1
  88. package/lib/utils/happy-eyeballs.js +13 -0
  89. package/lib/utils/hostPlatform.js +2 -2
  90. package/lib/utils/httpServer.js +1 -0
  91. package/lib/utils/isomorphic/locatorGenerators.js +9 -18
  92. package/lib/utils/isomorphic/locatorParser.js +2 -2
  93. package/lib/utils/isomorphic/recorderUtils.js +195 -0
  94. package/lib/vite/htmlReport/index.html +12 -12
  95. package/lib/vite/recorder/assets/codeMirrorModule-d0KhC1qL.js +24 -0
  96. package/lib/vite/recorder/assets/{index-B-MT5gKo.css → index-BW-aOBcL.css} +1 -1
  97. package/lib/vite/recorder/assets/{index-D-5S5PPN.js → index-Bxxcmxlu.js} +10 -15
  98. package/lib/vite/recorder/index.html +2 -2
  99. package/lib/vite/traceViewer/assets/codeMirrorModule-BTYWvxEC.js +16437 -0
  100. package/lib/vite/traceViewer/assets/codeMirrorModule-BdBhzV6t.js +16443 -0
  101. package/lib/vite/traceViewer/assets/codeMirrorModule-BqcXH1AO.js +16838 -0
  102. package/lib/vite/traceViewer/assets/codeMirrorModule-Ca-1BNel.js +24 -0
  103. package/lib/vite/traceViewer/assets/codeMirrorModule-CcviAl53.js +16831 -0
  104. package/lib/vite/traceViewer/assets/codeMirrorModule-DS3v0XrQ.js +24 -0
  105. package/lib/vite/traceViewer/assets/codeMirrorModule-DZoSgqUd.js +24 -0
  106. package/lib/vite/traceViewer/assets/codeMirrorModule-DblsdhjA.js +16449 -0
  107. package/lib/vite/traceViewer/assets/codeMirrorModule-DtXZtbmO.js +16437 -0
  108. package/lib/vite/traceViewer/assets/codeMirrorModule-EhKN7Okm.js +16449 -0
  109. package/lib/vite/{recorder/assets/codeMirrorModule-C-fQ5QZD.js → traceViewer/assets/codeMirrorModule-MzSmL4X2.js} +1 -1
  110. package/lib/vite/traceViewer/assets/codeMirrorModule-U6XMqGkV.js +16437 -0
  111. package/lib/vite/traceViewer/assets/codeMirrorModule-lDjkI8Ax.js +24 -0
  112. package/lib/vite/traceViewer/assets/inspectorTab-BABZNwlH.js +17351 -0
  113. package/lib/vite/traceViewer/assets/inspectorTab-BB2Bm-wy.js +17361 -0
  114. package/lib/vite/traceViewer/assets/inspectorTab-BHcfR9dD.js +64 -0
  115. package/lib/vite/traceViewer/assets/inspectorTab-BPzVEZSf.js +17351 -0
  116. package/lib/vite/traceViewer/assets/inspectorTab-BPzhNk9r.js +64 -0
  117. package/lib/vite/traceViewer/assets/inspectorTab-Bbgq0hgt.js +64 -0
  118. package/lib/vite/traceViewer/assets/inspectorTab-C_OTuI8x.js +17361 -0
  119. package/lib/vite/traceViewer/assets/inspectorTab-DOc4D3cX.js +17361 -0
  120. package/lib/vite/traceViewer/assets/inspectorTab-DhBbZz8I.js +64 -0
  121. package/lib/vite/traceViewer/assets/inspectorTab-DpvLVMq5.js +17351 -0
  122. package/lib/vite/traceViewer/assets/workbench-B13nfocr.js +9 -0
  123. package/lib/vite/traceViewer/assets/workbench-BcgGQnKb.js +1473 -0
  124. package/lib/vite/traceViewer/assets/workbench-BwodYCgl.js +19119 -0
  125. package/lib/vite/traceViewer/assets/workbench-ByyWxoT8.js +1473 -0
  126. package/lib/vite/traceViewer/assets/workbench-CWtpwfKK.js +1473 -0
  127. package/lib/vite/traceViewer/assets/workbench-Crj6jzdv.js +19119 -0
  128. package/lib/vite/traceViewer/assets/workbench-DLv_q9ji.js +9 -0
  129. package/lib/vite/traceViewer/assets/workbench-DZqNXdoV.js +9 -0
  130. package/lib/vite/traceViewer/assets/workbench-DhqI6jeL.js +1473 -0
  131. package/lib/vite/traceViewer/assets/workbench-I4s6sWjN.js +1473 -0
  132. package/lib/vite/traceViewer/assets/workbench-M-Dh_RgU.js +1473 -0
  133. package/lib/vite/traceViewer/assets/workbench-Pa1v1Ojh.js +72 -0
  134. package/lib/vite/traceViewer/assets/workbench-gtYcQBNA.js +9 -0
  135. package/lib/vite/traceViewer/assets/xtermModule-DZP0glxx.js +5982 -0
  136. package/lib/vite/traceViewer/embedded.27BGR_eD.js +105 -0
  137. package/lib/vite/traceViewer/embedded.BBZ9gQEw.js +104 -0
  138. package/lib/vite/traceViewer/embedded.BIubxTi3.js +2 -0
  139. package/lib/vite/traceViewer/embedded.CHH7D63q.js +106 -0
  140. package/lib/vite/traceViewer/embedded.CorI3dFX.js +104 -0
  141. package/lib/vite/traceViewer/embedded.D4lqGydT.js +2 -0
  142. package/lib/vite/traceViewer/embedded.DTjd2aiy.js +105 -0
  143. package/lib/vite/traceViewer/embedded.DbzY7Q8w.js +2 -0
  144. package/lib/vite/traceViewer/embedded.Dxe2heQk.js +2 -0
  145. package/lib/vite/traceViewer/embedded.SsjKHrxC.js +105 -0
  146. package/lib/vite/traceViewer/embedded.Zu332ZC1.js +106 -0
  147. package/lib/vite/traceViewer/embedded.f-PLGsBT.js +2 -0
  148. package/lib/vite/traceViewer/embedded.html +5 -3
  149. package/lib/vite/traceViewer/embedded.ymLJ2mBS.js +106 -0
  150. package/lib/vite/traceViewer/index.B7aiTMfZ.js +2 -0
  151. package/lib/vite/traceViewer/index.BSak5QT9.js +2 -0
  152. package/lib/vite/traceViewer/index.Bfh46hDK.js +197 -0
  153. package/lib/vite/traceViewer/index.BrT2kfuc.js +2 -0
  154. package/lib/vite/traceViewer/index.C8ZWP1Qw.js +197 -0
  155. package/lib/vite/traceViewer/index.CB297BuW.js +2 -0
  156. package/lib/vite/traceViewer/index.CLxsp2W_.js +197 -0
  157. package/lib/vite/traceViewer/index.DPD22sZn.js +2 -0
  158. package/lib/vite/traceViewer/index.DkRbtWVo.js +195 -0
  159. package/lib/vite/traceViewer/index.DsjmhbB6.js +195 -0
  160. package/lib/vite/traceViewer/index.Dz3icWJV.js +196 -0
  161. package/lib/vite/traceViewer/index.PqcsvBxQ.js +196 -0
  162. package/lib/vite/traceViewer/index.html +5 -3
  163. package/lib/vite/traceViewer/index.yxAwzeWG.js +196 -0
  164. package/lib/vite/traceViewer/inspectorTab.DGJWXOSd.css +3145 -0
  165. package/lib/vite/traceViewer/inspectorTab.DLjBDrQR.css +1 -0
  166. package/lib/vite/traceViewer/recorder.7Wl6HrQl.js +550 -0
  167. package/lib/vite/traceViewer/recorder.BHq8OXiu.js +551 -0
  168. package/lib/vite/traceViewer/recorder.B_SY1GJM.css +0 -0
  169. package/lib/vite/traceViewer/recorder.BaRuS6Pc.js +2 -0
  170. package/lib/vite/traceViewer/recorder.BufKu9Hp.js +550 -0
  171. package/lib/vite/traceViewer/recorder.C88JDknq.js +2 -0
  172. package/lib/vite/traceViewer/recorder.Ch-WHviK.js +2 -0
  173. package/lib/vite/traceViewer/recorder.DBDpiNOK.css +15 -0
  174. package/lib/vite/traceViewer/recorder.Fwf59ZKh.js +551 -0
  175. package/lib/vite/traceViewer/recorder.POd-toIn.js +2 -0
  176. package/lib/vite/traceViewer/recorder.am-MV-DQ.js +550 -0
  177. package/lib/vite/traceViewer/recorder.html +17 -0
  178. package/lib/vite/traceViewer/recorder.zV_xPHM4.js +551 -0
  179. package/lib/vite/traceViewer/sw.bundle.js +3 -3
  180. package/lib/vite/traceViewer/uiMode.2tr9k625.js +5 -0
  181. package/lib/vite/traceViewer/uiMode.B11wexdJ.js +5 -0
  182. package/lib/vite/traceViewer/uiMode.BEZVCe5O.js +5 -0
  183. package/lib/vite/traceViewer/uiMode.BH2Nj2h0.js +1724 -0
  184. package/lib/vite/traceViewer/uiMode.BZoFj6zV.js +1723 -0
  185. package/lib/vite/traceViewer/uiMode.C4nbcio6.js +1730 -0
  186. package/lib/vite/traceViewer/uiMode.CAYqod-m.css +1 -0
  187. package/lib/vite/traceViewer/uiMode.CBRJkC_K.js +1724 -0
  188. package/lib/vite/traceViewer/uiMode.CpC2B27N.js +1724 -0
  189. package/lib/vite/traceViewer/uiMode.DRmgrHSk.css +1462 -0
  190. package/lib/vite/traceViewer/uiMode.DdtUZZVS.js +5 -0
  191. package/lib/vite/traceViewer/uiMode.Dlo9s_YX.js +1723 -0
  192. package/lib/vite/traceViewer/uiMode.O07awP3T.js +10 -0
  193. package/lib/vite/traceViewer/uiMode.gGHHTsyL.js +1730 -0
  194. package/lib/vite/traceViewer/uiMode.html +6 -4
  195. package/lib/vite/traceViewer/uiMode.wsGnVMQK.js +1723 -0
  196. package/lib/vite/traceViewer/workbench.9Es1K_T7.css +549 -0
  197. package/lib/vite/traceViewer/workbench.BQNDbcQ0.css +550 -0
  198. package/lib/vite/traceViewer/workbench.DjbIuxix.css +1 -0
  199. package/lib/vite/traceViewer/workbench.DlsCx8k5.css +1 -0
  200. package/lib/vite/traceViewer/workbench.wuxQoE2z.css +3703 -0
  201. package/package.json +1 -1
  202. package/types/protocol.d.ts +610 -173
  203. package/types/types.d.ts +2037 -949
@@ -0,0 +1,3703 @@
1
+ /*
2
+ Copyright (c) Microsoft Corporation.
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */
16
+
17
+ :root {
18
+ color-scheme: light dark;
19
+ }
20
+
21
+ body {
22
+ --transparent-blue: #2196F355;
23
+ --light-pink: #ff69b460;
24
+ --gray: #888888;
25
+ --sidebar-width: 250px;
26
+ --box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
27
+ }
28
+
29
+ html, body {
30
+ width: 100%;
31
+ height: 100%;
32
+ padding: 0;
33
+ margin: 0;
34
+ overflow: hidden;
35
+ display: flex;
36
+ overscroll-behavior-x: none;
37
+ }
38
+
39
+ #root {
40
+ width: 100%;
41
+ height: 100%;
42
+ display: flex;
43
+ }
44
+
45
+ body, dialog {
46
+ background-color: var(--vscode-panel-background);
47
+ color: var(--vscode-foreground);
48
+ font-family: var(--vscode-font-family);
49
+ font-weight: var(--vscode-font-weight);
50
+ font-size: var(--vscode-font-size);
51
+ -webkit-font-smoothing: antialiased;
52
+ }
53
+
54
+ a {
55
+ color: var(--vscode-textLink-foreground);
56
+ }
57
+
58
+ dialog {
59
+ border: none;
60
+ padding: 0;
61
+ box-shadow: var(--box-shadow);
62
+ line-height: 28px;
63
+ max-width: 400px;
64
+ }
65
+
66
+ dialog .title {
67
+ display: flex;
68
+ align-items: center;
69
+ margin: 0;
70
+ padding: 0 5px;
71
+ height: 32px;
72
+ background-color: var(--vscode-sideBar-background);
73
+ max-width: 400px;
74
+ }
75
+
76
+ dialog .title .codicon {
77
+ margin-right: 3px;
78
+ }
79
+
80
+ dialog .body {
81
+ padding: 10px;
82
+ text-align: center;
83
+ }
84
+
85
+ .button {
86
+ color: var(--vscode-button-foreground);
87
+ background: var(--vscode-button-background);
88
+ margin: 10px;
89
+ border: none;
90
+ height: 28px;
91
+ min-width: 40px;
92
+ cursor: pointer;
93
+ user-select: none;
94
+ }
95
+
96
+ .button:focus {
97
+ outline: 1px solid var(--vscode-focusBorder);
98
+ }
99
+
100
+ .button:hover {
101
+ background: var(--vscode-button-hoverBackground);
102
+ }
103
+
104
+ .button.secondary {
105
+ color: var(--vscode-button-secondaryForeground);
106
+ background: var(--vscode-button-secondaryBackground);
107
+ }
108
+
109
+ .button.secondary:hover {
110
+ background: var(--vscode-button-secondaryHoverBackground);
111
+ }
112
+
113
+ * {
114
+ box-sizing: border-box;
115
+ min-width: 0;
116
+ min-height: 0;
117
+ }
118
+
119
+ *[hidden],
120
+ .hidden {
121
+ display: none !important;
122
+ }
123
+
124
+ .invisible {
125
+ visibility: hidden !important;
126
+ }
127
+
128
+ svg {
129
+ fill: currentColor;
130
+ }
131
+
132
+ .vbox {
133
+ display: flex;
134
+ flex-direction: column;
135
+ flex: auto;
136
+ position: relative;
137
+ }
138
+
139
+ .fill {
140
+ position: absolute;
141
+ top: 0;
142
+ right: 0;
143
+ bottom: 0;
144
+ left: 0;
145
+ }
146
+
147
+ .hbox {
148
+ display: flex;
149
+ flex: auto;
150
+ position: relative;
151
+ }
152
+
153
+ .spacer {
154
+ flex: auto;
155
+ }
156
+
157
+ .codicon-check {
158
+ color: var(--vscode-charts-green);
159
+ }
160
+
161
+ .codicon-error {
162
+ color: var(--vscode-errorForeground);
163
+ }
164
+
165
+ .codicon-warning {
166
+ color: var(--vscode-list-warningForeground);
167
+ }
168
+
169
+ .codicon-circle-outline {
170
+ color: var(--vscode-disabledForeground);
171
+ }
172
+
173
+ input[type=text], input[type=search] {
174
+ color: var(--vscode-input-foreground);
175
+ background-color: var(--vscode-input-background);
176
+ border: none;
177
+ outline: none;
178
+ }
179
+
180
+ body.dark-mode ::-webkit-scrollbar {
181
+ width: 10px;
182
+ }
183
+
184
+ body.dark-mode ::-webkit-scrollbar-thumb {
185
+ background-color: #555;
186
+ }
187
+
188
+ body.dark-mode ::-webkit-scrollbar-track {
189
+ background-color: #333;
190
+ }
191
+
192
+ body.dark-mode ::-webkit-scrollbar-thumb:hover {
193
+ background-color: #777;
194
+ }
195
+
196
+ body.dark-mode ::-webkit-scrollbar-track:hover {
197
+ background-color: #444;
198
+ }
199
+
200
+ .codicon-loading {
201
+ animation: spin 1s infinite linear;
202
+ }
203
+
204
+ ::placeholder {
205
+ color: var(--vscode-input-placeholderForeground);
206
+ }
207
+
208
+ @keyframes spin {
209
+ 100% {
210
+ transform: rotate(360deg);
211
+ }
212
+ }
213
+ /*---------------------------------------------------------------------------------------------
214
+ * Copyright (c) Microsoft Corporation. All rights reserved.
215
+ * Licensed under the MIT License. See License.txt in the project root for license information.
216
+ *--------------------------------------------------------------------------------------------*/
217
+
218
+ @font-face {
219
+ font-family: "codicon";
220
+ src: url("./codicon.DCmgc-ay.ttf") format("truetype");
221
+ }
222
+
223
+ .codicon {
224
+ font: normal normal normal 16px/1 codicon;
225
+ flex: none;
226
+ display: inline-block;
227
+ text-decoration: none;
228
+ text-rendering: auto;
229
+ text-align: center;
230
+ -webkit-font-smoothing: antialiased;
231
+ -moz-osx-font-smoothing: grayscale;
232
+ -webkit-user-select: none;
233
+ -moz-user-select: none;
234
+ -ms-user-select: none;
235
+ user-select: none;
236
+ }
237
+
238
+ .codicon-add:before { content: '\ea60'; }
239
+ .codicon-plus:before { content: '\ea60'; }
240
+ .codicon-gist-new:before { content: '\ea60'; }
241
+ .codicon-repo-create:before { content: '\ea60'; }
242
+ .codicon-lightbulb:before { content: '\ea61'; }
243
+ .codicon-light-bulb:before { content: '\ea61'; }
244
+ .codicon-repo:before { content: '\ea62'; }
245
+ .codicon-repo-delete:before { content: '\ea62'; }
246
+ .codicon-gist-fork:before { content: '\ea63'; }
247
+ .codicon-repo-forked:before { content: '\ea63'; }
248
+ .codicon-git-pull-request:before { content: '\ea64'; }
249
+ .codicon-git-pull-request-abandoned:before { content: '\ea64'; }
250
+ .codicon-record-keys:before { content: '\ea65'; }
251
+ .codicon-keyboard:before { content: '\ea65'; }
252
+ .codicon-tag:before { content: '\ea66'; }
253
+ .codicon-git-pull-request-label:before { content: '\ea66'; }
254
+ .codicon-tag-add:before { content: '\ea66'; }
255
+ .codicon-tag-remove:before { content: '\ea66'; }
256
+ .codicon-person:before { content: '\ea67'; }
257
+ .codicon-person-follow:before { content: '\ea67'; }
258
+ .codicon-person-outline:before { content: '\ea67'; }
259
+ .codicon-person-filled:before { content: '\ea67'; }
260
+ .codicon-git-branch:before { content: '\ea68'; }
261
+ .codicon-git-branch-create:before { content: '\ea68'; }
262
+ .codicon-git-branch-delete:before { content: '\ea68'; }
263
+ .codicon-source-control:before { content: '\ea68'; }
264
+ .codicon-mirror:before { content: '\ea69'; }
265
+ .codicon-mirror-public:before { content: '\ea69'; }
266
+ .codicon-star:before { content: '\ea6a'; }
267
+ .codicon-star-add:before { content: '\ea6a'; }
268
+ .codicon-star-delete:before { content: '\ea6a'; }
269
+ .codicon-star-empty:before { content: '\ea6a'; }
270
+ .codicon-comment:before { content: '\ea6b'; }
271
+ .codicon-comment-add:before { content: '\ea6b'; }
272
+ .codicon-alert:before { content: '\ea6c'; }
273
+ .codicon-warning:before { content: '\ea6c'; }
274
+ .codicon-search:before { content: '\ea6d'; }
275
+ .codicon-search-save:before { content: '\ea6d'; }
276
+ .codicon-log-out:before { content: '\ea6e'; }
277
+ .codicon-sign-out:before { content: '\ea6e'; }
278
+ .codicon-log-in:before { content: '\ea6f'; }
279
+ .codicon-sign-in:before { content: '\ea6f'; }
280
+ .codicon-eye:before { content: '\ea70'; }
281
+ .codicon-eye-unwatch:before { content: '\ea70'; }
282
+ .codicon-eye-watch:before { content: '\ea70'; }
283
+ .codicon-circle-filled:before { content: '\ea71'; }
284
+ .codicon-primitive-dot:before { content: '\ea71'; }
285
+ .codicon-close-dirty:before { content: '\ea71'; }
286
+ .codicon-debug-breakpoint:before { content: '\ea71'; }
287
+ .codicon-debug-breakpoint-disabled:before { content: '\ea71'; }
288
+ .codicon-debug-hint:before { content: '\ea71'; }
289
+ .codicon-terminal-decoration-success:before { content: '\ea71'; }
290
+ .codicon-primitive-square:before { content: '\ea72'; }
291
+ .codicon-edit:before { content: '\ea73'; }
292
+ .codicon-pencil:before { content: '\ea73'; }
293
+ .codicon-info:before { content: '\ea74'; }
294
+ .codicon-issue-opened:before { content: '\ea74'; }
295
+ .codicon-gist-private:before { content: '\ea75'; }
296
+ .codicon-git-fork-private:before { content: '\ea75'; }
297
+ .codicon-lock:before { content: '\ea75'; }
298
+ .codicon-mirror-private:before { content: '\ea75'; }
299
+ .codicon-close:before { content: '\ea76'; }
300
+ .codicon-remove-close:before { content: '\ea76'; }
301
+ .codicon-x:before { content: '\ea76'; }
302
+ .codicon-repo-sync:before { content: '\ea77'; }
303
+ .codicon-sync:before { content: '\ea77'; }
304
+ .codicon-clone:before { content: '\ea78'; }
305
+ .codicon-desktop-download:before { content: '\ea78'; }
306
+ .codicon-beaker:before { content: '\ea79'; }
307
+ .codicon-microscope:before { content: '\ea79'; }
308
+ .codicon-vm:before { content: '\ea7a'; }
309
+ .codicon-device-desktop:before { content: '\ea7a'; }
310
+ .codicon-file:before { content: '\ea7b'; }
311
+ .codicon-file-text:before { content: '\ea7b'; }
312
+ .codicon-more:before { content: '\ea7c'; }
313
+ .codicon-ellipsis:before { content: '\ea7c'; }
314
+ .codicon-kebab-horizontal:before { content: '\ea7c'; }
315
+ .codicon-mail-reply:before { content: '\ea7d'; }
316
+ .codicon-reply:before { content: '\ea7d'; }
317
+ .codicon-organization:before { content: '\ea7e'; }
318
+ .codicon-organization-filled:before { content: '\ea7e'; }
319
+ .codicon-organization-outline:before { content: '\ea7e'; }
320
+ .codicon-new-file:before { content: '\ea7f'; }
321
+ .codicon-file-add:before { content: '\ea7f'; }
322
+ .codicon-new-folder:before { content: '\ea80'; }
323
+ .codicon-file-directory-create:before { content: '\ea80'; }
324
+ .codicon-trash:before { content: '\ea81'; }
325
+ .codicon-trashcan:before { content: '\ea81'; }
326
+ .codicon-history:before { content: '\ea82'; }
327
+ .codicon-clock:before { content: '\ea82'; }
328
+ .codicon-folder:before { content: '\ea83'; }
329
+ .codicon-file-directory:before { content: '\ea83'; }
330
+ .codicon-symbol-folder:before { content: '\ea83'; }
331
+ .codicon-logo-github:before { content: '\ea84'; }
332
+ .codicon-mark-github:before { content: '\ea84'; }
333
+ .codicon-github:before { content: '\ea84'; }
334
+ .codicon-terminal:before { content: '\ea85'; }
335
+ .codicon-console:before { content: '\ea85'; }
336
+ .codicon-repl:before { content: '\ea85'; }
337
+ .codicon-zap:before { content: '\ea86'; }
338
+ .codicon-symbol-event:before { content: '\ea86'; }
339
+ .codicon-error:before { content: '\ea87'; }
340
+ .codicon-stop:before { content: '\ea87'; }
341
+ .codicon-variable:before { content: '\ea88'; }
342
+ .codicon-symbol-variable:before { content: '\ea88'; }
343
+ .codicon-array:before { content: '\ea8a'; }
344
+ .codicon-symbol-array:before { content: '\ea8a'; }
345
+ .codicon-symbol-module:before { content: '\ea8b'; }
346
+ .codicon-symbol-package:before { content: '\ea8b'; }
347
+ .codicon-symbol-namespace:before { content: '\ea8b'; }
348
+ .codicon-symbol-object:before { content: '\ea8b'; }
349
+ .codicon-symbol-method:before { content: '\ea8c'; }
350
+ .codicon-symbol-function:before { content: '\ea8c'; }
351
+ .codicon-symbol-constructor:before { content: '\ea8c'; }
352
+ .codicon-symbol-boolean:before { content: '\ea8f'; }
353
+ .codicon-symbol-null:before { content: '\ea8f'; }
354
+ .codicon-symbol-numeric:before { content: '\ea90'; }
355
+ .codicon-symbol-number:before { content: '\ea90'; }
356
+ .codicon-symbol-structure:before { content: '\ea91'; }
357
+ .codicon-symbol-struct:before { content: '\ea91'; }
358
+ .codicon-symbol-parameter:before { content: '\ea92'; }
359
+ .codicon-symbol-type-parameter:before { content: '\ea92'; }
360
+ .codicon-symbol-key:before { content: '\ea93'; }
361
+ .codicon-symbol-text:before { content: '\ea93'; }
362
+ .codicon-symbol-reference:before { content: '\ea94'; }
363
+ .codicon-go-to-file:before { content: '\ea94'; }
364
+ .codicon-symbol-enum:before { content: '\ea95'; }
365
+ .codicon-symbol-value:before { content: '\ea95'; }
366
+ .codicon-symbol-ruler:before { content: '\ea96'; }
367
+ .codicon-symbol-unit:before { content: '\ea96'; }
368
+ .codicon-activate-breakpoints:before { content: '\ea97'; }
369
+ .codicon-archive:before { content: '\ea98'; }
370
+ .codicon-arrow-both:before { content: '\ea99'; }
371
+ .codicon-arrow-down:before { content: '\ea9a'; }
372
+ .codicon-arrow-left:before { content: '\ea9b'; }
373
+ .codicon-arrow-right:before { content: '\ea9c'; }
374
+ .codicon-arrow-small-down:before { content: '\ea9d'; }
375
+ .codicon-arrow-small-left:before { content: '\ea9e'; }
376
+ .codicon-arrow-small-right:before { content: '\ea9f'; }
377
+ .codicon-arrow-small-up:before { content: '\eaa0'; }
378
+ .codicon-arrow-up:before { content: '\eaa1'; }
379
+ .codicon-bell:before { content: '\eaa2'; }
380
+ .codicon-bold:before { content: '\eaa3'; }
381
+ .codicon-book:before { content: '\eaa4'; }
382
+ .codicon-bookmark:before { content: '\eaa5'; }
383
+ .codicon-debug-breakpoint-conditional-unverified:before { content: '\eaa6'; }
384
+ .codicon-debug-breakpoint-conditional:before { content: '\eaa7'; }
385
+ .codicon-debug-breakpoint-conditional-disabled:before { content: '\eaa7'; }
386
+ .codicon-debug-breakpoint-data-unverified:before { content: '\eaa8'; }
387
+ .codicon-debug-breakpoint-data:before { content: '\eaa9'; }
388
+ .codicon-debug-breakpoint-data-disabled:before { content: '\eaa9'; }
389
+ .codicon-debug-breakpoint-log-unverified:before { content: '\eaaa'; }
390
+ .codicon-debug-breakpoint-log:before { content: '\eaab'; }
391
+ .codicon-debug-breakpoint-log-disabled:before { content: '\eaab'; }
392
+ .codicon-briefcase:before { content: '\eaac'; }
393
+ .codicon-broadcast:before { content: '\eaad'; }
394
+ .codicon-browser:before { content: '\eaae'; }
395
+ .codicon-bug:before { content: '\eaaf'; }
396
+ .codicon-calendar:before { content: '\eab0'; }
397
+ .codicon-case-sensitive:before { content: '\eab1'; }
398
+ .codicon-check:before { content: '\eab2'; }
399
+ .codicon-checklist:before { content: '\eab3'; }
400
+ .codicon-chevron-down:before { content: '\eab4'; }
401
+ .codicon-chevron-left:before { content: '\eab5'; }
402
+ .codicon-chevron-right:before { content: '\eab6'; }
403
+ .codicon-chevron-up:before { content: '\eab7'; }
404
+ .codicon-chrome-close:before { content: '\eab8'; }
405
+ .codicon-chrome-maximize:before { content: '\eab9'; }
406
+ .codicon-chrome-minimize:before { content: '\eaba'; }
407
+ .codicon-chrome-restore:before { content: '\eabb'; }
408
+ .codicon-circle-outline:before { content: '\eabc'; }
409
+ .codicon-circle:before { content: '\eabc'; }
410
+ .codicon-debug-breakpoint-unverified:before { content: '\eabc'; }
411
+ .codicon-terminal-decoration-incomplete:before { content: '\eabc'; }
412
+ .codicon-circle-slash:before { content: '\eabd'; }
413
+ .codicon-circuit-board:before { content: '\eabe'; }
414
+ .codicon-clear-all:before { content: '\eabf'; }
415
+ .codicon-clippy:before { content: '\eac0'; }
416
+ .codicon-close-all:before { content: '\eac1'; }
417
+ .codicon-cloud-download:before { content: '\eac2'; }
418
+ .codicon-cloud-upload:before { content: '\eac3'; }
419
+ .codicon-code:before { content: '\eac4'; }
420
+ .codicon-collapse-all:before { content: '\eac5'; }
421
+ .codicon-color-mode:before { content: '\eac6'; }
422
+ .codicon-comment-discussion:before { content: '\eac7'; }
423
+ .codicon-credit-card:before { content: '\eac9'; }
424
+ .codicon-dash:before { content: '\eacc'; }
425
+ .codicon-dashboard:before { content: '\eacd'; }
426
+ .codicon-database:before { content: '\eace'; }
427
+ .codicon-debug-continue:before { content: '\eacf'; }
428
+ .codicon-debug-disconnect:before { content: '\ead0'; }
429
+ .codicon-debug-pause:before { content: '\ead1'; }
430
+ .codicon-debug-restart:before { content: '\ead2'; }
431
+ .codicon-debug-start:before { content: '\ead3'; }
432
+ .codicon-debug-step-into:before { content: '\ead4'; }
433
+ .codicon-debug-step-out:before { content: '\ead5'; }
434
+ .codicon-debug-step-over:before { content: '\ead6'; }
435
+ .codicon-debug-stop:before { content: '\ead7'; }
436
+ .codicon-debug:before { content: '\ead8'; }
437
+ .codicon-device-camera-video:before { content: '\ead9'; }
438
+ .codicon-device-camera:before { content: '\eada'; }
439
+ .codicon-device-mobile:before { content: '\eadb'; }
440
+ .codicon-diff-added:before { content: '\eadc'; }
441
+ .codicon-diff-ignored:before { content: '\eadd'; }
442
+ .codicon-diff-modified:before { content: '\eade'; }
443
+ .codicon-diff-removed:before { content: '\eadf'; }
444
+ .codicon-diff-renamed:before { content: '\eae0'; }
445
+ .codicon-diff:before { content: '\eae1'; }
446
+ .codicon-diff-sidebyside:before { content: '\eae1'; }
447
+ .codicon-discard:before { content: '\eae2'; }
448
+ .codicon-editor-layout:before { content: '\eae3'; }
449
+ .codicon-empty-window:before { content: '\eae4'; }
450
+ .codicon-exclude:before { content: '\eae5'; }
451
+ .codicon-extensions:before { content: '\eae6'; }
452
+ .codicon-eye-closed:before { content: '\eae7'; }
453
+ .codicon-file-binary:before { content: '\eae8'; }
454
+ .codicon-file-code:before { content: '\eae9'; }
455
+ .codicon-file-media:before { content: '\eaea'; }
456
+ .codicon-file-pdf:before { content: '\eaeb'; }
457
+ .codicon-file-submodule:before { content: '\eaec'; }
458
+ .codicon-file-symlink-directory:before { content: '\eaed'; }
459
+ .codicon-file-symlink-file:before { content: '\eaee'; }
460
+ .codicon-file-zip:before { content: '\eaef'; }
461
+ .codicon-files:before { content: '\eaf0'; }
462
+ .codicon-filter:before { content: '\eaf1'; }
463
+ .codicon-flame:before { content: '\eaf2'; }
464
+ .codicon-fold-down:before { content: '\eaf3'; }
465
+ .codicon-fold-up:before { content: '\eaf4'; }
466
+ .codicon-fold:before { content: '\eaf5'; }
467
+ .codicon-folder-active:before { content: '\eaf6'; }
468
+ .codicon-folder-opened:before { content: '\eaf7'; }
469
+ .codicon-gear:before { content: '\eaf8'; }
470
+ .codicon-gift:before { content: '\eaf9'; }
471
+ .codicon-gist-secret:before { content: '\eafa'; }
472
+ .codicon-gist:before { content: '\eafb'; }
473
+ .codicon-git-commit:before { content: '\eafc'; }
474
+ .codicon-git-compare:before { content: '\eafd'; }
475
+ .codicon-compare-changes:before { content: '\eafd'; }
476
+ .codicon-git-merge:before { content: '\eafe'; }
477
+ .codicon-github-action:before { content: '\eaff'; }
478
+ .codicon-github-alt:before { content: '\eb00'; }
479
+ .codicon-globe:before { content: '\eb01'; }
480
+ .codicon-grabber:before { content: '\eb02'; }
481
+ .codicon-graph:before { content: '\eb03'; }
482
+ .codicon-gripper:before { content: '\eb04'; }
483
+ .codicon-heart:before { content: '\eb05'; }
484
+ .codicon-home:before { content: '\eb06'; }
485
+ .codicon-horizontal-rule:before { content: '\eb07'; }
486
+ .codicon-hubot:before { content: '\eb08'; }
487
+ .codicon-inbox:before { content: '\eb09'; }
488
+ .codicon-issue-reopened:before { content: '\eb0b'; }
489
+ .codicon-issues:before { content: '\eb0c'; }
490
+ .codicon-italic:before { content: '\eb0d'; }
491
+ .codicon-jersey:before { content: '\eb0e'; }
492
+ .codicon-json:before { content: '\eb0f'; }
493
+ .codicon-kebab-vertical:before { content: '\eb10'; }
494
+ .codicon-key:before { content: '\eb11'; }
495
+ .codicon-law:before { content: '\eb12'; }
496
+ .codicon-lightbulb-autofix:before { content: '\eb13'; }
497
+ .codicon-link-external:before { content: '\eb14'; }
498
+ .codicon-link:before { content: '\eb15'; }
499
+ .codicon-list-ordered:before { content: '\eb16'; }
500
+ .codicon-list-unordered:before { content: '\eb17'; }
501
+ .codicon-live-share:before { content: '\eb18'; }
502
+ .codicon-loading:before { content: '\eb19'; }
503
+ .codicon-location:before { content: '\eb1a'; }
504
+ .codicon-mail-read:before { content: '\eb1b'; }
505
+ .codicon-mail:before { content: '\eb1c'; }
506
+ .codicon-markdown:before { content: '\eb1d'; }
507
+ .codicon-megaphone:before { content: '\eb1e'; }
508
+ .codicon-mention:before { content: '\eb1f'; }
509
+ .codicon-milestone:before { content: '\eb20'; }
510
+ .codicon-git-pull-request-milestone:before { content: '\eb20'; }
511
+ .codicon-mortar-board:before { content: '\eb21'; }
512
+ .codicon-move:before { content: '\eb22'; }
513
+ .codicon-multiple-windows:before { content: '\eb23'; }
514
+ .codicon-mute:before { content: '\eb24'; }
515
+ .codicon-no-newline:before { content: '\eb25'; }
516
+ .codicon-note:before { content: '\eb26'; }
517
+ .codicon-octoface:before { content: '\eb27'; }
518
+ .codicon-open-preview:before { content: '\eb28'; }
519
+ .codicon-package:before { content: '\eb29'; }
520
+ .codicon-paintcan:before { content: '\eb2a'; }
521
+ .codicon-pin:before { content: '\eb2b'; }
522
+ .codicon-play:before { content: '\eb2c'; }
523
+ .codicon-run:before { content: '\eb2c'; }
524
+ .codicon-plug:before { content: '\eb2d'; }
525
+ .codicon-preserve-case:before { content: '\eb2e'; }
526
+ .codicon-preview:before { content: '\eb2f'; }
527
+ .codicon-project:before { content: '\eb30'; }
528
+ .codicon-pulse:before { content: '\eb31'; }
529
+ .codicon-question:before { content: '\eb32'; }
530
+ .codicon-quote:before { content: '\eb33'; }
531
+ .codicon-radio-tower:before { content: '\eb34'; }
532
+ .codicon-reactions:before { content: '\eb35'; }
533
+ .codicon-references:before { content: '\eb36'; }
534
+ .codicon-refresh:before { content: '\eb37'; }
535
+ .codicon-regex:before { content: '\eb38'; }
536
+ .codicon-remote-explorer:before { content: '\eb39'; }
537
+ .codicon-remote:before { content: '\eb3a'; }
538
+ .codicon-remove:before { content: '\eb3b'; }
539
+ .codicon-replace-all:before { content: '\eb3c'; }
540
+ .codicon-replace:before { content: '\eb3d'; }
541
+ .codicon-repo-clone:before { content: '\eb3e'; }
542
+ .codicon-repo-force-push:before { content: '\eb3f'; }
543
+ .codicon-repo-pull:before { content: '\eb40'; }
544
+ .codicon-repo-push:before { content: '\eb41'; }
545
+ .codicon-report:before { content: '\eb42'; }
546
+ .codicon-request-changes:before { content: '\eb43'; }
547
+ .codicon-rocket:before { content: '\eb44'; }
548
+ .codicon-root-folder-opened:before { content: '\eb45'; }
549
+ .codicon-root-folder:before { content: '\eb46'; }
550
+ .codicon-rss:before { content: '\eb47'; }
551
+ .codicon-ruby:before { content: '\eb48'; }
552
+ .codicon-save-all:before { content: '\eb49'; }
553
+ .codicon-save-as:before { content: '\eb4a'; }
554
+ .codicon-save:before { content: '\eb4b'; }
555
+ .codicon-screen-full:before { content: '\eb4c'; }
556
+ .codicon-screen-normal:before { content: '\eb4d'; }
557
+ .codicon-search-stop:before { content: '\eb4e'; }
558
+ .codicon-server:before { content: '\eb50'; }
559
+ .codicon-settings-gear:before { content: '\eb51'; }
560
+ .codicon-settings:before { content: '\eb52'; }
561
+ .codicon-shield:before { content: '\eb53'; }
562
+ .codicon-smiley:before { content: '\eb54'; }
563
+ .codicon-sort-precedence:before { content: '\eb55'; }
564
+ .codicon-split-horizontal:before { content: '\eb56'; }
565
+ .codicon-split-vertical:before { content: '\eb57'; }
566
+ .codicon-squirrel:before { content: '\eb58'; }
567
+ .codicon-star-full:before { content: '\eb59'; }
568
+ .codicon-star-half:before { content: '\eb5a'; }
569
+ .codicon-symbol-class:before { content: '\eb5b'; }
570
+ .codicon-symbol-color:before { content: '\eb5c'; }
571
+ .codicon-symbol-constant:before { content: '\eb5d'; }
572
+ .codicon-symbol-enum-member:before { content: '\eb5e'; }
573
+ .codicon-symbol-field:before { content: '\eb5f'; }
574
+ .codicon-symbol-file:before { content: '\eb60'; }
575
+ .codicon-symbol-interface:before { content: '\eb61'; }
576
+ .codicon-symbol-keyword:before { content: '\eb62'; }
577
+ .codicon-symbol-misc:before { content: '\eb63'; }
578
+ .codicon-symbol-operator:before { content: '\eb64'; }
579
+ .codicon-symbol-property:before { content: '\eb65'; }
580
+ .codicon-wrench:before { content: '\eb65'; }
581
+ .codicon-wrench-subaction:before { content: '\eb65'; }
582
+ .codicon-symbol-snippet:before { content: '\eb66'; }
583
+ .codicon-tasklist:before { content: '\eb67'; }
584
+ .codicon-telescope:before { content: '\eb68'; }
585
+ .codicon-text-size:before { content: '\eb69'; }
586
+ .codicon-three-bars:before { content: '\eb6a'; }
587
+ .codicon-thumbsdown:before { content: '\eb6b'; }
588
+ .codicon-thumbsup:before { content: '\eb6c'; }
589
+ .codicon-tools:before { content: '\eb6d'; }
590
+ .codicon-triangle-down:before { content: '\eb6e'; }
591
+ .codicon-triangle-left:before { content: '\eb6f'; }
592
+ .codicon-triangle-right:before { content: '\eb70'; }
593
+ .codicon-triangle-up:before { content: '\eb71'; }
594
+ .codicon-twitter:before { content: '\eb72'; }
595
+ .codicon-unfold:before { content: '\eb73'; }
596
+ .codicon-unlock:before { content: '\eb74'; }
597
+ .codicon-unmute:before { content: '\eb75'; }
598
+ .codicon-unverified:before { content: '\eb76'; }
599
+ .codicon-verified:before { content: '\eb77'; }
600
+ .codicon-versions:before { content: '\eb78'; }
601
+ .codicon-vm-active:before { content: '\eb79'; }
602
+ .codicon-vm-outline:before { content: '\eb7a'; }
603
+ .codicon-vm-running:before { content: '\eb7b'; }
604
+ .codicon-watch:before { content: '\eb7c'; }
605
+ .codicon-whitespace:before { content: '\eb7d'; }
606
+ .codicon-whole-word:before { content: '\eb7e'; }
607
+ .codicon-window:before { content: '\eb7f'; }
608
+ .codicon-word-wrap:before { content: '\eb80'; }
609
+ .codicon-zoom-in:before { content: '\eb81'; }
610
+ .codicon-zoom-out:before { content: '\eb82'; }
611
+ .codicon-list-filter:before { content: '\eb83'; }
612
+ .codicon-list-flat:before { content: '\eb84'; }
613
+ .codicon-list-selection:before { content: '\eb85'; }
614
+ .codicon-selection:before { content: '\eb85'; }
615
+ .codicon-list-tree:before { content: '\eb86'; }
616
+ .codicon-debug-breakpoint-function-unverified:before { content: '\eb87'; }
617
+ .codicon-debug-breakpoint-function:before { content: '\eb88'; }
618
+ .codicon-debug-breakpoint-function-disabled:before { content: '\eb88'; }
619
+ .codicon-debug-stackframe-active:before { content: '\eb89'; }
620
+ .codicon-circle-small-filled:before { content: '\eb8a'; }
621
+ .codicon-debug-stackframe-dot:before { content: '\eb8a'; }
622
+ .codicon-terminal-decoration-mark:before { content: '\eb8a'; }
623
+ .codicon-debug-stackframe:before { content: '\eb8b'; }
624
+ .codicon-debug-stackframe-focused:before { content: '\eb8b'; }
625
+ .codicon-debug-breakpoint-unsupported:before { content: '\eb8c'; }
626
+ .codicon-symbol-string:before { content: '\eb8d'; }
627
+ .codicon-debug-reverse-continue:before { content: '\eb8e'; }
628
+ .codicon-debug-step-back:before { content: '\eb8f'; }
629
+ .codicon-debug-restart-frame:before { content: '\eb90'; }
630
+ .codicon-debug-alt:before { content: '\eb91'; }
631
+ .codicon-call-incoming:before { content: '\eb92'; }
632
+ .codicon-call-outgoing:before { content: '\eb93'; }
633
+ .codicon-menu:before { content: '\eb94'; }
634
+ .codicon-expand-all:before { content: '\eb95'; }
635
+ .codicon-feedback:before { content: '\eb96'; }
636
+ .codicon-git-pull-request-reviewer:before { content: '\eb96'; }
637
+ .codicon-group-by-ref-type:before { content: '\eb97'; }
638
+ .codicon-ungroup-by-ref-type:before { content: '\eb98'; }
639
+ .codicon-account:before { content: '\eb99'; }
640
+ .codicon-git-pull-request-assignee:before { content: '\eb99'; }
641
+ .codicon-bell-dot:before { content: '\eb9a'; }
642
+ .codicon-debug-console:before { content: '\eb9b'; }
643
+ .codicon-library:before { content: '\eb9c'; }
644
+ .codicon-output:before { content: '\eb9d'; }
645
+ .codicon-run-all:before { content: '\eb9e'; }
646
+ .codicon-sync-ignored:before { content: '\eb9f'; }
647
+ .codicon-pinned:before { content: '\eba0'; }
648
+ .codicon-github-inverted:before { content: '\eba1'; }
649
+ .codicon-server-process:before { content: '\eba2'; }
650
+ .codicon-server-environment:before { content: '\eba3'; }
651
+ .codicon-pass:before { content: '\eba4'; }
652
+ .codicon-issue-closed:before { content: '\eba4'; }
653
+ .codicon-stop-circle:before { content: '\eba5'; }
654
+ .codicon-play-circle:before { content: '\eba6'; }
655
+ .codicon-record:before { content: '\eba7'; }
656
+ .codicon-debug-alt-small:before { content: '\eba8'; }
657
+ .codicon-vm-connect:before { content: '\eba9'; }
658
+ .codicon-cloud:before { content: '\ebaa'; }
659
+ .codicon-merge:before { content: '\ebab'; }
660
+ .codicon-export:before { content: '\ebac'; }
661
+ .codicon-graph-left:before { content: '\ebad'; }
662
+ .codicon-magnet:before { content: '\ebae'; }
663
+ .codicon-notebook:before { content: '\ebaf'; }
664
+ .codicon-redo:before { content: '\ebb0'; }
665
+ .codicon-check-all:before { content: '\ebb1'; }
666
+ .codicon-pinned-dirty:before { content: '\ebb2'; }
667
+ .codicon-pass-filled:before { content: '\ebb3'; }
668
+ .codicon-circle-large-filled:before { content: '\ebb4'; }
669
+ .codicon-circle-large:before { content: '\ebb5'; }
670
+ .codicon-circle-large-outline:before { content: '\ebb5'; }
671
+ .codicon-combine:before { content: '\ebb6'; }
672
+ .codicon-gather:before { content: '\ebb6'; }
673
+ .codicon-table:before { content: '\ebb7'; }
674
+ .codicon-variable-group:before { content: '\ebb8'; }
675
+ .codicon-type-hierarchy:before { content: '\ebb9'; }
676
+ .codicon-type-hierarchy-sub:before { content: '\ebba'; }
677
+ .codicon-type-hierarchy-super:before { content: '\ebbb'; }
678
+ .codicon-git-pull-request-create:before { content: '\ebbc'; }
679
+ .codicon-run-above:before { content: '\ebbd'; }
680
+ .codicon-run-below:before { content: '\ebbe'; }
681
+ .codicon-notebook-template:before { content: '\ebbf'; }
682
+ .codicon-debug-rerun:before { content: '\ebc0'; }
683
+ .codicon-workspace-trusted:before { content: '\ebc1'; }
684
+ .codicon-workspace-untrusted:before { content: '\ebc2'; }
685
+ .codicon-workspace-unknown:before { content: '\ebc3'; }
686
+ .codicon-terminal-cmd:before { content: '\ebc4'; }
687
+ .codicon-terminal-debian:before { content: '\ebc5'; }
688
+ .codicon-terminal-linux:before { content: '\ebc6'; }
689
+ .codicon-terminal-powershell:before { content: '\ebc7'; }
690
+ .codicon-terminal-tmux:before { content: '\ebc8'; }
691
+ .codicon-terminal-ubuntu:before { content: '\ebc9'; }
692
+ .codicon-terminal-bash:before { content: '\ebca'; }
693
+ .codicon-arrow-swap:before { content: '\ebcb'; }
694
+ .codicon-copy:before { content: '\ebcc'; }
695
+ .codicon-person-add:before { content: '\ebcd'; }
696
+ .codicon-filter-filled:before { content: '\ebce'; }
697
+ .codicon-wand:before { content: '\ebcf'; }
698
+ .codicon-debug-line-by-line:before { content: '\ebd0'; }
699
+ .codicon-inspect:before { content: '\ebd1'; }
700
+ .codicon-layers:before { content: '\ebd2'; }
701
+ .codicon-layers-dot:before { content: '\ebd3'; }
702
+ .codicon-layers-active:before { content: '\ebd4'; }
703
+ .codicon-compass:before { content: '\ebd5'; }
704
+ .codicon-compass-dot:before { content: '\ebd6'; }
705
+ .codicon-compass-active:before { content: '\ebd7'; }
706
+ .codicon-azure:before { content: '\ebd8'; }
707
+ .codicon-issue-draft:before { content: '\ebd9'; }
708
+ .codicon-git-pull-request-closed:before { content: '\ebda'; }
709
+ .codicon-git-pull-request-draft:before { content: '\ebdb'; }
710
+ .codicon-debug-all:before { content: '\ebdc'; }
711
+ .codicon-debug-coverage:before { content: '\ebdd'; }
712
+ .codicon-run-errors:before { content: '\ebde'; }
713
+ .codicon-folder-library:before { content: '\ebdf'; }
714
+ .codicon-debug-continue-small:before { content: '\ebe0'; }
715
+ .codicon-beaker-stop:before { content: '\ebe1'; }
716
+ .codicon-graph-line:before { content: '\ebe2'; }
717
+ .codicon-graph-scatter:before { content: '\ebe3'; }
718
+ .codicon-pie-chart:before { content: '\ebe4'; }
719
+ .codicon-bracket:before { content: '\eb0f'; }
720
+ .codicon-bracket-dot:before { content: '\ebe5'; }
721
+ .codicon-bracket-error:before { content: '\ebe6'; }
722
+ .codicon-lock-small:before { content: '\ebe7'; }
723
+ .codicon-azure-devops:before { content: '\ebe8'; }
724
+ .codicon-verified-filled:before { content: '\ebe9'; }
725
+ .codicon-newline:before { content: '\ebea'; }
726
+ .codicon-layout:before { content: '\ebeb'; }
727
+ .codicon-layout-activitybar-left:before { content: '\ebec'; }
728
+ .codicon-layout-activitybar-right:before { content: '\ebed'; }
729
+ .codicon-layout-panel-left:before { content: '\ebee'; }
730
+ .codicon-layout-panel-center:before { content: '\ebef'; }
731
+ .codicon-layout-panel-justify:before { content: '\ebf0'; }
732
+ .codicon-layout-panel-right:before { content: '\ebf1'; }
733
+ .codicon-layout-panel:before { content: '\ebf2'; }
734
+ .codicon-layout-sidebar-left:before { content: '\ebf3'; }
735
+ .codicon-layout-sidebar-right:before { content: '\ebf4'; }
736
+ .codicon-layout-statusbar:before { content: '\ebf5'; }
737
+ .codicon-layout-menubar:before { content: '\ebf6'; }
738
+ .codicon-layout-centered:before { content: '\ebf7'; }
739
+ .codicon-target:before { content: '\ebf8'; }
740
+ .codicon-indent:before { content: '\ebf9'; }
741
+ .codicon-record-small:before { content: '\ebfa'; }
742
+ .codicon-error-small:before { content: '\ebfb'; }
743
+ .codicon-terminal-decoration-error:before { content: '\ebfb'; }
744
+ .codicon-arrow-circle-down:before { content: '\ebfc'; }
745
+ .codicon-arrow-circle-left:before { content: '\ebfd'; }
746
+ .codicon-arrow-circle-right:before { content: '\ebfe'; }
747
+ .codicon-arrow-circle-up:before { content: '\ebff'; }
748
+ .codicon-layout-sidebar-right-off:before { content: '\ec00'; }
749
+ .codicon-layout-panel-off:before { content: '\ec01'; }
750
+ .codicon-layout-sidebar-left-off:before { content: '\ec02'; }
751
+ .codicon-blank:before { content: '\ec03'; }
752
+ .codicon-heart-filled:before { content: '\ec04'; }
753
+ .codicon-map:before { content: '\ec05'; }
754
+ .codicon-map-horizontal:before { content: '\ec05'; }
755
+ .codicon-fold-horizontal:before { content: '\ec05'; }
756
+ .codicon-map-filled:before { content: '\ec06'; }
757
+ .codicon-map-horizontal-filled:before { content: '\ec06'; }
758
+ .codicon-fold-horizontal-filled:before { content: '\ec06'; }
759
+ .codicon-circle-small:before { content: '\ec07'; }
760
+ .codicon-bell-slash:before { content: '\ec08'; }
761
+ .codicon-bell-slash-dot:before { content: '\ec09'; }
762
+ .codicon-comment-unresolved:before { content: '\ec0a'; }
763
+ .codicon-git-pull-request-go-to-changes:before { content: '\ec0b'; }
764
+ .codicon-git-pull-request-new-changes:before { content: '\ec0c'; }
765
+ .codicon-search-fuzzy:before { content: '\ec0d'; }
766
+ .codicon-comment-draft:before { content: '\ec0e'; }
767
+ .codicon-send:before { content: '\ec0f'; }
768
+ .codicon-sparkle:before { content: '\ec10'; }
769
+ .codicon-insert:before { content: '\ec11'; }
770
+ .codicon-mic:before { content: '\ec12'; }
771
+ .codicon-thumbsdown-filled:before { content: '\ec13'; }
772
+ .codicon-thumbsup-filled:before { content: '\ec14'; }
773
+ .codicon-coffee:before { content: '\ec15'; }
774
+ .codicon-snake:before { content: '\ec16'; }
775
+ .codicon-game:before { content: '\ec17'; }
776
+ .codicon-vr:before { content: '\ec18'; }
777
+ .codicon-chip:before { content: '\ec19'; }
778
+ .codicon-piano:before { content: '\ec1a'; }
779
+ .codicon-music:before { content: '\ec1b'; }
780
+ .codicon-mic-filled:before { content: '\ec1c'; }
781
+ .codicon-repo-fetch:before { content: '\ec1d'; }
782
+ .codicon-copilot:before { content: '\ec1e'; }
783
+ .codicon-lightbulb-sparkle:before { content: '\ec1f'; }
784
+ .codicon-robot:before { content: '\ec20'; }
785
+ .codicon-sparkle-filled:before { content: '\ec21'; }
786
+ .codicon-diff-single:before { content: '\ec22'; }
787
+ .codicon-diff-multiple:before { content: '\ec23'; }
788
+ .codicon-surround-with:before { content: '\ec24'; }
789
+ .codicon-share:before { content: '\ec25'; }
790
+ .codicon-git-stash:before { content: '\ec26'; }
791
+ .codicon-git-stash-apply:before { content: '\ec27'; }
792
+ .codicon-git-stash-pop:before { content: '\ec28'; }
793
+ .codicon-vscode:before { content: '\ec29'; }
794
+ .codicon-vscode-insiders:before { content: '\ec2a'; }
795
+ .codicon-code-oss:before { content: '\ec2b'; }
796
+ .codicon-run-coverage:before { content: '\ec2c'; }
797
+ .codicon-run-all-coverage:before { content: '\ec2d'; }
798
+ .codicon-coverage:before { content: '\ec2e'; }
799
+ .codicon-github-project:before { content: '\ec2f'; }
800
+ .codicon-map-vertical:before { content: '\ec30'; }
801
+ .codicon-fold-vertical:before { content: '\ec30'; }
802
+ .codicon-map-vertical-filled:before { content: '\ec31'; }
803
+ .codicon-fold-vertical-filled:before { content: '\ec31'; }
804
+ .codicon-go-to-search:before { content: '\ec32'; }
805
+ .codicon-percentage:before { content: '\ec33'; }
806
+ .codicon-sort-percentage:before { content: '\ec33'; }
807
+ .codicon-attach:before { content: '\ec34'; }
808
+ .codicon-git-fetch:before { content: '\f101'; }
809
+ /*
810
+ Copyright (c) Microsoft Corporation.
811
+
812
+ Licensed under the Apache License, Version 2.0 (the "License");
813
+ you may not use this file except in compliance with the License.
814
+ You may obtain a copy of the License at
815
+
816
+ http://www.apache.org/licenses/LICENSE-2.0
817
+
818
+ Unless required by applicable law or agreed to in writing, software
819
+ distributed under the License is distributed on an "AS IS" BASIS,
820
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
821
+ See the License for the specific language governing permissions and
822
+ limitations under the License.
823
+ */
824
+
825
+ .toolbar-button {
826
+ flex: none;
827
+ border: none;
828
+ outline: none;
829
+ color: var(--vscode-sideBarTitle-foreground);
830
+ background: transparent;
831
+ padding: 4px;
832
+ cursor: pointer;
833
+ display: inline-flex;
834
+ align-items: center;
835
+ }
836
+
837
+ .toolbar-button:disabled {
838
+ color: var(--vscode-disabledForeground) !important;
839
+ cursor: default;
840
+ }
841
+
842
+ .toolbar-button:not(:disabled):hover {
843
+ background-color: var(--vscode-toolbar-hoverBackground);
844
+ }
845
+
846
+ .toolbar-button:not(:disabled):active {
847
+ background-color: var(--vscode-toolbar-activeBackground);
848
+ }
849
+
850
+ .toolbar-button.toggled {
851
+ color: var(--vscode-notificationLink-foreground);
852
+ }
853
+
854
+ .toolbar-separator {
855
+ flex: none;
856
+ background-color: var(--vscode-menu-separatorBackground);
857
+ width: 1px;
858
+ padding: 0;
859
+ margin: 5px 4px;
860
+ height: 16px;
861
+ }
862
+ /*
863
+ Copyright (c) Microsoft Corporation.
864
+
865
+ Licensed under the Apache License, Version 2.0 (the "License");
866
+ you may not use this file except in compliance with the License.
867
+ You may obtain a copy of the License at
868
+
869
+ http://www.apache.org/licenses/LICENSE-2.0
870
+
871
+ Unless required by applicable law or agreed to in writing, software
872
+ distributed under the License is distributed on an "AS IS" BASIS,
873
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
874
+ See the License for the specific language governing permissions and
875
+ limitations under the License.
876
+ */
877
+
878
+ .split-view {
879
+ display: flex;
880
+ flex: auto;
881
+ position: relative;
882
+ }
883
+
884
+ .split-view.vertical {
885
+ flex-direction: column;
886
+ }
887
+
888
+ .split-view.vertical.sidebar-first {
889
+ flex-direction: column-reverse;
890
+ }
891
+
892
+ .split-view.horizontal {
893
+ flex-direction: row;
894
+ }
895
+
896
+ .split-view.horizontal.sidebar-first {
897
+ flex-direction: row-reverse;
898
+ }
899
+
900
+ .split-view-main {
901
+ display: flex;
902
+ flex: auto;
903
+ }
904
+
905
+ .split-view-sidebar {
906
+ display: flex;
907
+ flex: none;
908
+ }
909
+
910
+ .split-view.vertical:not(.sidebar-first) > .split-view-sidebar {
911
+ border-top: 1px solid var(--vscode-panel-border);
912
+ }
913
+
914
+ .split-view.horizontal:not(.sidebar-first) > .split-view-sidebar {
915
+ border-left: 1px solid var(--vscode-panel-border);
916
+ }
917
+
918
+ .split-view.vertical.sidebar-first > .split-view-sidebar {
919
+ border-bottom: 1px solid var(--vscode-panel-border);
920
+ }
921
+
922
+ .split-view.horizontal.sidebar-first > .split-view-sidebar {
923
+ border-right: 1px solid var(--vscode-panel-border);
924
+ }
925
+
926
+ .split-view-resizer {
927
+ position: absolute;
928
+ z-index: 100;
929
+ }
930
+
931
+ .split-view.vertical > .split-view-resizer {
932
+ left: 0;
933
+ right: 0;
934
+ height: 12px;
935
+ cursor: ns-resize;
936
+ }
937
+
938
+ .split-view.horizontal > .split-view-resizer {
939
+ top: 0;
940
+ bottom: 0;
941
+ width: 12px;
942
+ cursor: ew-resize;
943
+ }
944
+ /*
945
+ Copyright (c) Microsoft Corporation.
946
+
947
+ Licensed under the Apache License, Version 2.0 (the "License");
948
+ you may not use this file except in compliance with the License.
949
+ You may obtain a copy of the License at
950
+
951
+ http://www.apache.org/licenses/LICENSE-2.0
952
+
953
+ Unless required by applicable law or agreed to in writing, software
954
+ distributed under the License is distributed on an "AS IS" BASIS,
955
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
956
+ See the License for the specific language governing permissions and
957
+ limitations under the License.
958
+ */
959
+
960
+ .action-title {
961
+ display: block;
962
+ overflow: hidden;
963
+ text-overflow: ellipsis;
964
+ }
965
+
966
+ .action-location {
967
+ display: flex;
968
+ flex: none;
969
+ margin: 0 4px;
970
+ color: var(--vscode-foreground);
971
+ }
972
+
973
+ .action-location > span {
974
+ margin: 0 4px;
975
+ cursor: pointer;
976
+ text-decoration: underline;
977
+ }
978
+
979
+ .action-duration {
980
+ display: flex;
981
+ flex: none;
982
+ align-items: center;
983
+ margin: 0 4px;
984
+ color: var(--vscode-editorCodeLens-foreground);
985
+ }
986
+
987
+ .action-icon {
988
+ flex: none;
989
+ display: flex;
990
+ align-items: center;
991
+ padding-right: 3px;
992
+ }
993
+
994
+ .action-icons {
995
+ flex: none;
996
+ display: flex;
997
+ flex-direction: row;
998
+ cursor: pointer;
999
+ height: 20px;
1000
+ position: relative;
1001
+ top: 1px;
1002
+ border-bottom: 1px solid transparent;
1003
+ }
1004
+
1005
+ .action-icons:hover {
1006
+ border-bottom: 1px solid var(--vscode-sideBarTitle-foreground);
1007
+ }
1008
+
1009
+ .action-error {
1010
+ color: var(--vscode-errorForeground);
1011
+ position: relative;
1012
+ margin-right: 2px;
1013
+ flex: none;
1014
+ }
1015
+
1016
+ .action-selector {
1017
+ display: inline;
1018
+ flex: none;
1019
+ padding-left: 5px;
1020
+ color: var(--vscode-charts-orange);
1021
+ }
1022
+
1023
+ .action-url {
1024
+ display: inline;
1025
+ flex: none;
1026
+ padding-left: 5px;
1027
+ color: var(--vscode-charts-blue);
1028
+ }
1029
+
1030
+ .action-list-show-all {
1031
+ display: flex;
1032
+ cursor: pointer;
1033
+ height: 28px;
1034
+ align-items: center;
1035
+ }
1036
+ /*
1037
+ Copyright (c) Microsoft Corporation.
1038
+
1039
+ Licensed under the Apache License, Version 2.0 (the "License");
1040
+ you may not use this file except in compliance with the License.
1041
+ You may obtain a copy of the License at
1042
+
1043
+ http://www.apache.org/licenses/LICENSE-2.0
1044
+
1045
+ Unless required by applicable law or agreed to in writing, software
1046
+ distributed under the License is distributed on an "AS IS" BASIS,
1047
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1048
+ See the License for the specific language governing permissions and
1049
+ limitations under the License.
1050
+ */
1051
+
1052
+ .list-view-content {
1053
+ display: flex;
1054
+ flex-direction: column;
1055
+ flex: auto;
1056
+ position: relative;
1057
+ user-select: none;
1058
+ overflow: hidden auto;
1059
+ outline: 1px solid transparent;
1060
+ }
1061
+
1062
+ .list-view-entry {
1063
+ display: flex;
1064
+ flex: none;
1065
+ cursor: pointer;
1066
+ align-items: center;
1067
+ white-space: nowrap;
1068
+ line-height: 28px;
1069
+ padding-left: 5px;
1070
+ }
1071
+
1072
+ .list-view-content.not-selectable > .list-view-entry {
1073
+ cursor: inherit;
1074
+ }
1075
+
1076
+ .list-view-entry.highlighted:not(.selected) {
1077
+ background-color: var(--vscode-list-inactiveSelectionBackground) !important;
1078
+ }
1079
+
1080
+ .list-view-entry.selected {
1081
+ z-index: 10;
1082
+ }
1083
+
1084
+ .list-view-indent {
1085
+ min-width: 16px;
1086
+ }
1087
+
1088
+ .list-view-content:focus .list-view-entry.selected {
1089
+ background-color: var(--vscode-list-activeSelectionBackground);
1090
+ color: var(--vscode-list-activeSelectionForeground);
1091
+ outline: 1px solid var(--vscode-focusBorder);
1092
+ }
1093
+
1094
+ .list-view-content .list-view-entry.selected {
1095
+ background-color: var(--vscode-list-inactiveSelectionBackground);
1096
+ }
1097
+
1098
+ .list-view-content:focus .list-view-entry.selected * {
1099
+ color: var(--vscode-list-activeSelectionForeground) !important;
1100
+ background-color: transparent !important;
1101
+ }
1102
+
1103
+ .list-view-content:focus .list-view-entry.selected .codicon {
1104
+ color: var(--vscode-list-activeSelectionForeground) !important;
1105
+ }
1106
+
1107
+ .list-view-empty {
1108
+ flex: auto;
1109
+ display: flex;
1110
+ align-items: center;
1111
+ justify-content: center;
1112
+ }
1113
+
1114
+ .list-view-entry.error {
1115
+ color: var(--vscode-list-errorForeground);
1116
+ background-color: var(--vscode-inputValidation-errorBackground);
1117
+ }
1118
+
1119
+ .list-view-entry.warning {
1120
+ color: var(--vscode-list-warningForeground);
1121
+ background-color: var(--vscode-inputValidation-warningBackground);
1122
+ }
1123
+
1124
+ .list-view-entry.info {
1125
+ background-color: var(--vscode-inputValidation-infoBackground);
1126
+ }
1127
+ /*
1128
+ Copyright (c) Microsoft Corporation.
1129
+
1130
+ Licensed under the Apache License, Version 2.0 (the "License");
1131
+ you may not use this file except in compliance with the License.
1132
+ You may obtain a copy of the License at
1133
+
1134
+ http://www.apache.org/licenses/LICENSE-2.0
1135
+
1136
+ Unless required by applicable law or agreed to in writing, software
1137
+ distributed under the License is distributed on an "AS IS" BASIS,
1138
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1139
+ See the License for the specific language governing permissions and
1140
+ limitations under the License.
1141
+ */
1142
+
1143
+ .call-tab {
1144
+ flex: auto;
1145
+ line-height: 24px;
1146
+ white-space: pre;
1147
+ overflow: auto;
1148
+ user-select: text;
1149
+ }
1150
+
1151
+ .call-error {
1152
+ border-bottom: 1px solid var(--vscode-panel-border);
1153
+ padding: 3px 0 3px 12px;
1154
+ }
1155
+
1156
+ .call-error .codicon {
1157
+ color: var(--vscode-errorForeground);
1158
+ position: relative;
1159
+ top: 2px;
1160
+ margin-right: 2px;
1161
+ }
1162
+
1163
+ .call-section {
1164
+ padding-left: 6px;
1165
+ font-weight: bold;
1166
+ text-transform: uppercase;
1167
+ font-size: 10px;
1168
+ color: var(--vscode-sideBarTitle-foreground);
1169
+ line-height: 24px;
1170
+ }
1171
+
1172
+ .call-section:not(:first-child) {
1173
+ border-top: 1px solid var(--vscode-panel-border);
1174
+ }
1175
+
1176
+ .call-line {
1177
+ padding: 4px 0 4px 6px;
1178
+ display: flex;
1179
+ align-items: center;
1180
+ text-overflow: ellipsis;
1181
+ overflow: hidden;
1182
+ line-height: 18px;
1183
+ white-space: nowrap;
1184
+ max-height: 18px;
1185
+ }
1186
+
1187
+ .call-line:not(:hover) .toolbar-button.copy {
1188
+ display: none;
1189
+ }
1190
+
1191
+ .call-line .toolbar-button.copy {
1192
+ margin-left: 5px;
1193
+ transform: scale(0.8);
1194
+ }
1195
+
1196
+ .call-value {
1197
+ margin-left: 2px;
1198
+ text-overflow: ellipsis;
1199
+ overflow: hidden;
1200
+ }
1201
+
1202
+ a.call-value {
1203
+ text-decoration: none;
1204
+ }
1205
+
1206
+ a.call-value:hover {
1207
+ text-decoration: underline;
1208
+ }
1209
+
1210
+ .call-value::before {
1211
+ content: '\00a0';
1212
+ }
1213
+
1214
+ .call-value.datetime,
1215
+ .call-value.string,
1216
+ .call-value.locator {
1217
+ color: var(--vscode-charts-orange);
1218
+ }
1219
+
1220
+ .call-value.number,
1221
+ .call-value.bigint,
1222
+ .call-value.boolean,
1223
+ .call-value.symbol,
1224
+ .call-value.undefined,
1225
+ .call-value.function,
1226
+ .call-value.object {
1227
+ color: var(--vscode-charts-blue);
1228
+ }
1229
+
1230
+ .call-tab .error-message {
1231
+ padding: 5px;
1232
+ line-height: 17px;
1233
+ }
1234
+ /**
1235
+ * Copyright (c) Microsoft Corporation.
1236
+ *
1237
+ * Licensed under the Apache License, Version 2.0 (the "License");
1238
+ * you may not use this file except in compliance with the License.
1239
+ * You may obtain a copy of the License at
1240
+ *
1241
+ * http://www.apache.org/licenses/LICENSE-2.0
1242
+ *
1243
+ * Unless required by applicable law or agreed to in writing, software
1244
+ * distributed under the License is distributed on an "AS IS" BASIS,
1245
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1246
+ * See the License for the specific language governing permissions and
1247
+ * limitations under the License.
1248
+ */
1249
+
1250
+ .log-list-duration {
1251
+ display: flex;
1252
+ flex: none;
1253
+ align-items: center;
1254
+ color: var(--vscode-editorCodeLens-foreground);
1255
+ float: right;
1256
+ margin-right: 5px;
1257
+ user-select: none;
1258
+ }
1259
+
1260
+ .log-list-item {
1261
+ text-wrap: wrap;
1262
+ user-select: text;
1263
+ width: 100%;
1264
+ }
1265
+ /*
1266
+ Copyright (c) Microsoft Corporation.
1267
+
1268
+ Licensed under the Apache License, Version 2.0 (the "License");
1269
+ you may not use this file except in compliance with the License.
1270
+ You may obtain a copy of the License at
1271
+
1272
+ http://www.apache.org/licenses/LICENSE-2.0
1273
+
1274
+ Unless required by applicable law or agreed to in writing, software
1275
+ distributed under the License is distributed on an "AS IS" BASIS,
1276
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1277
+ See the License for the specific language governing permissions and
1278
+ limitations under the License.
1279
+ */
1280
+
1281
+ .error-message {
1282
+ font-family: var(--vscode-editor-font-family);
1283
+ font-weight: var(--vscode-editor-font-weight);
1284
+ font-size: var(--vscode-editor-font-size);
1285
+ white-space: pre-wrap;
1286
+ word-break: break-word;
1287
+ padding: 10px;
1288
+ }
1289
+ /*
1290
+ Copyright (c) Microsoft Corporation.
1291
+
1292
+ Licensed under the Apache License, Version 2.0 (the "License");
1293
+ you may not use this file except in compliance with the License.
1294
+ You may obtain a copy of the License at
1295
+
1296
+ http://www.apache.org/licenses/LICENSE-2.0
1297
+
1298
+ Unless required by applicable law or agreed to in writing, software
1299
+ distributed under the License is distributed on an "AS IS" BASIS,
1300
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1301
+ See the License for the specific language governing permissions and
1302
+ limitations under the License.
1303
+ */
1304
+
1305
+
1306
+ .console-tab {
1307
+ display: flex;
1308
+ flex: auto;
1309
+ white-space: pre;
1310
+ }
1311
+
1312
+ .console-line {
1313
+ width: 100%;
1314
+ user-select: text;
1315
+ }
1316
+
1317
+ .console-line .codicon {
1318
+ padding: 0 2px 0 3px;
1319
+ position: relative;
1320
+ flex: none;
1321
+ top: 3px;
1322
+ }
1323
+
1324
+ .console-line.warning .codicon {
1325
+ color: darkorange;
1326
+ }
1327
+
1328
+ .console-line-message {
1329
+ word-break: break-word;
1330
+ white-space: pre-wrap;
1331
+ position: relative;
1332
+ }
1333
+
1334
+ .console-location {
1335
+ padding-right: 3px;
1336
+ float: right;
1337
+ color: var(--vscode-editorCodeLens-foreground);
1338
+ user-select: none;
1339
+ }
1340
+
1341
+ .console-time {
1342
+ float: left;
1343
+ min-width: 50px;
1344
+ color: var(--vscode-editorCodeLens-foreground);
1345
+ user-select: none;
1346
+ }
1347
+
1348
+ .console-stack {
1349
+ white-space: pre-wrap;
1350
+ margin-left: 50px;
1351
+ }
1352
+
1353
+ .console-line .codicon.status-none::after,
1354
+ .console-line .codicon.status-error::after,
1355
+ .console-line .codicon.status-warning::after {
1356
+ display: inline-block;
1357
+ content: 'a';
1358
+ color: transparent;
1359
+ border-radius: 4px;
1360
+ width: 8px;
1361
+ height: 8px;
1362
+ position: relative;
1363
+ top: 8px;
1364
+ left: -7px;
1365
+ }
1366
+
1367
+ .console-line .codicon.status-error::after {
1368
+ background-color: var(--vscode-errorForeground);
1369
+ }
1370
+
1371
+ .console-line .codicon.status-warning::after {
1372
+ background-color: var(--vscode-list-warningForeground);
1373
+ }
1374
+ /*
1375
+ Copyright (c) Microsoft Corporation.
1376
+
1377
+ Licensed under the Apache License, Version 2.0 (the "License");
1378
+ you may not use this file except in compliance with the License.
1379
+ You may obtain a copy of the License at
1380
+
1381
+ http://www.apache.org/licenses/LICENSE-2.0
1382
+
1383
+ Unless required by applicable law or agreed to in writing, software
1384
+ distributed under the License is distributed on an "AS IS" BASIS,
1385
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1386
+ See the License for the specific language governing permissions and
1387
+ limitations under the License.
1388
+ */
1389
+
1390
+ .network-request-status-route {
1391
+ color: var(--vscode-statusBar-foreground);
1392
+ background-color: var(--vscode-statusBar-background);
1393
+ }
1394
+
1395
+ .network-request-status-route.api {
1396
+ color: var(--vscode-statusBar-foreground);
1397
+ background-color: var(--vscode-statusBarItem-remoteBackground);
1398
+ }
1399
+
1400
+ .network-grid-view .grid-view-column-method,
1401
+ .network-grid-view .grid-view-column-status {
1402
+ text-align: center;
1403
+ }
1404
+
1405
+ .network-grid-view .grid-view-column-duration,
1406
+ .network-grid-view .grid-view-column-size,
1407
+ .network-grid-view .grid-view-column-start {
1408
+ text-align: end;
1409
+ }
1410
+ /*
1411
+ Copyright (c) Microsoft Corporation.
1412
+
1413
+ Licensed under the Apache License, Version 2.0 (the "License");
1414
+ you may not use this file except in compliance with the License.
1415
+ You may obtain a copy of the License at
1416
+
1417
+ http://www.apache.org/licenses/LICENSE-2.0
1418
+
1419
+ Unless required by applicable law or agreed to in writing, software
1420
+ distributed under the License is distributed on an "AS IS" BASIS,
1421
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1422
+ See the License for the specific language governing permissions and
1423
+ limitations under the License.
1424
+ */
1425
+
1426
+ .network-request-details-tab {
1427
+ width: 100%;
1428
+ height: 100%;
1429
+ user-select: text;
1430
+ line-height: 24px;
1431
+ margin-left: 10px;
1432
+ overflow: auto;
1433
+ }
1434
+
1435
+ .network-request-details-url {
1436
+ white-space: normal;
1437
+ word-wrap: break-word;
1438
+ margin-left: 10px;
1439
+ }
1440
+
1441
+ .network-request-details-headers {
1442
+ white-space: pre;
1443
+ overflow: hidden;
1444
+ margin-left: 10px;
1445
+ }
1446
+
1447
+ .network-request-details-header {
1448
+ margin: 3px 0;
1449
+ font-weight: bold;
1450
+ }
1451
+
1452
+ .network-request-details-general {
1453
+ white-space: pre;
1454
+ margin-left: 10px;
1455
+ }
1456
+
1457
+ .network-request-details-tab .cm-wrapper {
1458
+ overflow: hidden;
1459
+ }
1460
+
1461
+ .network-font-preview {
1462
+ font-family: font-preview;
1463
+ font-size: 30px;
1464
+ line-height: 40px;
1465
+ padding: 16px;
1466
+ padding-left: 6px;
1467
+ overflow: hidden;
1468
+ text-overflow: ellipsis;
1469
+ text-align: center;
1470
+ }
1471
+
1472
+ .network-font-preview-error {
1473
+ margin-top: 8px;
1474
+ text-align: center;
1475
+ }
1476
+
1477
+ .tab-network .toolbar {
1478
+ min-height: 30px !important;
1479
+ background-color: initial !important;
1480
+ border-bottom: 1px solid var(--vscode-panel-border);
1481
+ }
1482
+
1483
+ .tab-network .toolbar::after {
1484
+ box-shadow: none !important;
1485
+ }
1486
+
1487
+ .tab-network .tabbed-pane-tab.selected {
1488
+ font-weight: bold;
1489
+ }
1490
+
1491
+ .green-circle::before,
1492
+ .red-circle::before,
1493
+ .yellow-circle::before {
1494
+ content: "";
1495
+ display: inline-block;
1496
+ width: 12px;
1497
+ height: 12px;
1498
+ border-radius: 6px;
1499
+ margin-right: 2px;
1500
+ align-self: center;
1501
+ }
1502
+
1503
+ .green-circle::before {
1504
+ background-color: var(--vscode-charts-green);
1505
+ }
1506
+
1507
+ .red-circle::before {
1508
+ background-color: var(--vscode-charts-red);
1509
+ }
1510
+
1511
+ .yellow-circle::before {
1512
+ background-color: var(--vscode-charts-yellow);
1513
+ }
1514
+ /*
1515
+ Copyright (c) Microsoft Corporation.
1516
+
1517
+ Licensed under the Apache License, Version 2.0 (the "License");
1518
+ you may not use this file except in compliance with the License.
1519
+ You may obtain a copy of the License at
1520
+
1521
+ http://www.apache.org/licenses/LICENSE-2.0
1522
+
1523
+ Unless required by applicable law or agreed to in writing, software
1524
+ distributed under the License is distributed on an "AS IS" BASIS,
1525
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1526
+ See the License for the specific language governing permissions and
1527
+ limitations under the License.
1528
+ */
1529
+
1530
+ .tabbed-pane {
1531
+ display: flex;
1532
+ flex: auto;
1533
+ overflow: hidden;
1534
+ }
1535
+
1536
+ .tabbed-pane .toolbar {
1537
+ background-color: var(--vscode-sideBar-background);
1538
+ }
1539
+
1540
+ .tabbed-pane .tab-content {
1541
+ display: flex;
1542
+ flex: auto;
1543
+ overflow: hidden;
1544
+ position: relative;
1545
+ flex-direction: column;
1546
+ }
1547
+
1548
+ .tabbed-pane-tab {
1549
+ padding: 2px 6px 0 6px;
1550
+ cursor: pointer;
1551
+ display: flex;
1552
+ align-items: center;
1553
+ justify-content: center;
1554
+ user-select: none;
1555
+ border-bottom: 2px solid transparent;
1556
+ outline: none;
1557
+ height: 100%;
1558
+ }
1559
+
1560
+ .tabbed-pane-tab-label {
1561
+ max-width: 250px;
1562
+ white-space: pre;
1563
+ overflow: hidden;
1564
+ text-overflow: ellipsis;
1565
+ display: inline-block;
1566
+ }
1567
+
1568
+ .tabbed-pane-tab.selected {
1569
+ background-color: var(--vscode-tab-activeBackground);
1570
+ }
1571
+
1572
+ .tabbed-pane-tab-counter {
1573
+ padding: 0 4px;
1574
+ background: var(--vscode-menu-separatorBackground);
1575
+ border-radius: 8px;
1576
+ height: 16px;
1577
+ margin-left: 4px;
1578
+ line-height: 16px;
1579
+ min-width: 18px;
1580
+ display: flex;
1581
+ align-items: center;
1582
+ justify-content: center;
1583
+ }
1584
+
1585
+ .tabbed-pane-tab-counter.error {
1586
+ background: var(--vscode-list-errorForeground);
1587
+ color: var(--vscode-button-foreground);
1588
+ }
1589
+ /*
1590
+ Copyright (c) Microsoft Corporation.
1591
+
1592
+ Licensed under the Apache License, Version 2.0 (the "License");
1593
+ you may not use this file except in compliance with the License.
1594
+ You may obtain a copy of the License at
1595
+
1596
+ http://www.apache.org/licenses/LICENSE-2.0
1597
+
1598
+ Unless required by applicable law or agreed to in writing, software
1599
+ distributed under the License is distributed on an "AS IS" BASIS,
1600
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1601
+ See the License for the specific language governing permissions and
1602
+ limitations under the License.
1603
+ */
1604
+
1605
+ .toolbar {
1606
+ position: relative;
1607
+ display: flex;
1608
+ color: var(--vscode-sideBarTitle-foreground);
1609
+ min-height: 35px;
1610
+ align-items: center;
1611
+ flex: none;
1612
+ padding-right: 4px;
1613
+ }
1614
+
1615
+ .toolbar:after {
1616
+ content: '';
1617
+ display: block;
1618
+ position: absolute;
1619
+ pointer-events: none;
1620
+ top: 0;
1621
+ bottom: 0;
1622
+ left: -2px;
1623
+ right: -2px;
1624
+ box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px;
1625
+ z-index: 100;
1626
+ }
1627
+
1628
+ .toolbar.no-shadow:after {
1629
+ box-shadow: none;
1630
+ }
1631
+
1632
+ .toolbar.no-min-height {
1633
+ min-height: 0;
1634
+ }
1635
+
1636
+ .toolbar input {
1637
+ padding: 0 5px;
1638
+ line-height: 24px;
1639
+ outline: none;
1640
+ margin: 0 4px;
1641
+ }
1642
+
1643
+ .toolbar select {
1644
+ background: none;
1645
+ outline: none;
1646
+ padding: 3px;
1647
+ margin: 2px;
1648
+ }
1649
+
1650
+ .toolbar input, .toolbar select {
1651
+ border: none;
1652
+ color: var(--vscode-input-foreground);
1653
+ background-color: var(--vscode-input-background);
1654
+ }
1655
+ /*
1656
+ Copyright (c) Microsoft Corporation.
1657
+
1658
+ Licensed under the Apache License, Version 2.0 (the "License");
1659
+ you may not use this file except in compliance with the License.
1660
+ You may obtain a copy of the License at
1661
+
1662
+ http://www.apache.org/licenses/LICENSE-2.0
1663
+
1664
+ Unless required by applicable law or agreed to in writing, software
1665
+ distributed under the License is distributed on an "AS IS" BASIS,
1666
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1667
+ See the License for the specific language governing permissions and
1668
+ limitations under the License.
1669
+ */
1670
+
1671
+ /*---------------------------------------------------------------------------------------------
1672
+ * Copyright (c) Microsoft Corporation. All rights reserved.
1673
+ * Licensed under the MIT License. See License.txt in the project root for license information.
1674
+ *--------------------------------------------------------------------------------------------*/
1675
+
1676
+ body {
1677
+ --vscode-font-family: system-ui, "Ubuntu", "Droid Sans", sans-serif;
1678
+ --vscode-font-weight: normal;
1679
+ --vscode-font-size: 13px;
1680
+ --vscode-editor-font-family: "Droid Sans Mono", "monospace", monospace;
1681
+ --vscode-editor-font-weight: normal;
1682
+ --vscode-editor-font-size: 14px;
1683
+ --vscode-foreground: #616161;
1684
+ --vscode-disabledForeground: rgba(97, 97, 97, 0.5);
1685
+ --vscode-errorForeground: #a1260d;
1686
+ --vscode-descriptionForeground: #717171;
1687
+ --vscode-icon-foreground: #424242;
1688
+ --vscode-focusBorder: #0090f1;
1689
+ --vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
1690
+ --vscode-textLink-foreground: #006ab1;
1691
+ --vscode-textLink-activeForeground: #006ab1;
1692
+ --vscode-textPreformat-foreground: #a31515;
1693
+ --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
1694
+ --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
1695
+ --vscode-textCodeBlock-background: rgba(220, 220, 220, 0.4);
1696
+ --vscode-widget-shadow: rgba(0, 0, 0, 0.16);
1697
+ --vscode-input-background: #ffffff;
1698
+ --vscode-input-foreground: #616161;
1699
+ --vscode-inputOption-activeBorder: #007acc;
1700
+ --vscode-inputOption-hoverBackground: rgba(184, 184, 184, 0.31);
1701
+ --vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
1702
+ --vscode-inputOption-activeForeground: #000000;
1703
+ --vscode-input-placeholderForeground: #767676;
1704
+ --vscode-inputValidation-infoBackground: #d6ecf2;
1705
+ --vscode-inputValidation-infoBorder: #007acc;
1706
+ --vscode-inputValidation-warningBackground: #f6f5d2;
1707
+ --vscode-inputValidation-warningBorder: #b89500;
1708
+ --vscode-inputValidation-errorBackground: #f2dede;
1709
+ --vscode-inputValidation-errorBorder: #be1100;
1710
+ --vscode-dropdown-background: #ffffff;
1711
+ --vscode-dropdown-border: #cecece;
1712
+ --vscode-checkbox-background: #ffffff;
1713
+ --vscode-checkbox-border: #cecece;
1714
+ --vscode-button-foreground: #ffffff;
1715
+ --vscode-button-separator: rgba(255, 255, 255, 0.4);
1716
+ --vscode-button-background: #007acc;
1717
+ --vscode-button-hoverBackground: #0062a3;
1718
+ --vscode-button-secondaryForeground: #ffffff;
1719
+ --vscode-button-secondaryBackground: #5f6a79;
1720
+ --vscode-button-secondaryHoverBackground: #4c5561;
1721
+ --vscode-badge-background: #c4c4c4;
1722
+ --vscode-badge-foreground: #333333;
1723
+ --vscode-scrollbar-shadow: #dddddd;
1724
+ --vscode-scrollbarSlider-background: rgba(100, 100, 100, 0.4);
1725
+ --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
1726
+ --vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
1727
+ --vscode-progressBar-background: #0e70c0;
1728
+ --vscode-editorError-foreground: #e51400;
1729
+ --vscode-editorWarning-foreground: #bf8803;
1730
+ --vscode-editorInfo-foreground: #1a85ff;
1731
+ --vscode-editorHint-foreground: #6c6c6c;
1732
+ --vscode-sash-hoverBorder: #0090f1;
1733
+ --vscode-editor-background: #ffffff;
1734
+ --vscode-editor-foreground: #000000;
1735
+ --vscode-editorStickyScroll-background: #ffffff;
1736
+ --vscode-editorStickyScrollHover-background: #f0f0f0;
1737
+ --vscode-editorWidget-background: #f3f3f3;
1738
+ --vscode-editorWidget-foreground: #616161;
1739
+ --vscode-editorWidget-border: #c8c8c8;
1740
+ --vscode-quickInput-background: #f3f3f3;
1741
+ --vscode-quickInput-foreground: #616161;
1742
+ --vscode-quickInputTitle-background: rgba(0, 0, 0, 0.06);
1743
+ --vscode-pickerGroup-foreground: #0066bf;
1744
+ --vscode-pickerGroup-border: #cccedb;
1745
+ --vscode-keybindingLabel-background: rgba(221, 221, 221, 0.4);
1746
+ --vscode-keybindingLabel-foreground: #555555;
1747
+ --vscode-keybindingLabel-border: rgba(204, 204, 204, 0.4);
1748
+ --vscode-keybindingLabel-bottomBorder: rgba(187, 187, 187, 0.4);
1749
+ --vscode-editor-selectionBackground: #add6ff;
1750
+ --vscode-editor-inactiveSelectionBackground: #e5ebf1;
1751
+ --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.5);
1752
+ --vscode-editor-findMatchBackground: #a8ac94;
1753
+ --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
1754
+ --vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, 0.3);
1755
+ --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
1756
+ --vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
1757
+ --vscode-editorHoverWidget-background: #f3f3f3;
1758
+ --vscode-editorHoverWidget-foreground: #616161;
1759
+ --vscode-editorHoverWidget-border: #c8c8c8;
1760
+ --vscode-editorHoverWidget-statusBarBackground: #e7e7e7;
1761
+ --vscode-editorLink-activeForeground: #0000ff;
1762
+ --vscode-editorInlayHint-foreground: rgba(51, 51, 51, 0.8);
1763
+ --vscode-editorInlayHint-background: rgba(196, 196, 196, 0.3);
1764
+ --vscode-editorInlayHint-typeForeground: rgba(51, 51, 51, 0.8);
1765
+ --vscode-editorInlayHint-typeBackground: rgba(196, 196, 196, 0.3);
1766
+ --vscode-editorInlayHint-parameterForeground: rgba(51, 51, 51, 0.8);
1767
+ --vscode-editorInlayHint-parameterBackground: rgba(196, 196, 196, 0.3);
1768
+ --vscode-editorLightBulb-foreground: #ddb100;
1769
+ --vscode-editorLightBulbAutoFix-foreground: #007acc;
1770
+ --vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.4);
1771
+ --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.3);
1772
+ --vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
1773
+ --vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
1774
+ --vscode-diffEditor-diagonalFill: rgba(34, 34, 34, 0.2);
1775
+ --vscode-list-focusOutline: #0090f1;
1776
+ --vscode-list-focusAndSelectionOutline: #90c2f9;
1777
+ --vscode-list-activeSelectionBackground: #0060c0;
1778
+ --vscode-list-activeSelectionForeground: #ffffff;
1779
+ --vscode-list-activeSelectionIconForeground: #ffffff;
1780
+ --vscode-list-inactiveSelectionBackground: #e4e6f1;
1781
+ --vscode-list-hoverBackground: #e8e8e8;
1782
+ --vscode-list-dropBackground: #d6ebff;
1783
+ --vscode-list-highlightForeground: #0066bf;
1784
+ --vscode-list-focusHighlightForeground: #bbe7ff;
1785
+ --vscode-list-invalidItemForeground: #b89500;
1786
+ --vscode-list-errorForeground: #b01011;
1787
+ --vscode-list-warningForeground: #855f00;
1788
+ --vscode-listFilterWidget-background: #f3f3f3;
1789
+ --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
1790
+ --vscode-listFilterWidget-noMatchesOutline: #be1100;
1791
+ --vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.16);
1792
+ --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
1793
+ --vscode-tree-indentGuidesStroke: #a9a9a9;
1794
+ --vscode-tree-tableColumnsBorder: rgba(97, 97, 97, 0.13);
1795
+ --vscode-tree-tableOddRowsBackground: rgba(97, 97, 97, 0.04);
1796
+ --vscode-list-deemphasizedForeground: #8e8e90;
1797
+ --vscode-quickInputList-focusForeground: #ffffff;
1798
+ --vscode-quickInputList-focusIconForeground: #ffffff;
1799
+ --vscode-quickInputList-focusBackground: #0060c0;
1800
+ --vscode-menu-foreground: #616161;
1801
+ --vscode-menu-background: #ffffff;
1802
+ --vscode-menu-selectionForeground: #ffffff;
1803
+ --vscode-menu-selectionBackground: #0060c0;
1804
+ --vscode-menu-separatorBackground: #d4d4d4;
1805
+ --vscode-toolbar-hoverBackground: rgba(184, 184, 184, 0.31);
1806
+ --vscode-toolbar-activeBackground: rgba(166, 166, 166, 0.31);
1807
+ --vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
1808
+ --vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
1809
+ --vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
1810
+ --vscode-breadcrumb-background: #ffffff;
1811
+ --vscode-breadcrumb-focusForeground: #4e4e4e;
1812
+ --vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
1813
+ --vscode-breadcrumbPicker-background: #f3f3f3;
1814
+ --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
1815
+ --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
1816
+ --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
1817
+ --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
1818
+ --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
1819
+ --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
1820
+ --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
1821
+ --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
1822
+ --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
1823
+ --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
1824
+ --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
1825
+ --vscode-minimap-findMatchHighlight: #d18616;
1826
+ --vscode-minimap-selectionOccurrenceHighlight: #c9c9c9;
1827
+ --vscode-minimap-selectionHighlight: #add6ff;
1828
+ --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
1829
+ --vscode-minimap-warningHighlight: #bf8803;
1830
+ --vscode-minimap-foregroundOpacity: #000000;
1831
+ --vscode-minimapSlider-background: rgba(100, 100, 100, 0.2);
1832
+ --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
1833
+ --vscode-minimapSlider-activeBackground: rgba(0, 0, 0, 0.3);
1834
+ --vscode-problemsErrorIcon-foreground: #e51400;
1835
+ --vscode-problemsWarningIcon-foreground: #bf8803;
1836
+ --vscode-problemsInfoIcon-foreground: #1a85ff;
1837
+ --vscode-charts-foreground: #616161;
1838
+ --vscode-charts-lines: rgba(97, 97, 97, 0.5);
1839
+ --vscode-charts-red: #e51400;
1840
+ --vscode-charts-blue: #1a85ff;
1841
+ --vscode-charts-yellow: #bf8803;
1842
+ --vscode-charts-orange: #d18616;
1843
+ --vscode-charts-green: #388a34;
1844
+ --vscode-charts-purple: #652d90;
1845
+ --vscode-editor-lineHighlightBorder: #eeeeee;
1846
+ --vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, 0.2);
1847
+ --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
1848
+ --vscode-editorCursor-foreground: #000000;
1849
+ --vscode-editorWhitespace-foreground: rgba(51, 51, 51, 0.2);
1850
+ --vscode-editorIndentGuide-background: #d3d3d3;
1851
+ --vscode-editorIndentGuide-activeBackground: #939393;
1852
+ --vscode-editorLineNumber-foreground: #237893;
1853
+ --vscode-editorActiveLineNumber-foreground: #0b216f;
1854
+ --vscode-editorLineNumber-activeForeground: #0b216f;
1855
+ --vscode-editorRuler-foreground: #d3d3d3;
1856
+ --vscode-editorCodeLens-foreground: #919191;
1857
+ --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
1858
+ --vscode-editorBracketMatch-border: #b9b9b9;
1859
+ --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
1860
+ --vscode-editorGutter-background: #ffffff;
1861
+ --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
1862
+ --vscode-editorGhostText-foreground: rgba(0, 0, 0, 0.47);
1863
+ --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
1864
+ --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
1865
+ --vscode-editorOverviewRuler-warningForeground: #bf8803;
1866
+ --vscode-editorOverviewRuler-infoForeground: #1a85ff;
1867
+ --vscode-editorBracketHighlight-foreground1: #0431fa;
1868
+ --vscode-editorBracketHighlight-foreground2: #319331;
1869
+ --vscode-editorBracketHighlight-foreground3: #7b3814;
1870
+ --vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
1871
+ --vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
1872
+ --vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
1873
+ --vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
1874
+ --vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
1875
+ --vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
1876
+ --vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
1877
+ --vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
1878
+ --vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
1879
+ --vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
1880
+ --vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
1881
+ --vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
1882
+ --vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
1883
+ --vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
1884
+ --vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
1885
+ --vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
1886
+ --vscode-editorUnicodeHighlight-border: #cea33d;
1887
+ --vscode-editorUnicodeHighlight-background: rgba(206, 163, 61, 0.08);
1888
+ --vscode-symbolIcon-arrayForeground: #616161;
1889
+ --vscode-symbolIcon-booleanForeground: #616161;
1890
+ --vscode-symbolIcon-classForeground: #d67e00;
1891
+ --vscode-symbolIcon-colorForeground: #616161;
1892
+ --vscode-symbolIcon-constantForeground: #616161;
1893
+ --vscode-symbolIcon-constructorForeground: #652d90;
1894
+ --vscode-symbolIcon-enumeratorForeground: #d67e00;
1895
+ --vscode-symbolIcon-enumeratorMemberForeground: #007acc;
1896
+ --vscode-symbolIcon-eventForeground: #d67e00;
1897
+ --vscode-symbolIcon-fieldForeground: #007acc;
1898
+ --vscode-symbolIcon-fileForeground: #616161;
1899
+ --vscode-symbolIcon-folderForeground: #616161;
1900
+ --vscode-symbolIcon-functionForeground: #652d90;
1901
+ --vscode-symbolIcon-interfaceForeground: #007acc;
1902
+ --vscode-symbolIcon-keyForeground: #616161;
1903
+ --vscode-symbolIcon-keywordForeground: #616161;
1904
+ --vscode-symbolIcon-methodForeground: #652d90;
1905
+ --vscode-symbolIcon-moduleForeground: #616161;
1906
+ --vscode-symbolIcon-namespaceForeground: #616161;
1907
+ --vscode-symbolIcon-nullForeground: #616161;
1908
+ --vscode-symbolIcon-numberForeground: #616161;
1909
+ --vscode-symbolIcon-objectForeground: #616161;
1910
+ --vscode-symbolIcon-operatorForeground: #616161;
1911
+ --vscode-symbolIcon-packageForeground: #616161;
1912
+ --vscode-symbolIcon-propertyForeground: #616161;
1913
+ --vscode-symbolIcon-referenceForeground: #616161;
1914
+ --vscode-symbolIcon-snippetForeground: #616161;
1915
+ --vscode-symbolIcon-stringForeground: #616161;
1916
+ --vscode-symbolIcon-structForeground: #616161;
1917
+ --vscode-symbolIcon-textForeground: #616161;
1918
+ --vscode-symbolIcon-typeParameterForeground: #616161;
1919
+ --vscode-symbolIcon-unitForeground: #616161;
1920
+ --vscode-symbolIcon-variableForeground: #007acc;
1921
+ --vscode-editorHoverWidget-highlightForeground: #0066bf;
1922
+ --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
1923
+ --vscode-editor-foldBackground: rgba(173, 214, 255, 0.3);
1924
+ --vscode-editorGutter-foldingControlForeground: #424242;
1925
+ --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
1926
+ --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.25);
1927
+ --vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, 0.25);
1928
+ --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
1929
+ --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
1930
+ --vscode-peekViewTitle-background: rgba(26, 133, 255, 0.1);
1931
+ --vscode-peekViewTitleLabel-foreground: #000000;
1932
+ --vscode-peekViewTitleDescription-foreground: #616161;
1933
+ --vscode-peekView-border: #1a85ff;
1934
+ --vscode-peekViewResult-background: #f3f3f3;
1935
+ --vscode-peekViewResult-lineForeground: #646465;
1936
+ --vscode-peekViewResult-fileForeground: #1e1e1e;
1937
+ --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
1938
+ --vscode-peekViewResult-selectionForeground: #6c6c6c;
1939
+ --vscode-peekViewEditor-background: #f2f8fc;
1940
+ --vscode-peekViewEditorGutter-background: #f2f8fc;
1941
+ --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
1942
+ --vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, 0.87);
1943
+ --vscode-editorMarkerNavigationError-background: #e51400;
1944
+ --vscode-editorMarkerNavigationError-headerBackground: rgba(229, 20, 0, 0.1);
1945
+ --vscode-editorMarkerNavigationWarning-background: #bf8803;
1946
+ --vscode-editorMarkerNavigationWarning-headerBackground: rgba(191, 136, 3, 0.1);
1947
+ --vscode-editorMarkerNavigationInfo-background: #1a85ff;
1948
+ --vscode-editorMarkerNavigationInfo-headerBackground: rgba(26, 133, 255, 0.1);
1949
+ --vscode-editorMarkerNavigation-background: #ffffff;
1950
+ --vscode-editorSuggestWidget-background: #f3f3f3;
1951
+ --vscode-editorSuggestWidget-border: #c8c8c8;
1952
+ --vscode-editorSuggestWidget-foreground: #000000;
1953
+ --vscode-editorSuggestWidget-selectedForeground: #ffffff;
1954
+ --vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
1955
+ --vscode-editorSuggestWidget-selectedBackground: #0060c0;
1956
+ --vscode-editorSuggestWidget-highlightForeground: #0066bf;
1957
+ --vscode-editorSuggestWidget-focusHighlightForeground: #bbe7ff;
1958
+ --vscode-editorSuggestWidgetStatus-foreground: rgba(0, 0, 0, 0.5);
1959
+ --vscode-tab-activeBackground: #ffffff;
1960
+ --vscode-tab-unfocusedActiveBackground: #ffffff;
1961
+ --vscode-tab-inactiveBackground: #ececec;
1962
+ --vscode-tab-unfocusedInactiveBackground: #ececec;
1963
+ --vscode-tab-activeForeground: #333333;
1964
+ --vscode-tab-inactiveForeground: rgba(51, 51, 51, 0.7);
1965
+ --vscode-tab-unfocusedActiveForeground: rgba(51, 51, 51, 0.7);
1966
+ --vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, 0.35);
1967
+ --vscode-tab-border: #f3f3f3;
1968
+ --vscode-tab-lastPinnedBorder: rgba(97, 97, 97, 0.19);
1969
+ --vscode-tab-activeModifiedBorder: #33aaee;
1970
+ --vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, 0.5);
1971
+ --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, 0.7);
1972
+ --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, 0.25);
1973
+ --vscode-editorPane-background: #ffffff;
1974
+ --vscode-editorGroupHeader-tabsBackground: #f3f3f3;
1975
+ --vscode-editorGroupHeader-noTabsBackground: #ffffff;
1976
+ --vscode-editorGroup-border: #e7e7e7;
1977
+ --vscode-editorGroup-dropBackground: rgba(38, 119, 203, 0.18);
1978
+ --vscode-editorGroup-dropIntoPromptForeground: #616161;
1979
+ --vscode-editorGroup-dropIntoPromptBackground: #f3f3f3;
1980
+ --vscode-sideBySideEditor-horizontalBorder: #e7e7e7;
1981
+ --vscode-sideBySideEditor-verticalBorder: #e7e7e7;
1982
+ --vscode-panel-background: #ffffff;
1983
+ --vscode-panel-border: rgba(128, 128, 128, 0.35);
1984
+ --vscode-panelTitle-activeForeground: #424242;
1985
+ --vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, 0.75);
1986
+ --vscode-panelTitle-activeBorder: #424242;
1987
+ --vscode-panelInput-border: #dddddd;
1988
+ --vscode-panel-dropBorder: #424242;
1989
+ --vscode-panelSection-dropBackground: rgba(38, 119, 203, 0.18);
1990
+ --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
1991
+ --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
1992
+ --vscode-banner-background: #004386;
1993
+ --vscode-banner-foreground: #ffffff;
1994
+ --vscode-banner-iconForeground: #1a85ff;
1995
+ --vscode-statusBar-foreground: #ffffff;
1996
+ --vscode-statusBar-noFolderForeground: #ffffff;
1997
+ --vscode-statusBar-background: #007acc;
1998
+ --vscode-statusBar-noFolderBackground: #68217a;
1999
+ --vscode-statusBar-focusBorder: #ffffff;
2000
+ --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
2001
+ --vscode-statusBarItem-focusBorder: #ffffff;
2002
+ --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
2003
+ --vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
2004
+ --vscode-statusBarItem-prominentForeground: #ffffff;
2005
+ --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
2006
+ --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
2007
+ --vscode-statusBarItem-errorBackground: #c72e0f;
2008
+ --vscode-statusBarItem-errorForeground: #ffffff;
2009
+ --vscode-statusBarItem-warningBackground: #725102;
2010
+ --vscode-statusBarItem-warningForeground: #ffffff;
2011
+ --vscode-activityBar-background: #2c2c2c;
2012
+ --vscode-activityBar-foreground: #ffffff;
2013
+ --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
2014
+ --vscode-activityBar-activeBorder: #ffffff;
2015
+ --vscode-activityBar-dropBorder: #ffffff;
2016
+ --vscode-activityBarBadge-background: #007acc;
2017
+ --vscode-activityBarBadge-foreground: #ffffff;
2018
+ --vscode-statusBarItem-remoteBackground: #16825d;
2019
+ --vscode-statusBarItem-remoteForeground: #ffffff;
2020
+ --vscode-extensionBadge-remoteBackground: #007acc;
2021
+ --vscode-extensionBadge-remoteForeground: #ffffff;
2022
+ --vscode-sideBar-background: #f3f3f3;
2023
+ --vscode-sideBarTitle-foreground: #6f6f6f;
2024
+ --vscode-sideBar-dropBackground: rgba(38, 119, 203, 0.18);
2025
+ --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
2026
+ --vscode-sideBarSectionHeader-border: rgba(97, 97, 97, 0.19);
2027
+ --vscode-titleBar-activeForeground: #333333;
2028
+ --vscode-titleBar-inactiveForeground: rgba(51, 51, 51, 0.6);
2029
+ --vscode-titleBar-activeBackground: #dddddd;
2030
+ --vscode-titleBar-inactiveBackground: rgba(221, 221, 221, 0.6);
2031
+ --vscode-menubar-selectionForeground: #333333;
2032
+ --vscode-menubar-selectionBackground: rgba(184, 184, 184, 0.31);
2033
+ --vscode-notifications-foreground: #616161;
2034
+ --vscode-notifications-background: #f3f3f3;
2035
+ --vscode-notificationLink-foreground: #006ab1;
2036
+ --vscode-notificationCenterHeader-background: #e7e7e7;
2037
+ --vscode-notifications-border: #e7e7e7;
2038
+ --vscode-notificationsErrorIcon-foreground: #e51400;
2039
+ --vscode-notificationsWarningIcon-foreground: #bf8803;
2040
+ --vscode-notificationsInfoIcon-foreground: #1a85ff;
2041
+ --vscode-commandCenter-foreground: #333333;
2042
+ --vscode-commandCenter-activeForeground: #333333;
2043
+ --vscode-commandCenter-activeBackground: rgba(184, 184, 184, 0.31);
2044
+ --vscode-commandCenter-border: rgba(128, 128, 128, 0.35);
2045
+ --vscode-editorCommentsWidget-resolvedBorder: rgba(97, 97, 97, 0.5);
2046
+ --vscode-editorCommentsWidget-unresolvedBorder: #1a85ff;
2047
+ --vscode-editorCommentsWidget-rangeBackground: rgba(26, 133, 255, 0.1);
2048
+ --vscode-editorCommentsWidget-rangeBorder: rgba(26, 133, 255, 0.4);
2049
+ --vscode-editorCommentsWidget-rangeActiveBackground: rgba(26, 133, 255, 0.1);
2050
+ --vscode-editorCommentsWidget-rangeActiveBorder: rgba(26, 133, 255, 0.4);
2051
+ --vscode-editorGutter-commentRangeForeground: #d5d8e9;
2052
+ --vscode-debugToolBar-background: #f3f3f3;
2053
+ --vscode-debugIcon-startForeground: #388a34;
2054
+ --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
2055
+ --vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
2056
+ --vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
2057
+ --vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.4);
2058
+ --vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
2059
+ --vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
2060
+ --vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
2061
+ --vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
2062
+ --vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
2063
+ --vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
2064
+ --vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
2065
+ --vscode-settings-headerForeground: #444444;
2066
+ --vscode-settings-modifiedItemIndicator: #66afe0;
2067
+ --vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
2068
+ --vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
2069
+ --vscode-settings-dropdownBackground: #ffffff;
2070
+ --vscode-settings-dropdownBorder: #cecece;
2071
+ --vscode-settings-dropdownListBorder: #c8c8c8;
2072
+ --vscode-settings-checkboxBackground: #ffffff;
2073
+ --vscode-settings-checkboxBorder: #cecece;
2074
+ --vscode-settings-textInputBackground: #ffffff;
2075
+ --vscode-settings-textInputForeground: #616161;
2076
+ --vscode-settings-textInputBorder: #cecece;
2077
+ --vscode-settings-numberInputBackground: #ffffff;
2078
+ --vscode-settings-numberInputForeground: #616161;
2079
+ --vscode-settings-numberInputBorder: #cecece;
2080
+ --vscode-settings-focusedRowBackground: rgba(232, 232, 232, 0.6);
2081
+ --vscode-settings-rowHoverBackground: rgba(232, 232, 232, 0.3);
2082
+ --vscode-settings-focusedRowBorder: rgba(0, 0, 0, 0.12);
2083
+ --vscode-terminal-foreground: #333333;
2084
+ --vscode-terminal-selectionBackground: #add6ff;
2085
+ --vscode-terminal-inactiveSelectionBackground: #e5ebf1;
2086
+ --vscode-terminalCommandDecoration-defaultBackground: rgba(0, 0, 0, 0.25);
2087
+ --vscode-terminalCommandDecoration-successBackground: #2090d3;
2088
+ --vscode-terminalCommandDecoration-errorBackground: #e51400;
2089
+ --vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
2090
+ --vscode-terminal-border: rgba(128, 128, 128, 0.35);
2091
+ --vscode-terminal-findMatchBackground: #a8ac94;
2092
+ --vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
2093
+ --vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
2094
+ --vscode-terminal-dropBackground: rgba(38, 119, 203, 0.18);
2095
+ --vscode-testing-iconFailed: #f14c4c;
2096
+ --vscode-testing-iconErrored: #f14c4c;
2097
+ --vscode-testing-iconPassed: #73c991;
2098
+ --vscode-testing-runAction: #73c991;
2099
+ --vscode-testing-iconQueued: #cca700;
2100
+ --vscode-testing-iconUnset: #848484;
2101
+ --vscode-testing-iconSkipped: #848484;
2102
+ --vscode-testing-peekBorder: #e51400;
2103
+ --vscode-testing-peekHeaderBackground: rgba(229, 20, 0, 0.1);
2104
+ --vscode-testing-message\.error\.decorationForeground: #e51400;
2105
+ --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
2106
+ --vscode-testing-message\.info\.decorationForeground: rgba(0, 0, 0, 0.5);
2107
+ --vscode-welcomePage-tileBackground: #f3f3f3;
2108
+ --vscode-welcomePage-tileHoverBackground: #dbdbdb;
2109
+ --vscode-welcomePage-tileShadow: rgba(0, 0, 0, 0.16);
2110
+ --vscode-welcomePage-progress\.background: #ffffff;
2111
+ --vscode-welcomePage-progress\.foreground: #006ab1;
2112
+ --vscode-debugExceptionWidget-border: #a31515;
2113
+ --vscode-debugExceptionWidget-background: #f1dfde;
2114
+ --vscode-ports-iconRunningProcessForeground: #369432;
2115
+ --vscode-statusBar-debuggingBackground: #cc6633;
2116
+ --vscode-statusBar-debuggingForeground: #ffffff;
2117
+ --vscode-editor-inlineValuesForeground: rgba(0, 0, 0, 0.5);
2118
+ --vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
2119
+ --vscode-editorGutter-modifiedBackground: #2090d3;
2120
+ --vscode-editorGutter-addedBackground: #48985d;
2121
+ --vscode-editorGutter-deletedBackground: #e51400;
2122
+ --vscode-minimapGutter-modifiedBackground: #2090d3;
2123
+ --vscode-minimapGutter-addedBackground: #48985d;
2124
+ --vscode-minimapGutter-deletedBackground: #e51400;
2125
+ --vscode-editorOverviewRuler-modifiedForeground: rgba(32, 144, 211, 0.6);
2126
+ --vscode-editorOverviewRuler-addedForeground: rgba(72, 152, 93, 0.6);
2127
+ --vscode-editorOverviewRuler-deletedForeground: rgba(229, 20, 0, 0.6);
2128
+ --vscode-debugIcon-breakpointForeground: #e51400;
2129
+ --vscode-debugIcon-breakpointDisabledForeground: #848484;
2130
+ --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
2131
+ --vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;
2132
+ --vscode-debugIcon-breakpointStackframeForeground: #89d185;
2133
+ --vscode-notebook-cellBorderColor: #e8e8e8;
2134
+ --vscode-notebook-focusedEditorBorder: #0090f1;
2135
+ --vscode-notebookStatusSuccessIcon-foreground: #388a34;
2136
+ --vscode-notebookStatusErrorIcon-foreground: #a1260d;
2137
+ --vscode-notebookStatusRunningIcon-foreground: #616161;
2138
+ --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
2139
+ --vscode-notebook-selectedCellBackground: rgba(200, 221, 241, 0.31);
2140
+ --vscode-notebook-selectedCellBorder: #e8e8e8;
2141
+ --vscode-notebook-focusedCellBorder: #0090f1;
2142
+ --vscode-notebook-inactiveFocusedCellBorder: #e8e8e8;
2143
+ --vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, 0.08);
2144
+ --vscode-notebook-cellInsertionIndicator: #0090f1;
2145
+ --vscode-notebookScrollbarSlider-background: rgba(100, 100, 100, 0.4);
2146
+ --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
2147
+ --vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
2148
+ --vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, 0.2);
2149
+ --vscode-notebook-cellEditorBackground: #f3f3f3;
2150
+ --vscode-notebook-editorBackground: #ffffff;
2151
+ --vscode-keybindingTable-headerBackground: rgba(97, 97, 97, 0.04);
2152
+ --vscode-keybindingTable-rowsBackground: rgba(97, 97, 97, 0.04);
2153
+ --vscode-scm-providerBorder: #c8c8c8;
2154
+ --vscode-searchEditor-textInputBorder: #cecece;
2155
+ --vscode-debugTokenExpression-name: #9b46b0;
2156
+ --vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
2157
+ --vscode-debugTokenExpression-string: #a31515;
2158
+ --vscode-debugTokenExpression-boolean: #0000ff;
2159
+ --vscode-debugTokenExpression-number: #098658;
2160
+ --vscode-debugTokenExpression-error: #e51400;
2161
+ --vscode-debugView-exceptionLabelForeground: #ffffff;
2162
+ --vscode-debugView-exceptionLabelBackground: #a31515;
2163
+ --vscode-debugView-stateLabelForeground: #616161;
2164
+ --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
2165
+ --vscode-debugView-valueChangedHighlight: #569cd6;
2166
+ --vscode-debugConsole-infoForeground: #1a85ff;
2167
+ --vscode-debugConsole-warningForeground: #bf8803;
2168
+ --vscode-debugConsole-errorForeground: #a1260d;
2169
+ --vscode-debugConsole-sourceForeground: #616161;
2170
+ --vscode-debugConsoleInputIcon-foreground: #616161;
2171
+ --vscode-debugIcon-pauseForeground: #007acc;
2172
+ --vscode-debugIcon-stopForeground: #a1260d;
2173
+ --vscode-debugIcon-disconnectForeground: #a1260d;
2174
+ --vscode-debugIcon-restartForeground: #388a34;
2175
+ --vscode-debugIcon-stepOverForeground: #007acc;
2176
+ --vscode-debugIcon-stepIntoForeground: #007acc;
2177
+ --vscode-debugIcon-stepOutForeground: #007acc;
2178
+ --vscode-debugIcon-continueForeground: #007acc;
2179
+ --vscode-debugIcon-stepBackForeground: #007acc;
2180
+ --vscode-extensionButton-prominentBackground: #007acc;
2181
+ --vscode-extensionButton-prominentForeground: #ffffff;
2182
+ --vscode-extensionButton-prominentHoverBackground: #0062a3;
2183
+ --vscode-extensionIcon-starForeground: #df6100;
2184
+ --vscode-extensionIcon-verifiedForeground: #006ab1;
2185
+ --vscode-extensionIcon-preReleaseForeground: #1d9271;
2186
+ --vscode-extensionIcon-sponsorForeground: #b51e78;
2187
+ --vscode-terminal-ansiBlack: #000000;
2188
+ --vscode-terminal-ansiRed: #cd3131;
2189
+ --vscode-terminal-ansiGreen: #00bc00;
2190
+ --vscode-terminal-ansiYellow: #949800;
2191
+ --vscode-terminal-ansiBlue: #0451a5;
2192
+ --vscode-terminal-ansiMagenta: #bc05bc;
2193
+ --vscode-terminal-ansiCyan: #0598bc;
2194
+ --vscode-terminal-ansiWhite: #555555;
2195
+ --vscode-terminal-ansiBrightBlack: #666666;
2196
+ --vscode-terminal-ansiBrightRed: #cd3131;
2197
+ --vscode-terminal-ansiBrightGreen: #14ce14;
2198
+ --vscode-terminal-ansiBrightYellow: #b5ba00;
2199
+ --vscode-terminal-ansiBrightBlue: #0451a5;
2200
+ --vscode-terminal-ansiBrightMagenta: #bc05bc;
2201
+ --vscode-terminal-ansiBrightCyan: #0598bc;
2202
+ --vscode-terminal-ansiBrightWhite: #a5a5a5;
2203
+ --vscode-interactive-activeCodeBorder: #1a85ff;
2204
+ --vscode-interactive-inactiveCodeBorder: #e4e6f1;
2205
+ --vscode-gitDecoration-addedResourceForeground: #587c0c;
2206
+ --vscode-gitDecoration-modifiedResourceForeground: #895503;
2207
+ --vscode-gitDecoration-deletedResourceForeground: #ad0707;
2208
+ --vscode-gitDecoration-renamedResourceForeground: #007100;
2209
+ --vscode-gitDecoration-untrackedResourceForeground: #007100;
2210
+ --vscode-gitDecoration-ignoredResourceForeground: #8e8e90;
2211
+ --vscode-gitDecoration-stageModifiedResourceForeground: #895503;
2212
+ --vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;
2213
+ --vscode-gitDecoration-conflictingResourceForeground: #ad0707;
2214
+ --vscode-gitDecoration-submoduleResourceForeground: #1258a7;
2215
+ }
2216
+
2217
+ body.dark-mode {
2218
+ --vscode-font-family: system-ui, "Ubuntu", "Droid Sans", sans-serif;
2219
+ --vscode-font-weight: normal;
2220
+ --vscode-font-size: 13px;
2221
+ --vscode-editor-font-family: "Droid Sans Mono", "monospace", monospace;
2222
+ --vscode-editor-font-weight: normal;
2223
+ --vscode-editor-font-size: 14px;
2224
+ --vscode-foreground: #cccccc;
2225
+ --vscode-disabledForeground: rgba(204, 204, 204, 0.5);
2226
+ --vscode-errorForeground: #f48771;
2227
+ --vscode-descriptionForeground: rgba(204, 204, 204, 0.7);
2228
+ --vscode-icon-foreground: #c5c5c5;
2229
+ --vscode-focusBorder: #007fd4;
2230
+ --vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
2231
+ --vscode-textLink-foreground: #3794ff;
2232
+ --vscode-textLink-activeForeground: #3794ff;
2233
+ --vscode-textPreformat-foreground: #d7ba7d;
2234
+ --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
2235
+ --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
2236
+ --vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4);
2237
+ --vscode-widget-shadow: rgba(0, 0, 0, 0.36);
2238
+ --vscode-input-background: #3c3c3c;
2239
+ --vscode-input-foreground: #cccccc;
2240
+ --vscode-inputOption-activeBorder: #007acc;
2241
+ --vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
2242
+ --vscode-inputOption-activeBackground: rgba(0, 127, 212, 0.4);
2243
+ --vscode-inputOption-activeForeground: #ffffff;
2244
+ --vscode-input-placeholderForeground: #a6a6a6;
2245
+ --vscode-inputValidation-infoBackground: #063b49;
2246
+ --vscode-inputValidation-infoBorder: #007acc;
2247
+ --vscode-inputValidation-warningBackground: #352a05;
2248
+ --vscode-inputValidation-warningBorder: #b89500;
2249
+ --vscode-inputValidation-errorBackground: #5a1d1d;
2250
+ --vscode-inputValidation-errorBorder: #be1100;
2251
+ --vscode-dropdown-background: #3c3c3c;
2252
+ --vscode-dropdown-foreground: #f0f0f0;
2253
+ --vscode-dropdown-border: #3c3c3c;
2254
+ --vscode-checkbox-background: #3c3c3c;
2255
+ --vscode-checkbox-foreground: #f0f0f0;
2256
+ --vscode-checkbox-border: #3c3c3c;
2257
+ --vscode-button-foreground: #ffffff;
2258
+ --vscode-button-separator: rgba(255, 255, 255, 0.4);
2259
+ --vscode-button-background: #0e639c;
2260
+ --vscode-button-hoverBackground: #1177bb;
2261
+ --vscode-button-secondaryForeground: #ffffff;
2262
+ --vscode-button-secondaryBackground: #3a3d41;
2263
+ --vscode-button-secondaryHoverBackground: #45494e;
2264
+ --vscode-badge-background: #4d4d4d;
2265
+ --vscode-badge-foreground: #ffffff;
2266
+ --vscode-scrollbar-shadow: #000000;
2267
+ --vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
2268
+ --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
2269
+ --vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
2270
+ --vscode-progressBar-background: #0e70c0;
2271
+ --vscode-editorError-foreground: #f14c4c;
2272
+ --vscode-editorWarning-foreground: #cca700;
2273
+ --vscode-editorInfo-foreground: #3794ff;
2274
+ --vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
2275
+ --vscode-sash-hoverBorder: #007fd4;
2276
+ --vscode-editor-background: #1e1e1e;
2277
+ --vscode-editor-foreground: #d4d4d4;
2278
+ --vscode-editorStickyScroll-background: #1e1e1e;
2279
+ --vscode-editorStickyScrollHover-background: #2a2d2e;
2280
+ --vscode-editorWidget-background: #252526;
2281
+ --vscode-editorWidget-foreground: #cccccc;
2282
+ --vscode-editorWidget-border: #454545;
2283
+ --vscode-quickInput-background: #252526;
2284
+ --vscode-quickInput-foreground: #cccccc;
2285
+ --vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
2286
+ --vscode-pickerGroup-foreground: #3794ff;
2287
+ --vscode-pickerGroup-border: #3f3f46;
2288
+ --vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
2289
+ --vscode-keybindingLabel-foreground: #cccccc;
2290
+ --vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
2291
+ --vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
2292
+ --vscode-editor-selectionBackground: #264f78;
2293
+ --vscode-editor-inactiveSelectionBackground: #3a3d41;
2294
+ --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
2295
+ --vscode-editor-findMatchBackground: #515c6a;
2296
+ --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
2297
+ --vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
2298
+ --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
2299
+ --vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
2300
+ --vscode-editorHoverWidget-background: #252526;
2301
+ --vscode-editorHoverWidget-foreground: #cccccc;
2302
+ --vscode-editorHoverWidget-border: #454545;
2303
+ --vscode-editorHoverWidget-statusBarBackground: #2c2c2d;
2304
+ --vscode-editorLink-activeForeground: #4e94ce;
2305
+ --vscode-editorInlayHint-foreground: rgba(255, 255, 255, 0.8);
2306
+ --vscode-editorInlayHint-background: rgba(77, 77, 77, 0.6);
2307
+ --vscode-editorInlayHint-typeForeground: rgba(255, 255, 255, 0.8);
2308
+ --vscode-editorInlayHint-typeBackground: rgba(77, 77, 77, 0.6);
2309
+ --vscode-editorInlayHint-parameterForeground: rgba(255, 255, 255, 0.8);
2310
+ --vscode-editorInlayHint-parameterBackground: rgba(77, 77, 77, 0.6);
2311
+ --vscode-editorLightBulb-foreground: #ffcc00;
2312
+ --vscode-editorLightBulbAutoFix-foreground: #75beff;
2313
+ --vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.2);
2314
+ --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.4);
2315
+ --vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
2316
+ --vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
2317
+ --vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
2318
+ --vscode-list-focusOutline: #007fd4;
2319
+ --vscode-list-activeSelectionBackground: #04395e;
2320
+ --vscode-list-activeSelectionForeground: #ffffff;
2321
+ --vscode-list-activeSelectionIconForeground: #ffffff;
2322
+ --vscode-list-inactiveSelectionBackground: #37373d;
2323
+ --vscode-list-hoverBackground: #2a2d2e;
2324
+ --vscode-list-dropBackground: #383b3d;
2325
+ --vscode-list-highlightForeground: #2aaaff;
2326
+ --vscode-list-focusHighlightForeground: #2aaaff;
2327
+ --vscode-list-invalidItemForeground: #b89500;
2328
+ --vscode-list-errorForeground: #f88070;
2329
+ --vscode-list-warningForeground: #cca700;
2330
+ --vscode-listFilterWidget-background: #252526;
2331
+ --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
2332
+ --vscode-listFilterWidget-noMatchesOutline: #be1100;
2333
+ --vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
2334
+ --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
2335
+ --vscode-tree-indentGuidesStroke: #585858;
2336
+ --vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
2337
+ --vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
2338
+ --vscode-list-deemphasizedForeground: #8c8c8c;
2339
+ --vscode-quickInputList-focusForeground: #ffffff;
2340
+ --vscode-quickInputList-focusIconForeground: #ffffff;
2341
+ --vscode-quickInputList-focusBackground: #04395e;
2342
+ --vscode-menu-foreground: #cccccc;
2343
+ --vscode-menu-background: #303031;
2344
+ --vscode-menu-selectionForeground: #ffffff;
2345
+ --vscode-menu-selectionBackground: #04395e;
2346
+ --vscode-menu-separatorBackground: #606060;
2347
+ --vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
2348
+ --vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
2349
+ --vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
2350
+ --vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
2351
+ --vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
2352
+ --vscode-breadcrumb-background: #1e1e1e;
2353
+ --vscode-breadcrumb-focusForeground: #e0e0e0;
2354
+ --vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
2355
+ --vscode-breadcrumbPicker-background: #252526;
2356
+ --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
2357
+ --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
2358
+ --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
2359
+ --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
2360
+ --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
2361
+ --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
2362
+ --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
2363
+ --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
2364
+ --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
2365
+ --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
2366
+ --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
2367
+ --vscode-minimap-findMatchHighlight: #d18616;
2368
+ --vscode-minimap-selectionOccurrenceHighlight: #676767;
2369
+ --vscode-minimap-selectionHighlight: #264f78;
2370
+ --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
2371
+ --vscode-minimap-warningHighlight: #cca700;
2372
+ --vscode-minimap-foregroundOpacity: #000000;
2373
+ --vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
2374
+ --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
2375
+ --vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
2376
+ --vscode-problemsErrorIcon-foreground: #f14c4c;
2377
+ --vscode-problemsWarningIcon-foreground: #cca700;
2378
+ --vscode-problemsInfoIcon-foreground: #3794ff;
2379
+ --vscode-charts-foreground: #cccccc;
2380
+ --vscode-charts-lines: rgba(204, 204, 204, 0.5);
2381
+ --vscode-charts-red: #f14c4c;
2382
+ --vscode-charts-blue: #3794ff;
2383
+ --vscode-charts-yellow: #cca700;
2384
+ --vscode-charts-orange: #d18616;
2385
+ --vscode-charts-green: #89d185;
2386
+ --vscode-charts-purple: #b180d7;
2387
+ --vscode-editor-lineHighlightBorder: #282828;
2388
+ --vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
2389
+ --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
2390
+ --vscode-editorCursor-foreground: #aeafad;
2391
+ --vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
2392
+ --vscode-editorIndentGuide-background: #404040;
2393
+ --vscode-editorIndentGuide-activeBackground: #707070;
2394
+ --vscode-editorLineNumber-foreground: #858585;
2395
+ --vscode-editorActiveLineNumber-foreground: #c6c6c6;
2396
+ --vscode-editorLineNumber-activeForeground: #c6c6c6;
2397
+ --vscode-editorRuler-foreground: #5a5a5a;
2398
+ --vscode-editorCodeLens-foreground: #999999;
2399
+ --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
2400
+ --vscode-editorBracketMatch-border: #888888;
2401
+ --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
2402
+ --vscode-editorGutter-background: #1e1e1e;
2403
+ --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
2404
+ --vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
2405
+ --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
2406
+ --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
2407
+ --vscode-editorOverviewRuler-warningForeground: #cca700;
2408
+ --vscode-editorOverviewRuler-infoForeground: #3794ff;
2409
+ --vscode-editorBracketHighlight-foreground1: #ffd700;
2410
+ --vscode-editorBracketHighlight-foreground2: #da70d6;
2411
+ --vscode-editorBracketHighlight-foreground3: #179fff;
2412
+ --vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
2413
+ --vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
2414
+ --vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
2415
+ --vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
2416
+ --vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
2417
+ --vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
2418
+ --vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
2419
+ --vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
2420
+ --vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
2421
+ --vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
2422
+ --vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
2423
+ --vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
2424
+ --vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
2425
+ --vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
2426
+ --vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
2427
+ --vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
2428
+ --vscode-editorUnicodeHighlight-border: #bd9b03;
2429
+ --vscode-editorUnicodeHighlight-background: rgba(189, 155, 3, 0.15);
2430
+ --vscode-symbolIcon-arrayForeground: #cccccc;
2431
+ --vscode-symbolIcon-booleanForeground: #cccccc;
2432
+ --vscode-symbolIcon-classForeground: #ee9d28;
2433
+ --vscode-symbolIcon-colorForeground: #cccccc;
2434
+ --vscode-symbolIcon-constantForeground: #cccccc;
2435
+ --vscode-symbolIcon-constructorForeground: #b180d7;
2436
+ --vscode-symbolIcon-enumeratorForeground: #ee9d28;
2437
+ --vscode-symbolIcon-enumeratorMemberForeground: #75beff;
2438
+ --vscode-symbolIcon-eventForeground: #ee9d28;
2439
+ --vscode-symbolIcon-fieldForeground: #75beff;
2440
+ --vscode-symbolIcon-fileForeground: #cccccc;
2441
+ --vscode-symbolIcon-folderForeground: #cccccc;
2442
+ --vscode-symbolIcon-functionForeground: #b180d7;
2443
+ --vscode-symbolIcon-interfaceForeground: #75beff;
2444
+ --vscode-symbolIcon-keyForeground: #cccccc;
2445
+ --vscode-symbolIcon-keywordForeground: #cccccc;
2446
+ --vscode-symbolIcon-methodForeground: #b180d7;
2447
+ --vscode-symbolIcon-moduleForeground: #cccccc;
2448
+ --vscode-symbolIcon-namespaceForeground: #cccccc;
2449
+ --vscode-symbolIcon-nullForeground: #cccccc;
2450
+ --vscode-symbolIcon-numberForeground: #cccccc;
2451
+ --vscode-symbolIcon-objectForeground: #cccccc;
2452
+ --vscode-symbolIcon-operatorForeground: #cccccc;
2453
+ --vscode-symbolIcon-packageForeground: #cccccc;
2454
+ --vscode-symbolIcon-propertyForeground: #cccccc;
2455
+ --vscode-symbolIcon-referenceForeground: #cccccc;
2456
+ --vscode-symbolIcon-snippetForeground: #cccccc;
2457
+ --vscode-symbolIcon-stringForeground: #cccccc;
2458
+ --vscode-symbolIcon-structForeground: #cccccc;
2459
+ --vscode-symbolIcon-textForeground: #cccccc;
2460
+ --vscode-symbolIcon-typeParameterForeground: #cccccc;
2461
+ --vscode-symbolIcon-unitForeground: #cccccc;
2462
+ --vscode-symbolIcon-variableForeground: #75beff;
2463
+ --vscode-editorHoverWidget-highlightForeground: #2aaaff;
2464
+ --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
2465
+ --vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
2466
+ --vscode-editorGutter-foldingControlForeground: #c5c5c5;
2467
+ --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
2468
+ --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
2469
+ --vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
2470
+ --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
2471
+ --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
2472
+ --vscode-peekViewTitle-background: rgba(55, 148, 255, 0.1);
2473
+ --vscode-peekViewTitleLabel-foreground: #ffffff;
2474
+ --vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
2475
+ --vscode-peekView-border: #3794ff;
2476
+ --vscode-peekViewResult-background: #252526;
2477
+ --vscode-peekViewResult-lineForeground: #bbbbbb;
2478
+ --vscode-peekViewResult-fileForeground: #ffffff;
2479
+ --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
2480
+ --vscode-peekViewResult-selectionForeground: #ffffff;
2481
+ --vscode-peekViewEditor-background: #001f33;
2482
+ --vscode-peekViewEditorGutter-background: #001f33;
2483
+ --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
2484
+ --vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, 0.6);
2485
+ --vscode-editorMarkerNavigationError-background: #f14c4c;
2486
+ --vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, 0.1);
2487
+ --vscode-editorMarkerNavigationWarning-background: #cca700;
2488
+ --vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, 0.1);
2489
+ --vscode-editorMarkerNavigationInfo-background: #3794ff;
2490
+ --vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1);
2491
+ --vscode-editorMarkerNavigation-background: #1e1e1e;
2492
+ --vscode-editorSuggestWidget-background: #252526;
2493
+ --vscode-editorSuggestWidget-border: #454545;
2494
+ --vscode-editorSuggestWidget-foreground: #d4d4d4;
2495
+ --vscode-editorSuggestWidget-selectedForeground: #ffffff;
2496
+ --vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
2497
+ --vscode-editorSuggestWidget-selectedBackground: #04395e;
2498
+ --vscode-editorSuggestWidget-highlightForeground: #2aaaff;
2499
+ --vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;
2500
+ --vscode-editorSuggestWidgetStatus-foreground: rgba(212, 212, 212, 0.5);
2501
+ --vscode-tab-activeBackground: #1e1e1e;
2502
+ --vscode-tab-unfocusedActiveBackground: #1e1e1e;
2503
+ --vscode-tab-inactiveBackground: #2d2d2d;
2504
+ --vscode-tab-unfocusedInactiveBackground: #2d2d2d;
2505
+ --vscode-tab-activeForeground: #ffffff;
2506
+ --vscode-tab-inactiveForeground: rgba(255, 255, 255, 0.5);
2507
+ --vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, 0.5);
2508
+ --vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, 0.25);
2509
+ --vscode-tab-border: #252526;
2510
+ --vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
2511
+ --vscode-tab-activeModifiedBorder: #3399cc;
2512
+ --vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
2513
+ --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
2514
+ --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
2515
+ --vscode-editorPane-background: #1e1e1e;
2516
+ --vscode-editorGroupHeader-tabsBackground: #252526;
2517
+ --vscode-editorGroupHeader-noTabsBackground: #1e1e1e;
2518
+ --vscode-editorGroup-border: #444444;
2519
+ --vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
2520
+ --vscode-editorGroup-dropIntoPromptForeground: #cccccc;
2521
+ --vscode-editorGroup-dropIntoPromptBackground: #252526;
2522
+ --vscode-sideBySideEditor-horizontalBorder: #444444;
2523
+ --vscode-sideBySideEditor-verticalBorder: #444444;
2524
+ --vscode-panel-background: #1e1e1e;
2525
+ --vscode-panel-border: rgba(128, 128, 128, 0.35);
2526
+ --vscode-panelTitle-activeForeground: #e7e7e7;
2527
+ --vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, 0.6);
2528
+ --vscode-panelTitle-activeBorder: #e7e7e7;
2529
+ --vscode-panel-dropBorder: #e7e7e7;
2530
+ --vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
2531
+ --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
2532
+ --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
2533
+ --vscode-banner-background: #04395e;
2534
+ --vscode-banner-foreground: #ffffff;
2535
+ --vscode-banner-iconForeground: #3794ff;
2536
+ --vscode-statusBar-foreground: #ffffff;
2537
+ --vscode-statusBar-noFolderForeground: #ffffff;
2538
+ --vscode-statusBar-background: #007acc;
2539
+ --vscode-statusBar-noFolderBackground: #68217a;
2540
+ --vscode-statusBar-focusBorder: #ffffff;
2541
+ --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
2542
+ --vscode-statusBarItem-focusBorder: #ffffff;
2543
+ --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
2544
+ --vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
2545
+ --vscode-statusBarItem-prominentForeground: #ffffff;
2546
+ --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
2547
+ --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
2548
+ --vscode-statusBarItem-errorBackground: #c72e0f;
2549
+ --vscode-statusBarItem-errorForeground: #ffffff;
2550
+ --vscode-statusBarItem-warningBackground: #7a6400;
2551
+ --vscode-statusBarItem-warningForeground: #ffffff;
2552
+ --vscode-activityBar-background: #333333;
2553
+ --vscode-activityBar-foreground: #ffffff;
2554
+ --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
2555
+ --vscode-activityBar-activeBorder: #ffffff;
2556
+ --vscode-activityBar-dropBorder: #ffffff;
2557
+ --vscode-activityBarBadge-background: #007acc;
2558
+ --vscode-activityBarBadge-foreground: #ffffff;
2559
+ --vscode-statusBarItem-remoteBackground: #16825d;
2560
+ --vscode-statusBarItem-remoteForeground: #ffffff;
2561
+ --vscode-extensionBadge-remoteBackground: #007acc;
2562
+ --vscode-extensionBadge-remoteForeground: #ffffff;
2563
+ --vscode-sideBar-background: #252526;
2564
+ --vscode-sideBarTitle-foreground: #bbbbbb;
2565
+ --vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
2566
+ --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
2567
+ --vscode-sideBarSectionHeader-border: rgba(204, 204, 204, 0.2);
2568
+ --vscode-titleBar-activeForeground: #cccccc;
2569
+ --vscode-titleBar-inactiveForeground: rgba(204, 204, 204, 0.6);
2570
+ --vscode-titleBar-activeBackground: #3c3c3c;
2571
+ --vscode-titleBar-inactiveBackground: rgba(60, 60, 60, 0.6);
2572
+ --vscode-menubar-selectionForeground: #cccccc;
2573
+ --vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
2574
+ --vscode-notifications-foreground: #cccccc;
2575
+ --vscode-notifications-background: #252526;
2576
+ --vscode-notificationLink-foreground: #3794ff;
2577
+ --vscode-notificationCenterHeader-background: #303031;
2578
+ --vscode-notifications-border: #303031;
2579
+ --vscode-notificationsErrorIcon-foreground: #f14c4c;
2580
+ --vscode-notificationsWarningIcon-foreground: #cca700;
2581
+ --vscode-notificationsInfoIcon-foreground: #3794ff;
2582
+ --vscode-commandCenter-foreground: #cccccc;
2583
+ --vscode-commandCenter-activeForeground: #cccccc;
2584
+ --vscode-commandCenter-activeBackground: rgba(90, 93, 94, 0.31);
2585
+ --vscode-commandCenter-border: rgba(128, 128, 128, 0.35);
2586
+ --vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
2587
+ --vscode-editorCommentsWidget-unresolvedBorder: #3794ff;
2588
+ --vscode-editorCommentsWidget-rangeBackground: rgba(55, 148, 255, 0.1);
2589
+ --vscode-editorCommentsWidget-rangeBorder: rgba(55, 148, 255, 0.4);
2590
+ --vscode-editorCommentsWidget-rangeActiveBackground: rgba(55, 148, 255, 0.1);
2591
+ --vscode-editorCommentsWidget-rangeActiveBorder: rgba(55, 148, 255, 0.4);
2592
+ --vscode-editorGutter-commentRangeForeground: #37373d;
2593
+ --vscode-debugToolBar-background: #333333;
2594
+ --vscode-debugIcon-startForeground: #89d185;
2595
+ --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
2596
+ --vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
2597
+ --vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
2598
+ --vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.2);
2599
+ --vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
2600
+ --vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
2601
+ --vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
2602
+ --vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
2603
+ --vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
2604
+ --vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
2605
+ --vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
2606
+ --vscode-settings-headerForeground: #e7e7e7;
2607
+ --vscode-settings-modifiedItemIndicator: #0c7d9d;
2608
+ --vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
2609
+ --vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
2610
+ --vscode-settings-dropdownBackground: #3c3c3c;
2611
+ --vscode-settings-dropdownForeground: #f0f0f0;
2612
+ --vscode-settings-dropdownBorder: #3c3c3c;
2613
+ --vscode-settings-dropdownListBorder: #454545;
2614
+ --vscode-settings-checkboxBackground: #3c3c3c;
2615
+ --vscode-settings-checkboxForeground: #f0f0f0;
2616
+ --vscode-settings-checkboxBorder: #3c3c3c;
2617
+ --vscode-settings-textInputBackground: #3c3c3c;
2618
+ --vscode-settings-textInputForeground: #cccccc;
2619
+ --vscode-settings-numberInputBackground: #3c3c3c;
2620
+ --vscode-settings-numberInputForeground: #cccccc;
2621
+ --vscode-settings-focusedRowBackground: rgba(42, 45, 46, 0.6);
2622
+ --vscode-settings-rowHoverBackground: rgba(42, 45, 46, 0.3);
2623
+ --vscode-settings-focusedRowBorder: rgba(255, 255, 255, 0.12);
2624
+ --vscode-terminal-foreground: #cccccc;
2625
+ --vscode-terminal-selectionBackground: #264f78;
2626
+ --vscode-terminal-inactiveSelectionBackground: #3a3d41;
2627
+ --vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
2628
+ --vscode-terminalCommandDecoration-successBackground: #1b81a8;
2629
+ --vscode-terminalCommandDecoration-errorBackground: #f14c4c;
2630
+ --vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
2631
+ --vscode-terminal-border: rgba(128, 128, 128, 0.35);
2632
+ --vscode-terminal-findMatchBackground: #515c6a;
2633
+ --vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
2634
+ --vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
2635
+ --vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
2636
+ --vscode-testing-iconFailed: #f14c4c;
2637
+ --vscode-testing-iconErrored: #f14c4c;
2638
+ --vscode-testing-iconPassed: #73c991;
2639
+ --vscode-testing-runAction: #73c991;
2640
+ --vscode-testing-iconQueued: #cca700;
2641
+ --vscode-testing-iconUnset: #848484;
2642
+ --vscode-testing-iconSkipped: #848484;
2643
+ --vscode-testing-peekBorder: #f14c4c;
2644
+ --vscode-testing-peekHeaderBackground: rgba(241, 76, 76, 0.1);
2645
+ --vscode-testing-message\.error\.decorationForeground: #f14c4c;
2646
+ --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
2647
+ --vscode-testing-message\.info\.decorationForeground: rgba(212, 212, 212, 0.5);
2648
+ --vscode-welcomePage-tileBackground: #252526;
2649
+ --vscode-welcomePage-tileHoverBackground: #2c2c2d;
2650
+ --vscode-welcomePage-tileShadow: rgba(0, 0, 0, 0.36);
2651
+ --vscode-welcomePage-progress\.background: #3c3c3c;
2652
+ --vscode-welcomePage-progress\.foreground: #3794ff;
2653
+ --vscode-debugExceptionWidget-border: #a31515;
2654
+ --vscode-debugExceptionWidget-background: #420b0d;
2655
+ --vscode-ports-iconRunningProcessForeground: #369432;
2656
+ --vscode-statusBar-debuggingBackground: #cc6633;
2657
+ --vscode-statusBar-debuggingForeground: #ffffff;
2658
+ --vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
2659
+ --vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
2660
+ --vscode-editorGutter-modifiedBackground: #1b81a8;
2661
+ --vscode-editorGutter-addedBackground: #487e02;
2662
+ --vscode-editorGutter-deletedBackground: #f14c4c;
2663
+ --vscode-minimapGutter-modifiedBackground: #1b81a8;
2664
+ --vscode-minimapGutter-addedBackground: #487e02;
2665
+ --vscode-minimapGutter-deletedBackground: #f14c4c;
2666
+ --vscode-editorOverviewRuler-modifiedForeground: rgba(27, 129, 168, 0.6);
2667
+ --vscode-editorOverviewRuler-addedForeground: rgba(72, 126, 2, 0.6);
2668
+ --vscode-editorOverviewRuler-deletedForeground: rgba(241, 76, 76, 0.6);
2669
+ --vscode-debugIcon-breakpointForeground: #e51400;
2670
+ --vscode-debugIcon-breakpointDisabledForeground: #848484;
2671
+ --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
2672
+ --vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
2673
+ --vscode-debugIcon-breakpointStackframeForeground: #89d185;
2674
+ --vscode-notebook-cellBorderColor: #37373d;
2675
+ --vscode-notebook-focusedEditorBorder: #007fd4;
2676
+ --vscode-notebookStatusSuccessIcon-foreground: #89d185;
2677
+ --vscode-notebookStatusErrorIcon-foreground: #f48771;
2678
+ --vscode-notebookStatusRunningIcon-foreground: #cccccc;
2679
+ --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
2680
+ --vscode-notebook-selectedCellBackground: #37373d;
2681
+ --vscode-notebook-selectedCellBorder: #37373d;
2682
+ --vscode-notebook-focusedCellBorder: #007fd4;
2683
+ --vscode-notebook-inactiveFocusedCellBorder: #37373d;
2684
+ --vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
2685
+ --vscode-notebook-cellInsertionIndicator: #007fd4;
2686
+ --vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, 0.4);
2687
+ --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
2688
+ --vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
2689
+ --vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
2690
+ --vscode-notebook-cellEditorBackground: #252526;
2691
+ --vscode-notebook-editorBackground: #1e1e1e;
2692
+ --vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
2693
+ --vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
2694
+ --vscode-scm-providerBorder: #454545;
2695
+ --vscode-debugTokenExpression-name: #c586c0;
2696
+ --vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
2697
+ --vscode-debugTokenExpression-string: #ce9178;
2698
+ --vscode-debugTokenExpression-boolean: #4e94ce;
2699
+ --vscode-debugTokenExpression-number: #b5cea8;
2700
+ --vscode-debugTokenExpression-error: #f48771;
2701
+ --vscode-debugView-exceptionLabelForeground: #cccccc;
2702
+ --vscode-debugView-exceptionLabelBackground: #6c2022;
2703
+ --vscode-debugView-stateLabelForeground: #cccccc;
2704
+ --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
2705
+ --vscode-debugView-valueChangedHighlight: #569cd6;
2706
+ --vscode-debugConsole-infoForeground: #3794ff;
2707
+ --vscode-debugConsole-warningForeground: #cca700;
2708
+ --vscode-debugConsole-errorForeground: #f48771;
2709
+ --vscode-debugConsole-sourceForeground: #cccccc;
2710
+ --vscode-debugConsoleInputIcon-foreground: #cccccc;
2711
+ --vscode-debugIcon-pauseForeground: #75beff;
2712
+ --vscode-debugIcon-stopForeground: #f48771;
2713
+ --vscode-debugIcon-disconnectForeground: #f48771;
2714
+ --vscode-debugIcon-restartForeground: #89d185;
2715
+ --vscode-debugIcon-stepOverForeground: #75beff;
2716
+ --vscode-debugIcon-stepIntoForeground: #75beff;
2717
+ --vscode-debugIcon-stepOutForeground: #75beff;
2718
+ --vscode-debugIcon-continueForeground: #75beff;
2719
+ --vscode-debugIcon-stepBackForeground: #75beff;
2720
+ --vscode-extensionButton-prominentBackground: #0e639c;
2721
+ --vscode-extensionButton-prominentForeground: #ffffff;
2722
+ --vscode-extensionButton-prominentHoverBackground: #1177bb;
2723
+ --vscode-extensionIcon-starForeground: #ff8e00;
2724
+ --vscode-extensionIcon-verifiedForeground: #3794ff;
2725
+ --vscode-extensionIcon-preReleaseForeground: #1d9271;
2726
+ --vscode-extensionIcon-sponsorForeground: #d758b3;
2727
+ --vscode-terminal-ansiBlack: #000000;
2728
+ --vscode-terminal-ansiRed: #cd3131;
2729
+ --vscode-terminal-ansiGreen: #0dbc79;
2730
+ --vscode-terminal-ansiYellow: #e5e510;
2731
+ --vscode-terminal-ansiBlue: #2472c8;
2732
+ --vscode-terminal-ansiMagenta: #bc3fbc;
2733
+ --vscode-terminal-ansiCyan: #11a8cd;
2734
+ --vscode-terminal-ansiWhite: #e5e5e5;
2735
+ --vscode-terminal-ansiBrightBlack: #666666;
2736
+ --vscode-terminal-ansiBrightRed: #f14c4c;
2737
+ --vscode-terminal-ansiBrightGreen: #23d18b;
2738
+ --vscode-terminal-ansiBrightYellow: #f5f543;
2739
+ --vscode-terminal-ansiBrightBlue: #3b8eea;
2740
+ --vscode-terminal-ansiBrightMagenta: #d670d6;
2741
+ --vscode-terminal-ansiBrightCyan: #29b8db;
2742
+ --vscode-terminal-ansiBrightWhite: #e5e5e5;
2743
+ --vscode-interactive-activeCodeBorder: #3794ff;
2744
+ --vscode-interactive-inactiveCodeBorder: #37373d;
2745
+ --vscode-gitDecoration-addedResourceForeground: #81b88b;
2746
+ --vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
2747
+ --vscode-gitDecoration-deletedResourceForeground: #c74e39;
2748
+ --vscode-gitDecoration-renamedResourceForeground: #73c991;
2749
+ --vscode-gitDecoration-untrackedResourceForeground: #73c991;
2750
+ --vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;
2751
+ --vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
2752
+ --vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
2753
+ --vscode-gitDecoration-conflictingResourceForeground: #e4676b;
2754
+ --vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
2755
+ }
2756
+
2757
+ .cm-wrapper {
2758
+ line-height: 18px;
2759
+ }
2760
+
2761
+ .cm-wrapper, .cm-wrapper > div {
2762
+ width: 100%;
2763
+ height: 100%;
2764
+ }
2765
+
2766
+ .CodeMirror span.cm-meta {
2767
+ color: var(--vscode-editor-foreground);
2768
+ }
2769
+
2770
+ .CodeMirror span.cm-number {
2771
+ color: var(--vscode-debugTokenExpression-number);
2772
+ }
2773
+
2774
+ .CodeMirror span.cm-keyword {
2775
+ color: var(--vscode-debugTokenExpression-name);
2776
+ }
2777
+
2778
+ .CodeMirror span.cm-operator {
2779
+ color: var(--vscode-editor-foreground);
2780
+ }
2781
+
2782
+ .CodeMirror span.cm-string {
2783
+ color: var(--vscode-debugTokenExpression-string);
2784
+ }
2785
+
2786
+ .CodeMirror span.cm-string-2 {
2787
+ color: var(--vscode-debugTokenExpression-string);
2788
+ }
2789
+
2790
+ .CodeMirror span.cm-error {
2791
+ color: var(--vscode-errorForeground);
2792
+ }
2793
+
2794
+ .CodeMirror span.cm-def, .CodeMirror span.cm-tag {
2795
+ color: #0070c1;
2796
+ }
2797
+
2798
+ .CodeMirror span.cm-comment, .CodeMirror span.cm-link {
2799
+ color: #008000;
2800
+ }
2801
+
2802
+ .CodeMirror span.cm-variable, .CodeMirror span.cm-variable-2, .CodeMirror span.cm-atom {
2803
+ color: #0070c1;
2804
+ }
2805
+
2806
+ .CodeMirror span.cm-property {
2807
+ color: #795e26;
2808
+ }
2809
+
2810
+ .CodeMirror span.cm-qualifier, .CodeMirror span.cm-attribute {
2811
+ color: #001080;
2812
+ }
2813
+
2814
+ .CodeMirror span.cm-variable-3,
2815
+ .CodeMirror span.cm-type {
2816
+ color: #267f99;
2817
+ }
2818
+
2819
+ body.dark-mode .CodeMirror span.cm-def,
2820
+ body.dark-mode .CodeMirror span.cm-tag {
2821
+ color: var(--vscode-debugView-valueChangedHighlight);
2822
+ }
2823
+
2824
+ body.dark-mode .CodeMirror span.cm-comment,
2825
+ body.dark-mode .CodeMirror span.cm-link {
2826
+ color: #6a9955;
2827
+ }
2828
+
2829
+ body.dark-mode .CodeMirror span.cm-variable,
2830
+ body.dark-mode .CodeMirror span.cm-variable-2,
2831
+ body.dark-mode .CodeMirror span.cm-atom {
2832
+ color: #4fc1ff;
2833
+ }
2834
+
2835
+ body.dark-mode .CodeMirror span.cm-property {
2836
+ color: #dcdcaa;
2837
+ }
2838
+
2839
+ body.dark-mode .CodeMirror span.cm-qualifier,
2840
+ body.dark-mode .CodeMirror span.cm-attribute {
2841
+ color: #9cdcfe;
2842
+ }
2843
+
2844
+ body.dark-mode .CodeMirror span.cm-variable-3,
2845
+ body.dark-mode .CodeMirror span.cm-type {
2846
+ color: #4ec9b0;
2847
+ }
2848
+
2849
+ .CodeMirror span.cm-bracket {
2850
+ color: var(--vscode-editorBracketHighlight-foreground3);
2851
+ }
2852
+
2853
+ .CodeMirror-cursor {
2854
+ border-left: 1px solid var(--vscode-editor-foreground) !important;
2855
+ }
2856
+
2857
+ .CodeMirror div.CodeMirror-selected {
2858
+ background: var(--vscode-terminal-inactiveSelectionBackground);
2859
+ }
2860
+
2861
+ .CodeMirror .CodeMirror-gutters {
2862
+ z-index: 0;
2863
+ background: 1px solid var(--vscode-editorGroup-border);
2864
+ border-right: none;
2865
+ }
2866
+
2867
+ .CodeMirror .CodeMirror-gutter-elt {
2868
+ background-color: var(--vscode-editorGutter-background);
2869
+ }
2870
+
2871
+ .CodeMirror .CodeMirror-gutterwrapper {
2872
+ border-right: 1px solid var(--vscode-editorGroup-border);
2873
+ color: var(--vscode-editorLineNumber-foreground);
2874
+ }
2875
+
2876
+ .CodeMirror .CodeMirror-matchingbracket {
2877
+ background-color: var(--vscode-editorBracketPairGuide-background1);
2878
+ color: var(--vscode-editorBracketHighlight-foreground1) !important;
2879
+ }
2880
+
2881
+ .CodeMirror {
2882
+ font-family: var(--vscode-editor-font-family) !important;
2883
+ color: var(--vscode-editor-foreground) !important;
2884
+ background-color: var(--vscode-editor-background) !important;
2885
+ font-weight: var(--vscode-editor-font-weight) !important;
2886
+ font-size: var(--vscode-editor-font-size) !important;
2887
+ }
2888
+
2889
+ .CodeMirror .source-line-running {
2890
+ background-color: var(--vscode-editor-selectionBackground);
2891
+ z-index: 2;
2892
+ }
2893
+
2894
+ .CodeMirror .source-line-paused {
2895
+ background-color: var(--vscode-editor-selectionHighlightBackground);
2896
+ z-index: 2;
2897
+ }
2898
+
2899
+ .CodeMirror .source-line-error {
2900
+ /* Intentionally empty. */
2901
+ }
2902
+
2903
+ .CodeMirror .source-line-error-underline {
2904
+ text-decoration: underline wavy var(--vscode-errorForeground);
2905
+ position: relative;
2906
+ top: -12px;
2907
+ }
2908
+
2909
+ .CodeMirror .source-line-error-widget {
2910
+ background-color: var(--vscode-inputValidation-errorBackground);
2911
+ white-space: pre-wrap;
2912
+ margin: 3px 10px;
2913
+ padding: 5px;
2914
+ }
2915
+
2916
+ .CodeMirror span.cm-link, span.cm-linkified {
2917
+ color: var(--vscode-textLink-foreground);
2918
+ text-decoration: underline;
2919
+ cursor: pointer;
2920
+ }
2921
+ /*
2922
+ Copyright (c) Microsoft Corporation.
2923
+
2924
+ Licensed under the Apache License, Version 2.0 (the "License");
2925
+ you may not use this file except in compliance with the License.
2926
+ You may obtain a copy of the License at
2927
+
2928
+ http://www.apache.org/licenses/LICENSE-2.0
2929
+
2930
+ Unless required by applicable law or agreed to in writing, software
2931
+ distributed under the License is distributed on an "AS IS" BASIS,
2932
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2933
+ See the License for the specific language governing permissions and
2934
+ limitations under the License.
2935
+ */
2936
+
2937
+ .grid-view {
2938
+ display: flex;
2939
+ position: relative;
2940
+ flex: auto;
2941
+ }
2942
+
2943
+ .grid-view .list-view-entry {
2944
+ padding-left: 0;
2945
+ }
2946
+
2947
+ .grid-view-cell {
2948
+ overflow: hidden;
2949
+ text-overflow: ellipsis;
2950
+ padding: 0 5px;
2951
+ flex: none;
2952
+ }
2953
+
2954
+ .grid-view-header {
2955
+ user-select: none;
2956
+ display: flex;
2957
+ flex: 0 0 30px;
2958
+ align-items: center;
2959
+ flex-direction: row;
2960
+ border-bottom: 1px solid var(--vscode-panel-border);
2961
+ }
2962
+
2963
+ .grid-view-header .codicon-triangle-up {
2964
+ display: none;
2965
+ }
2966
+ .grid-view-header .codicon-triangle-down {
2967
+ display: none;
2968
+ }
2969
+
2970
+ .grid-view-header > .filter-positive .codicon-triangle-down {
2971
+ display: initial !important;
2972
+ }
2973
+
2974
+ .grid-view-header > .filter-negative .codicon-triangle-up {
2975
+ display: initial !important;
2976
+ }
2977
+
2978
+ .grid-view-header-cell {
2979
+ flex: none;
2980
+ align-items: center;
2981
+ overflow: hidden;
2982
+ text-overflow: ellipsis;
2983
+ padding-left: 10px;
2984
+ cursor: pointer;
2985
+ display: flex;
2986
+ white-space: nowrap;
2987
+ }
2988
+
2989
+ .grid-view-header-cell-title {
2990
+ overflow: hidden;
2991
+ text-overflow: ellipsis;
2992
+ flex: auto;
2993
+ }
2994
+ /*
2995
+ Copyright (c) Microsoft Corporation.
2996
+
2997
+ Licensed under the Apache License, Version 2.0 (the "License");
2998
+ you may not use this file except in compliance with the License.
2999
+ You may obtain a copy of the License at
3000
+
3001
+ http://www.apache.org/licenses/LICENSE-2.0
3002
+
3003
+ Unless required by applicable law or agreed to in writing, software
3004
+ distributed under the License is distributed on an "AS IS" BASIS,
3005
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3006
+ See the License for the specific language governing permissions and
3007
+ limitations under the License.
3008
+ */
3009
+
3010
+ .network-filters {
3011
+ display: flex;
3012
+ gap: 16px;
3013
+ background-color: var(--vscode-sideBar-background);
3014
+ padding: 4px 8px;
3015
+ min-height: 32px;
3016
+ }
3017
+
3018
+ .network-filters input[type="search"] {
3019
+ padding: 0 5px;
3020
+ }
3021
+
3022
+ .network-filters-resource-types {
3023
+ display: flex;
3024
+ gap: 8px;
3025
+ align-items: center;
3026
+ }
3027
+
3028
+ .network-filters-resource-type {
3029
+ cursor: pointer;
3030
+ border-radius: 2px;
3031
+ padding: 3px 8px;
3032
+ text-align: center;
3033
+ overflow: hidden;
3034
+ text-overflow: ellipsis;
3035
+ }
3036
+
3037
+ .network-filters-resource-type.selected {
3038
+ background-color: var(--vscode-list-inactiveSelectionBackground);
3039
+ }
3040
+ /*
3041
+ Copyright (c) Microsoft Corporation.
3042
+
3043
+ Licensed under the Apache License, Version 2.0 (the "License");
3044
+ you may not use this file except in compliance with the License.
3045
+ You may obtain a copy of the License at
3046
+
3047
+ http://www.apache.org/licenses/LICENSE-2.0
3048
+
3049
+ Unless required by applicable law or agreed to in writing, software
3050
+ distributed under the License is distributed on an "AS IS" BASIS,
3051
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3052
+ See the License for the specific language governing permissions and
3053
+ limitations under the License.
3054
+ */
3055
+
3056
+ .snapshot-tab {
3057
+ display: flex;
3058
+ flex: auto;
3059
+ flex-direction: column;
3060
+ align-items: stretch;
3061
+ outline: none;
3062
+ --browser-frame-header-height: 40px;
3063
+ overflow: hidden;
3064
+ }
3065
+
3066
+ .snapshot-tab .toolbar {
3067
+ background-color: var(--vscode-sideBar-background);
3068
+ }
3069
+
3070
+ .snapshot-tab .toolbar .pick-locator {
3071
+ margin: 0 4px;
3072
+ }
3073
+
3074
+ .snapshot-controls {
3075
+ flex: none;
3076
+ background-color: var(--vscode-sideBar-background);
3077
+ color: var(--vscode-sideBarTitle-foreground);
3078
+ display: flex;
3079
+ box-shadow: var(--box-shadow);
3080
+ height: 32px;
3081
+ align-items: center;
3082
+ justify-content: center;
3083
+ }
3084
+
3085
+ .snapshot-toggle {
3086
+ margin-top: 4px;
3087
+ padding: 4px 8px;
3088
+ cursor: pointer;
3089
+ border-radius: 20px;
3090
+ margin-left: 4px;
3091
+ width: 60px;
3092
+ display: flex;
3093
+ align-items: center;
3094
+ justify-content: center;
3095
+ }
3096
+
3097
+ .snapshot-toggle:hover {
3098
+ background-color: #ededed;
3099
+ }
3100
+
3101
+ .snapshot-toggle.toggled {
3102
+ background: var(--gray);
3103
+ color: white;
3104
+ }
3105
+
3106
+ .snapshot-tab:focus .snapshot-toggle.toggled {
3107
+ background: var(--vscode-charts-blue);
3108
+ }
3109
+
3110
+ .snapshot-wrapper {
3111
+ flex: auto;
3112
+ margin: 1px;
3113
+ padding: 10px;
3114
+ position: relative;
3115
+ }
3116
+
3117
+ .snapshot-container {
3118
+ display: block;
3119
+ box-shadow: 0 12px 28px 0 rgba(0,0,0,.2),0 2px 4px 0 rgba(0,0,0,.1);
3120
+ }
3121
+
3122
+ .snapshot-switcher {
3123
+ width: 100%;
3124
+ height: calc(100% - var(--browser-frame-header-height));
3125
+ position: relative;
3126
+ }
3127
+
3128
+ iframe[name=snapshot] {
3129
+ position: absolute;
3130
+ top: 0;
3131
+ left: 0;
3132
+ width: 100%;
3133
+ height: 100%;
3134
+ border: none;
3135
+ background: white;
3136
+ visibility: hidden;
3137
+ }
3138
+
3139
+ iframe.snapshot-visible[name=snapshot] {
3140
+ visibility: visible;
3141
+ }
3142
+
3143
+ .no-snapshot {
3144
+ text-align: center;
3145
+ padding: 50px;
3146
+ }
3147
+
3148
+ .snapshot-tab .cm-wrapper {
3149
+ line-height: 23px;
3150
+ margin-right: 4px;
3151
+ }
3152
+ /*
3153
+ Copyright (c) Microsoft Corporation.
3154
+
3155
+ Licensed under the Apache License, Version 2.0 (the "License");
3156
+ you may not use this file except in compliance with the License.
3157
+ You may obtain a copy of the License at
3158
+
3159
+ http://www.apache.org/licenses/LICENSE-2.0
3160
+
3161
+ Unless required by applicable law or agreed to in writing, software
3162
+ distributed under the License is distributed on an "AS IS" BASIS,
3163
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3164
+ See the License for the specific language governing permissions and
3165
+ limitations under the License.
3166
+ */
3167
+
3168
+ .browser-frame-dot {
3169
+ border-radius: 50%;
3170
+ display: inline-block;
3171
+ height: 12px;
3172
+ margin-right: 6px;
3173
+ margin-top: 4px;
3174
+ width: 12px;
3175
+ }
3176
+
3177
+ .browser-frame-address-bar {
3178
+ background-color: var(--vscode-input-background);
3179
+ border-radius: 12.5px;
3180
+ color: var(--vscode-input-foreground);
3181
+ flex: 1 0;
3182
+ font: 400 16px Arial,sans-serif;
3183
+ margin: 0 16px 0 8px;
3184
+ padding: 5px 15px;
3185
+ overflow: hidden;
3186
+ text-overflow: ellipsis;
3187
+ white-space: nowrap;
3188
+ }
3189
+
3190
+ .browser-frame-menu-bar {
3191
+ background-color: #aaa;
3192
+ display: block;
3193
+ height: 3px;
3194
+ margin: 3px 0;
3195
+ width: 17px;
3196
+ }
3197
+
3198
+ .browser-frame-header {
3199
+ align-items: center;
3200
+ background: #ebedf0;
3201
+ display: flex;
3202
+ padding: 8px 16px;
3203
+ border-top-left-radius: 6px;
3204
+ border-top-right-radius: 6px;
3205
+ height: var(--browser-frame-header-height);
3206
+ }
3207
+
3208
+ body.dark-mode .browser-frame-header {
3209
+ background: #444950;
3210
+ }
3211
+ /*
3212
+ Copyright (c) Microsoft Corporation.
3213
+
3214
+ Licensed under the Apache License, Version 2.0 (the "License");
3215
+ you may not use this file except in compliance with the License.
3216
+ You may obtain a copy of the License at
3217
+
3218
+ http://www.apache.org/licenses/LICENSE-2.0
3219
+
3220
+ Unless required by applicable law or agreed to in writing, software
3221
+ distributed under the License is distributed on an "AS IS" BASIS,
3222
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3223
+ See the License for the specific language governing permissions and
3224
+ limitations under the License.
3225
+ */
3226
+
3227
+ .source-tab {
3228
+ flex: auto;
3229
+ position: relative;
3230
+ overflow: hidden;
3231
+ display: flex;
3232
+ flex-direction: row;
3233
+ }
3234
+
3235
+ .source-tab-file-name {
3236
+ padding-left: 8px;
3237
+ height: 100%;
3238
+ display: flex;
3239
+ align-items: center;
3240
+ flex: 1 1 auto;
3241
+ }
3242
+
3243
+ .source-tab-file-name div {
3244
+ overflow: hidden;
3245
+ text-overflow: ellipsis;
3246
+ white-space: nowrap;
3247
+ }
3248
+ /*
3249
+ Copyright (c) Microsoft Corporation.
3250
+
3251
+ Licensed under the Apache License, Version 2.0 (the "License");
3252
+ you may not use this file except in compliance with the License.
3253
+ You may obtain a copy of the License at
3254
+
3255
+ http://www.apache.org/licenses/LICENSE-2.0
3256
+
3257
+ Unless required by applicable law or agreed to in writing, software
3258
+ distributed under the License is distributed on an "AS IS" BASIS,
3259
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3260
+ See the License for the specific language governing permissions and
3261
+ limitations under the License.
3262
+ */
3263
+
3264
+ .stack-trace-frame-function {
3265
+ flex: 1 1 100px;
3266
+ overflow: hidden;
3267
+ text-overflow: ellipsis;
3268
+ }
3269
+
3270
+ .stack-trace-frame-location {
3271
+ flex: 1 1 100px;
3272
+ overflow: hidden;
3273
+ text-overflow: ellipsis;
3274
+ text-align: end;
3275
+ }
3276
+
3277
+ .stack-trace-frame-line {
3278
+ flex: none;
3279
+ }
3280
+ /*
3281
+ Copyright (c) Microsoft Corporation.
3282
+
3283
+ Licensed under the Apache License, Version 2.0 (the "License");
3284
+ you may not use this file except in compliance with the License.
3285
+ You may obtain a copy of the License at
3286
+
3287
+ http://www.apache.org/licenses/LICENSE-2.0
3288
+
3289
+ Unless required by applicable law or agreed to in writing, software
3290
+ distributed under the License is distributed on an "AS IS" BASIS,
3291
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3292
+ See the License for the specific language governing permissions and
3293
+ limitations under the License.
3294
+ */
3295
+
3296
+ .film-strip {
3297
+ flex: none;
3298
+ display: flex;
3299
+ flex-direction: column;
3300
+ position: relative;
3301
+ }
3302
+
3303
+ .film-strip-lanes {
3304
+ flex: none;
3305
+ display: flex;
3306
+ flex-direction: column;
3307
+ position: relative;
3308
+ min-height: 50px;
3309
+ max-height: 200px;
3310
+ overflow-x: hidden;
3311
+ overflow-y: auto;
3312
+ }
3313
+
3314
+ .film-strip-lane {
3315
+ flex: none;
3316
+ display: flex;
3317
+ }
3318
+
3319
+ .film-strip-frame {
3320
+ flex: none;
3321
+ pointer-events: none;
3322
+ box-shadow: var(--box-shadow);
3323
+ }
3324
+
3325
+ .film-strip-hover {
3326
+ position: absolute;
3327
+ top: 0;
3328
+ left: 0;
3329
+ background-color: var(--vscode-panel-background);
3330
+ box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 10px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 10px 0px;
3331
+ z-index: 200;
3332
+ pointer-events: none;
3333
+ }
3334
+
3335
+ .film-strip-hover-title {
3336
+ padding: 2px 4px;
3337
+ display: flex;
3338
+ align-items: center;
3339
+ overflow: hidden;
3340
+ }
3341
+ /*
3342
+ Copyright (c) Microsoft Corporation.
3343
+
3344
+ Licensed under the Apache License, Version 2.0 (the "License");
3345
+ you may not use this file except in compliance with the License.
3346
+ You may obtain a copy of the License at
3347
+
3348
+ http://www.apache.org/licenses/LICENSE-2.0
3349
+
3350
+ Unless required by applicable law or agreed to in writing, software
3351
+ distributed under the License is distributed on an "AS IS" BASIS,
3352
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3353
+ See the License for the specific language governing permissions and
3354
+ limitations under the License.
3355
+ */
3356
+
3357
+ .timeline-view {
3358
+ flex: none;
3359
+ position: relative;
3360
+ display: flex;
3361
+ flex-direction: column;
3362
+ padding: 20px 0 5px;
3363
+ cursor: text;
3364
+ user-select: none;
3365
+ margin-left: 10px;
3366
+ overflow-x: clip;
3367
+ }
3368
+
3369
+ .timeline-divider {
3370
+ position: absolute;
3371
+ width: 1px;
3372
+ top: 0;
3373
+ bottom: 0;
3374
+ background-color: var(--vscode-panel-border);
3375
+ }
3376
+
3377
+ .timeline-time {
3378
+ position: absolute;
3379
+ top: 4px;
3380
+ right: 3px;
3381
+ font-size: 80%;
3382
+ white-space: nowrap;
3383
+ pointer-events: none;
3384
+ }
3385
+
3386
+ .timeline-time-input {
3387
+ cursor: pointer;
3388
+ }
3389
+
3390
+ .timeline-lane {
3391
+ pointer-events: none;
3392
+ overflow: hidden;
3393
+ flex: none;
3394
+ height: 20px;
3395
+ position: relative;
3396
+ }
3397
+
3398
+ .timeline-grid {
3399
+ position: absolute;
3400
+ top: 0;
3401
+ right: 0;
3402
+ bottom: 0;
3403
+ left: 0;
3404
+ }
3405
+
3406
+ .timeline-bars {
3407
+ position: absolute;
3408
+ top: 0;
3409
+ bottom: 0;
3410
+ left: 0;
3411
+ right: 0;
3412
+ pointer-events: none;
3413
+ }
3414
+
3415
+ .timeline-bar {
3416
+ position: absolute;
3417
+ --action-color: gray;
3418
+ --action-background-color: #88888802;
3419
+ border-top: 2px solid var(--action-color);
3420
+ }
3421
+
3422
+ .timeline-bar.active {
3423
+ background-color: var(--action-background-color);
3424
+ }
3425
+
3426
+ .timeline-bar.action {
3427
+ --action-color: var(--vscode-charts-orange);
3428
+ --action-background-color: #d1861666;
3429
+ }
3430
+
3431
+ .timeline-bar.action.error {
3432
+ --action-color: var(--vscode-charts-red);
3433
+ --action-background-color: #e5140066;
3434
+ }
3435
+
3436
+ .timeline-bar.network {
3437
+ --action-color: var(--vscode-charts-blue);
3438
+ --action-background-color: #1a85ff66;
3439
+ }
3440
+
3441
+ .timeline-bar.console-message {
3442
+ --action-color: var(--vscode-charts-purple);
3443
+ --action-background-color: #1a85ff66;
3444
+ }
3445
+
3446
+ body.dark-mode .timeline-bar.action.error {
3447
+ --action-color: var(--vscode-errorForeground);
3448
+ --action-background-color: #f4877166;
3449
+ }
3450
+
3451
+ .timeline-label {
3452
+ position: absolute;
3453
+ top: 0;
3454
+ bottom: 0;
3455
+ margin-left: 2px;
3456
+ background-color: var(--vscode-panel-background);
3457
+ justify-content: center;
3458
+ display: none;
3459
+ white-space: nowrap;
3460
+ }
3461
+
3462
+ .timeline-label.selected {
3463
+ display: flex;
3464
+ }
3465
+
3466
+ .timeline-marker {
3467
+ display: none;
3468
+ position: absolute;
3469
+ top: 0;
3470
+ bottom: 0;
3471
+ pointer-events: none;
3472
+ border-left: 3px solid var(--light-pink);
3473
+ }
3474
+
3475
+ .timeline-window {
3476
+ display: flex;
3477
+ position: absolute;
3478
+ top: 0;
3479
+ bottom: 0;
3480
+ left: 0;
3481
+ right: 0;
3482
+ pointer-events: none;
3483
+ }
3484
+
3485
+ .timeline-window-center {
3486
+ flex: auto;
3487
+ }
3488
+
3489
+ .timeline-window-drag {
3490
+ height: 20px;
3491
+ cursor: grab;
3492
+ pointer-events: all;
3493
+ }
3494
+
3495
+ .timeline-window-curtain {
3496
+ flex: none;
3497
+ background-color: #3879d91a;
3498
+ }
3499
+
3500
+ body.dark-mode .timeline-window-curtain {
3501
+ background-color: #161718bf;
3502
+ }
3503
+
3504
+ .timeline-window-resizer {
3505
+ flex: none;
3506
+ width: 10px;
3507
+ cursor: ew-resize;
3508
+ pointer-events: all;
3509
+ position: relative;
3510
+ background-color: var(--vscode-panel-border);
3511
+ border-left: 1px solid var(--vscode-panel-border);
3512
+ border-right: 1px solid var(--vscode-panel-border);
3513
+ }
3514
+ /*
3515
+ Copyright (c) Microsoft Corporation.
3516
+
3517
+ Licensed under the Apache License, Version 2.0 (the "License");
3518
+ you may not use this file except in compliance with the License.
3519
+ You may obtain a copy of the License at
3520
+
3521
+ http://www.apache.org/licenses/LICENSE-2.0
3522
+
3523
+ Unless required by applicable law or agreed to in writing, software
3524
+ distributed under the License is distributed on an "AS IS" BASIS,
3525
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3526
+ See the License for the specific language governing permissions and
3527
+ limitations under the License.
3528
+ */
3529
+
3530
+ .attachments-tab {
3531
+ flex: auto;
3532
+ line-height: 24px;
3533
+ white-space: pre;
3534
+ overflow: auto;
3535
+ user-select: text;
3536
+ }
3537
+
3538
+ .attachments-section {
3539
+ padding-left: 6px;
3540
+ font-weight: bold;
3541
+ text-transform: uppercase;
3542
+ font-size: 12px;
3543
+ color: var(--vscode-sideBarTitle-foreground);
3544
+ line-height: 24px;
3545
+ }
3546
+
3547
+ .attachments-section:not(:first-child) {
3548
+ border-top: 1px solid var(--vscode-panel-border);
3549
+ margin-top: 10px;
3550
+ }
3551
+
3552
+ .attachment-item {
3553
+ margin: 4px 8px;
3554
+ }
3555
+
3556
+ .attachment-item img {
3557
+ flex: none;
3558
+ min-width: 200px;
3559
+ max-width: 80%;
3560
+ box-shadow: 0 12px 28px 0 rgba(0,0,0,.2), 0 2px 4px 0 rgba(0,0,0,.1);
3561
+ }
3562
+
3563
+ a.codicon-cloud-download:hover{
3564
+ background-color: var(--vscode-list-inactiveSelectionBackground)
3565
+ }
3566
+ /*
3567
+ Copyright (c) Microsoft Corporation.
3568
+
3569
+ Licensed under the Apache License, Version 2.0 (the "License");
3570
+ you may not use this file except in compliance with the License.
3571
+ You may obtain a copy of the License at
3572
+
3573
+ http://www.apache.org/licenses/LICENSE-2.0
3574
+
3575
+ Unless required by applicable law or agreed to in writing, software
3576
+ distributed under the License is distributed on an "AS IS" BASIS,
3577
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3578
+ See the License for the specific language governing permissions and
3579
+ limitations under the License.
3580
+ */
3581
+
3582
+ .expandable {
3583
+ flex: none;
3584
+ flex-direction: column;
3585
+ line-height: 28px;
3586
+ }
3587
+
3588
+ .expandable-title {
3589
+ flex: none;
3590
+ display: flex;
3591
+ flex-direction: row;
3592
+ align-items: center;
3593
+ white-space: nowrap;
3594
+ user-select: none;
3595
+ cursor: pointer;
3596
+ }
3597
+ /*
3598
+ Copyright (c) Microsoft Corporation.
3599
+
3600
+ Licensed under the Apache License, Version 2.0 (the "License");
3601
+ you may not use this file except in compliance with the License.
3602
+ You may obtain a copy of the License at
3603
+
3604
+ http://www.apache.org/licenses/LICENSE-2.0
3605
+
3606
+ Unless required by applicable law or agreed to in writing, software
3607
+ distributed under the License is distributed on an "AS IS" BASIS,
3608
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3609
+ See the License for the specific language governing permissions and
3610
+ limitations under the License.
3611
+ */
3612
+
3613
+ .annotations-tab {
3614
+ flex: auto;
3615
+ line-height: 24px;
3616
+ white-space: pre;
3617
+ overflow: auto;
3618
+ user-select: text;
3619
+ }
3620
+
3621
+ .annotation-item {
3622
+ margin: 4px 8px;
3623
+ text-wrap: wrap;
3624
+ }
3625
+ /*
3626
+ Copyright (c) Microsoft Corporation.
3627
+
3628
+ Licensed under the Apache License, Version 2.0 (the "License");
3629
+ you may not use this file except in compliance with the License.
3630
+ You may obtain a copy of the License at
3631
+
3632
+ http://www.apache.org/licenses/LICENSE-2.0
3633
+
3634
+ Unless required by applicable law or agreed to in writing, software
3635
+ distributed under the License is distributed on an "AS IS" BASIS,
3636
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3637
+ See the License for the specific language governing permissions and
3638
+ limitations under the License.
3639
+ */
3640
+
3641
+ .workbench-run-status {
3642
+ height: 30px;
3643
+ padding: 4px;
3644
+ flex: none;
3645
+ display: flex;
3646
+ flex-direction: row;
3647
+ align-items: center;
3648
+ border-bottom: 1px solid var(--vscode-panel-border);
3649
+ }
3650
+
3651
+ .workbench-run-status.failed {
3652
+ color: var(--vscode-errorForeground);
3653
+ }
3654
+
3655
+ .workbench-run-status .codicon {
3656
+ margin-right: 4px;
3657
+ }
3658
+
3659
+ .workbench-run-duration {
3660
+ display: flex;
3661
+ flex: none;
3662
+ align-items: center;
3663
+ color: var(--vscode-editorCodeLens-foreground);
3664
+ }
3665
+ /*
3666
+ Copyright (c) Microsoft Corporation.
3667
+
3668
+ Licensed under the Apache License, Version 2.0 (the "License");
3669
+ you may not use this file except in compliance with the License.
3670
+ You may obtain a copy of the License at
3671
+
3672
+ http://www.apache.org/licenses/LICENSE-2.0
3673
+
3674
+ Unless required by applicable law or agreed to in writing, software
3675
+ distributed under the License is distributed on an "AS IS" BASIS,
3676
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3677
+ See the License for the specific language governing permissions and
3678
+ limitations under the License.
3679
+ */
3680
+
3681
+ .settings-view {
3682
+ flex: none;
3683
+ margin-top: 4px;
3684
+ }
3685
+
3686
+ .settings-view .setting label {
3687
+ display: flex;
3688
+ flex-direction: row;
3689
+ align-items: center;
3690
+ margin: 4px 2px;
3691
+ }
3692
+
3693
+ .settings-view .setting:first-of-type label {
3694
+ margin-top: 2px;
3695
+ }
3696
+
3697
+ .settings-view .setting:last-of-type label {
3698
+ margin-bottom: 2px;
3699
+ }
3700
+
3701
+ .settings-view .setting input {
3702
+ margin-right: 5px;
3703
+ }