@checkly/playwright-core 1.42.17 → 1.47.20-alpha

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