@smoothdeploy/playwright-core 1.57.1 → 1.58.1-beta-1770452953000

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.

Potentially problematic release.


This version of @smoothdeploy/playwright-core might be problematic. Click here for more details.

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