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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (155) hide show
  1. package/ThirdPartyNotices.txt +3223 -308
  2. package/browsers.json +21 -22
  3. package/lib/cli/program.js +4 -5
  4. package/lib/client/api.js +3 -0
  5. package/lib/client/browser.js +3 -5
  6. package/lib/client/browserContext.js +35 -0
  7. package/lib/client/browserType.js +4 -3
  8. package/lib/client/channelOwner.js +4 -3
  9. package/lib/client/clientInstrumentation.js +10 -0
  10. package/lib/client/connection.js +4 -0
  11. package/lib/client/elementHandle.js +3 -0
  12. package/lib/client/events.js +3 -0
  13. package/lib/client/fetch.js +3 -4
  14. package/lib/client/frame.js +1 -0
  15. package/lib/client/page.js +28 -1
  16. package/lib/client/pageAgent.js +64 -0
  17. package/lib/client/platform.js +3 -0
  18. package/lib/generated/injectedScriptSource.js +1 -1
  19. package/lib/generated/pollingRecorderSource.js +1 -1
  20. package/lib/mcpBundle.js +84 -0
  21. package/lib/mcpBundleImpl/index.js +147 -0
  22. package/lib/protocol/serializers.js +5 -0
  23. package/lib/protocol/validator.js +92 -3
  24. package/lib/remote/playwrightServer.js +1 -2
  25. package/lib/server/agent/actionRunner.js +335 -0
  26. package/lib/server/agent/actions.js +128 -0
  27. package/lib/server/agent/codegen.js +111 -0
  28. package/lib/server/agent/context.js +150 -0
  29. package/lib/server/agent/expectTools.js +156 -0
  30. package/lib/server/agent/pageAgent.js +204 -0
  31. package/lib/server/agent/performTools.js +262 -0
  32. package/lib/server/agent/tool.js +109 -0
  33. package/lib/server/artifact.js +1 -1
  34. package/lib/server/bidi/bidiBrowser.js +56 -12
  35. package/lib/server/bidi/bidiChromium.js +6 -11
  36. package/lib/server/bidi/bidiConnection.js +1 -0
  37. package/lib/server/bidi/bidiDeserializer.js +116 -0
  38. package/lib/server/bidi/bidiExecutionContext.js +75 -29
  39. package/lib/server/bidi/bidiFirefox.js +6 -8
  40. package/lib/server/bidi/bidiNetworkManager.js +1 -1
  41. package/lib/server/bidi/bidiPage.js +39 -28
  42. package/lib/server/bidi/third_party/bidiProtocolCore.js +1 -0
  43. package/lib/server/browserContext.js +32 -25
  44. package/lib/server/browserType.js +12 -4
  45. package/lib/server/chromium/chromium.js +14 -21
  46. package/lib/server/chromium/chromiumSwitches.js +2 -2
  47. package/lib/server/chromium/crBrowser.js +22 -12
  48. package/lib/server/chromium/crConnection.js +0 -5
  49. package/lib/server/chromium/crDevTools.js +0 -2
  50. package/lib/server/chromium/crNetworkManager.js +43 -2
  51. package/lib/server/chromium/crPage.js +19 -87
  52. package/lib/server/codegen/javascript.js +6 -29
  53. package/lib/server/deviceDescriptorsSource.json +56 -56
  54. package/lib/server/dispatchers/browserContextDispatcher.js +3 -0
  55. package/lib/server/dispatchers/dispatcher.js +6 -13
  56. package/lib/server/dispatchers/frameDispatcher.js +1 -1
  57. package/lib/server/dispatchers/pageAgentDispatcher.js +96 -0
  58. package/lib/server/dispatchers/pageDispatcher.js +4 -0
  59. package/lib/server/dom.js +12 -3
  60. package/lib/server/electron/electron.js +5 -2
  61. package/lib/server/firefox/ffBrowser.js +10 -20
  62. package/lib/server/firefox/ffConnection.js +0 -5
  63. package/lib/server/firefox/ffNetworkManager.js +2 -2
  64. package/lib/server/firefox/ffPage.js +15 -18
  65. package/lib/server/firefox/firefox.js +6 -8
  66. package/lib/server/frameSelectors.js +9 -3
  67. package/lib/server/frames.js +49 -33
  68. package/lib/server/instrumentation.js +3 -0
  69. package/lib/server/network.js +50 -12
  70. package/lib/server/page.js +33 -89
  71. package/lib/server/progress.js +26 -6
  72. package/lib/server/recorder/recorderApp.js +79 -100
  73. package/lib/server/recorder.js +55 -0
  74. package/lib/server/registry/browserFetcher.js +6 -4
  75. package/lib/server/registry/index.js +172 -149
  76. package/lib/server/registry/oopDownloadBrowserMain.js +3 -0
  77. package/lib/server/screencast.js +190 -0
  78. package/lib/server/screenshotCompositor.js +153 -0
  79. package/lib/server/trace/recorder/snapshotterInjected.js +21 -1
  80. package/lib/server/trace/recorder/tracing.js +21 -21
  81. package/lib/server/trace/viewer/traceParser.js +72 -0
  82. package/lib/server/trace/viewer/traceViewer.js +17 -13
  83. package/lib/server/utils/expectUtils.js +87 -2
  84. package/lib/server/utils/httpServer.js +4 -19
  85. package/lib/server/utils/network.js +37 -28
  86. package/lib/server/utils/nodePlatform.js +6 -0
  87. package/lib/server/videoRecorder.js +124 -0
  88. package/lib/server/webkit/webkit.js +4 -6
  89. package/lib/server/webkit/wkBrowser.js +2 -6
  90. package/lib/server/webkit/wkConnection.js +1 -6
  91. package/lib/server/webkit/wkInterceptableRequest.js +29 -1
  92. package/lib/server/webkit/wkPage.js +75 -46
  93. package/lib/utils/isomorphic/ariaSnapshot.js +60 -2
  94. package/lib/utils/isomorphic/lruCache.js +51 -0
  95. package/lib/utils/isomorphic/protocolMetainfo.js +9 -1
  96. package/lib/utils/isomorphic/stringUtils.js +49 -0
  97. package/lib/utils/isomorphic/trace/entries.js +16 -0
  98. package/lib/utils/isomorphic/trace/snapshotRenderer.js +499 -0
  99. package/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
  100. package/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
  101. package/lib/utils/isomorphic/trace/traceLoader.js +131 -0
  102. package/lib/utils/isomorphic/trace/traceModel.js +365 -0
  103. package/lib/utils/isomorphic/trace/traceModernizer.js +400 -0
  104. package/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
  105. package/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
  106. package/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
  107. package/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
  108. package/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
  109. package/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
  110. package/lib/utils/isomorphic/yaml.js +84 -0
  111. package/lib/utils.js +2 -0
  112. package/lib/utilsBundle.js +2 -5
  113. package/lib/utilsBundleImpl/index.js +165 -165
  114. package/lib/vite/htmlReport/index.html +21 -21
  115. package/lib/vite/recorder/assets/{codeMirrorModule-C3UTv-Ge.css → codeMirrorModule-DYBRYzYX.css} +1 -1
  116. package/lib/vite/recorder/assets/codeMirrorModule-DadYNm1I.js +32 -0
  117. package/lib/vite/recorder/assets/{index-Ri0uHF7I.css → index-BSjZa4pk.css} +1 -1
  118. package/lib/vite/recorder/assets/index-BhTWtUlo.js +193 -0
  119. package/lib/vite/recorder/index.html +2 -2
  120. package/lib/vite/traceViewer/assets/codeMirrorModule-8UJPCtp4.js +16884 -0
  121. package/lib/vite/{recorder/assets/codeMirrorModule-BoWUGj0J.js → traceViewer/assets/codeMirrorModule-BNr6yhVP.js} +1 -1
  122. package/lib/vite/traceViewer/assets/codeMirrorModule-Dimjuz94.js +32 -0
  123. package/lib/vite/traceViewer/assets/codeMirrorModule-DkmsYcws.js +32 -0
  124. package/lib/vite/traceViewer/assets/codeMirrorModule-DySgctgr.js +16884 -0
  125. package/lib/vite/traceViewer/assets/defaultSettingsView-B1vuWQsF.js +266 -0
  126. package/lib/vite/traceViewer/assets/defaultSettingsView-CtEsdeVH.js +266 -0
  127. package/lib/vite/traceViewer/assets/defaultSettingsView-D4fm31R-.js +34087 -0
  128. package/lib/vite/traceViewer/assets/defaultSettingsView-JtyB0yzL.js +34087 -0
  129. package/lib/vite/traceViewer/assets/defaultSettingsView-tEZf-LNj.js +266 -0
  130. package/lib/vite/traceViewer/assets/xtermModule-DDw6eROI.js +6168 -0
  131. package/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  132. package/lib/vite/traceViewer/codeMirrorModule.DuST8d_k.css +344 -0
  133. package/lib/vite/traceViewer/defaultSettingsView.5FCqBwKs.css +3986 -0
  134. package/lib/vite/traceViewer/defaultSettingsView.7ch9cixO.css +1 -0
  135. package/lib/vite/traceViewer/index.BQs8gGhY.js +249 -0
  136. package/lib/vite/traceViewer/index.BVu7tZDe.css +1 -0
  137. package/lib/vite/traceViewer/index.BoLn624r.js +2 -0
  138. package/lib/vite/traceViewer/index.Bq_EaK8x.js +249 -0
  139. package/lib/vite/traceViewer/index.C8YVh4B5.js +2 -0
  140. package/lib/vite/traceViewer/index.Cr7-GRf8.js +2 -0
  141. package/lib/vite/traceViewer/index.G-7UhDxt.css +164 -0
  142. package/lib/vite/traceViewer/index.html +4 -4
  143. package/lib/vite/traceViewer/sw.bundle.js +5 -3
  144. package/lib/vite/traceViewer/uiMode.-Kflt2XM.css +1440 -0
  145. package/lib/vite/traceViewer/uiMode.BTRKnokb.js +5 -0
  146. package/lib/vite/traceViewer/uiMode.CEZ5RVHh.js +5 -0
  147. package/lib/vite/traceViewer/uiMode.CIWF23si.js +1829 -0
  148. package/lib/vite/traceViewer/uiMode.Wi-DvIEY.js +1829 -0
  149. package/lib/vite/traceViewer/uiMode.html +3 -3
  150. package/lib/vite/traceViewer/uiMode.zEH1ejvz.js +5 -0
  151. package/lib/vite/traceViewer/xtermModule.BKlWQB97.css +218 -0
  152. package/package.json +3 -1
  153. package/types/protocol.d.ts +738 -159
  154. package/types/types.d.ts +25 -38
  155. package/lib/vite/recorder/assets/index-DJqDAOZp.js +0 -193
@@ -0,0 +1,1440 @@
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
+ .ui-mode-sidebar {
18
+ background-color: var(--vscode-sideBar-background);
19
+ }
20
+
21
+ .ui-mode-sidebar > .settings-toolbar {
22
+ border-top: 1px solid var(--vscode-panel-border);
23
+ cursor: pointer;
24
+ }
25
+
26
+ .ui-mode-sidebar > .settings-view {
27
+ margin: 0 0 8px 23px;
28
+ }
29
+
30
+ .ui-mode-sidebar .toolbar-button:not([disabled]) .codicon-play {
31
+ color: var(--vscode-debugIcon-restartForeground);
32
+ }
33
+
34
+ .ui-mode-sidebar .toolbar-button:not([disabled]) .codicon-debug-stop {
35
+ color: var(--vscode-debugIcon-stopForeground);
36
+ }
37
+
38
+ .ui-mode .section-toolbar {
39
+ border-top: 1px solid var(--vscode-panel-border);
40
+ }
41
+
42
+ .ui-mode .section-title {
43
+ display: flex;
44
+ flex: auto;
45
+ flex-direction: row;
46
+ align-items: center;
47
+ font-size: 11px;
48
+ text-transform: uppercase;
49
+ font-weight: bold;
50
+ text-overflow: ellipsis;
51
+ overflow: hidden;
52
+ padding: 8px;
53
+ height: 30px;
54
+ }
55
+
56
+ .ui-mode-sidebar img {
57
+ flex: none;
58
+ margin-left: 6px;
59
+ width: 24px;
60
+ height: 24px;
61
+ }
62
+
63
+ .ui-mode .disconnected {
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: center;
67
+ flex: auto;
68
+ flex-direction: column;
69
+ background-color: var(--vscode-editor-background);
70
+ position: absolute;
71
+ top: 0;
72
+ right: 0;
73
+ bottom: 0;
74
+ left: 0;
75
+ z-index: 1000;
76
+ line-height: 24px;
77
+ }
78
+
79
+ .disconnected .title {
80
+ font-size: 24px;
81
+ font-weight: bold;
82
+ margin-bottom: 30px;
83
+ }
84
+
85
+ .status-line {
86
+ flex: auto;
87
+ white-space: nowrap;
88
+ line-height: 22px;
89
+ padding-left: 10px;
90
+ display: flex;
91
+ flex-direction: row;
92
+ align-items: center;
93
+ height: 30px;
94
+ }
95
+
96
+ .status-line > div {
97
+ overflow: hidden;
98
+ text-overflow: ellipsis;
99
+ }
100
+
101
+ .ui-mode-sidebar input[type=search] {
102
+ flex: auto;
103
+ padding: 0 5px;
104
+ line-height: 24px;
105
+ outline: none;
106
+ margin: 0 4px;
107
+ border: none;
108
+ color: var(--vscode-input-foreground);
109
+ background-color: var(--vscode-input-background);
110
+ }
111
+
112
+ .ui-mode-sidebar select {
113
+ flex: auto;
114
+ padding: 0 5px;
115
+ height: 24px;
116
+ line-height: 24px;
117
+ outline: none;
118
+ border: none;
119
+ color: var(--vscode-input-foreground);
120
+ background-color: var(--vscode-input-background);
121
+ }
122
+ /*
123
+ Copyright (c) Microsoft Corporation.
124
+
125
+ Licensed under the Apache License, Version 2.0 (the "License");
126
+ you may not use this file except in compliance with the License.
127
+ You may obtain a copy of the License at
128
+
129
+ http://www.apache.org/licenses/LICENSE-2.0
130
+
131
+ Unless required by applicable law or agreed to in writing, software
132
+ distributed under the License is distributed on an "AS IS" BASIS,
133
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
134
+ See the License for the specific language governing permissions and
135
+ limitations under the License.
136
+ */
137
+
138
+ /*---------------------------------------------------------------------------------------------
139
+ * Copyright (c) Microsoft Corporation. All rights reserved.
140
+ * Licensed under the MIT License. See License.txt in the project root for license information.
141
+ *--------------------------------------------------------------------------------------------*/
142
+
143
+ :root {
144
+ --vscode-font-family: system-ui, "Ubuntu", "Droid Sans", sans-serif;
145
+ --vscode-font-weight: normal;
146
+ --vscode-font-size: 13px;
147
+ --vscode-editor-font-family: "Droid Sans Mono", "monospace", monospace;
148
+ --vscode-editor-font-weight: normal;
149
+ --vscode-editor-font-size: 14px;
150
+ --vscode-foreground: #616161;
151
+ --vscode-disabledForeground: rgba(97, 97, 97, 0.5);
152
+ --vscode-errorForeground: #a1260d;
153
+ --vscode-descriptionForeground: #717171;
154
+ --vscode-icon-foreground: #424242;
155
+ --vscode-focusBorder: #0090f1;
156
+ --vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
157
+ --vscode-textLink-foreground: #006ab1;
158
+ --vscode-textLink-activeForeground: #006ab1;
159
+ --vscode-textPreformat-foreground: #a31515;
160
+ --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
161
+ --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
162
+ --vscode-textCodeBlock-background: rgba(220, 220, 220, 0.4);
163
+ --vscode-widget-shadow: rgba(0, 0, 0, 0.16);
164
+ --vscode-input-background: #ffffff;
165
+ --vscode-input-foreground: #616161;
166
+ --vscode-inputOption-activeBorder: #007acc;
167
+ --vscode-inputOption-hoverBackground: rgba(184, 184, 184, 0.31);
168
+ --vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
169
+ --vscode-inputOption-activeForeground: #000000;
170
+ --vscode-input-placeholderForeground: #767676;
171
+ --vscode-inputValidation-infoBackground: #d6ecf2;
172
+ --vscode-inputValidation-infoBorder: #007acc;
173
+ --vscode-inputValidation-warningBackground: #f6f5d2;
174
+ --vscode-inputValidation-warningBorder: #b89500;
175
+ --vscode-inputValidation-errorBackground: #f2dede;
176
+ --vscode-inputValidation-errorBorder: #be1100;
177
+ --vscode-dropdown-background: #ffffff;
178
+ --vscode-dropdown-border: #cecece;
179
+ --vscode-checkbox-background: #ffffff;
180
+ --vscode-checkbox-border: #cecece;
181
+ --vscode-button-foreground: #ffffff;
182
+ --vscode-button-separator: rgba(255, 255, 255, 0.4);
183
+ --vscode-button-background: #007acc;
184
+ --vscode-button-hoverBackground: #0062a3;
185
+ --vscode-button-secondaryForeground: #ffffff;
186
+ --vscode-button-secondaryBackground: #5f6a79;
187
+ --vscode-button-secondaryHoverBackground: #4c5561;
188
+ --vscode-badge-background: #c4c4c4;
189
+ --vscode-badge-foreground: #333333;
190
+ --vscode-scrollbar-shadow: #dddddd;
191
+ --vscode-scrollbarSlider-background: rgba(100, 100, 100, 0.4);
192
+ --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
193
+ --vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
194
+ --vscode-progressBar-background: #0e70c0;
195
+ --vscode-editorError-foreground: #e51400;
196
+ --vscode-editorWarning-foreground: #bf8803;
197
+ --vscode-editorInfo-foreground: #1a85ff;
198
+ --vscode-editorHint-foreground: #6c6c6c;
199
+ --vscode-sash-hoverBorder: #0090f1;
200
+ --vscode-editor-background: #ffffff;
201
+ --vscode-editor-foreground: #000000;
202
+ --vscode-editorStickyScroll-background: #ffffff;
203
+ --vscode-editorStickyScrollHover-background: #f0f0f0;
204
+ --vscode-editorWidget-background: #f3f3f3;
205
+ --vscode-editorWidget-foreground: #616161;
206
+ --vscode-editorWidget-border: #c8c8c8;
207
+ --vscode-quickInput-background: #f3f3f3;
208
+ --vscode-quickInput-foreground: #616161;
209
+ --vscode-quickInputTitle-background: rgba(0, 0, 0, 0.06);
210
+ --vscode-pickerGroup-foreground: #0066bf;
211
+ --vscode-pickerGroup-border: #cccedb;
212
+ --vscode-keybindingLabel-background: rgba(221, 221, 221, 0.4);
213
+ --vscode-keybindingLabel-foreground: #555555;
214
+ --vscode-keybindingLabel-border: rgba(204, 204, 204, 0.4);
215
+ --vscode-keybindingLabel-bottomBorder: rgba(187, 187, 187, 0.4);
216
+ --vscode-editor-selectionBackground: #add6ff;
217
+ --vscode-editor-inactiveSelectionBackground: #e5ebf1;
218
+ --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.5);
219
+ --vscode-editor-findMatchBackground: #a8ac94;
220
+ --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
221
+ --vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, 0.3);
222
+ --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
223
+ --vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
224
+ --vscode-editorHoverWidget-background: #f3f3f3;
225
+ --vscode-editorHoverWidget-foreground: #616161;
226
+ --vscode-editorHoverWidget-border: #c8c8c8;
227
+ --vscode-editorHoverWidget-statusBarBackground: #e7e7e7;
228
+ --vscode-editorLink-activeForeground: #0000ff;
229
+ --vscode-editorInlayHint-foreground: rgba(51, 51, 51, 0.8);
230
+ --vscode-editorInlayHint-background: rgba(196, 196, 196, 0.3);
231
+ --vscode-editorInlayHint-typeForeground: rgba(51, 51, 51, 0.8);
232
+ --vscode-editorInlayHint-typeBackground: rgba(196, 196, 196, 0.3);
233
+ --vscode-editorInlayHint-parameterForeground: rgba(51, 51, 51, 0.8);
234
+ --vscode-editorInlayHint-parameterBackground: rgba(196, 196, 196, 0.3);
235
+ --vscode-editorLightBulb-foreground: #ddb100;
236
+ --vscode-editorLightBulbAutoFix-foreground: #007acc;
237
+ --vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.4);
238
+ --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.3);
239
+ --vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
240
+ --vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
241
+ --vscode-diffEditor-diagonalFill: rgba(34, 34, 34, 0.2);
242
+ --vscode-list-focusOutline: #0090f1;
243
+ --vscode-list-focusAndSelectionOutline: #90c2f9;
244
+ --vscode-list-activeSelectionBackground: #0060c0;
245
+ --vscode-list-activeSelectionForeground: #ffffff;
246
+ --vscode-list-activeSelectionIconForeground: #ffffff;
247
+ --vscode-list-inactiveSelectionBackground: #e4e6f1;
248
+ --vscode-list-hoverBackground: #e8e8e8;
249
+ --vscode-list-dropBackground: #d6ebff;
250
+ --vscode-list-highlightForeground: #0066bf;
251
+ --vscode-list-focusHighlightForeground: #bbe7ff;
252
+ --vscode-list-invalidItemForeground: #b89500;
253
+ --vscode-list-errorForeground: #b01011;
254
+ --vscode-list-warningForeground: #855f00;
255
+ --vscode-listFilterWidget-background: #f3f3f3;
256
+ --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
257
+ --vscode-listFilterWidget-noMatchesOutline: #be1100;
258
+ --vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.16);
259
+ --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
260
+ --vscode-tree-indentGuidesStroke: #a9a9a9;
261
+ --vscode-tree-tableColumnsBorder: rgba(97, 97, 97, 0.13);
262
+ --vscode-tree-tableOddRowsBackground: rgba(97, 97, 97, 0.04);
263
+ --vscode-list-deemphasizedForeground: #8e8e90;
264
+ --vscode-quickInputList-focusForeground: #ffffff;
265
+ --vscode-quickInputList-focusIconForeground: #ffffff;
266
+ --vscode-quickInputList-focusBackground: #0060c0;
267
+ --vscode-menu-foreground: #616161;
268
+ --vscode-menu-background: #ffffff;
269
+ --vscode-menu-selectionForeground: #ffffff;
270
+ --vscode-menu-selectionBackground: #0060c0;
271
+ --vscode-menu-separatorBackground: #d4d4d4;
272
+ --vscode-toolbar-hoverBackground: rgba(184, 184, 184, 0.31);
273
+ --vscode-toolbar-activeBackground: rgba(166, 166, 166, 0.31);
274
+ --vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
275
+ --vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
276
+ --vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
277
+ --vscode-breadcrumb-background: #ffffff;
278
+ --vscode-breadcrumb-focusForeground: #4e4e4e;
279
+ --vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
280
+ --vscode-breadcrumbPicker-background: #f3f3f3;
281
+ --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
282
+ --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
283
+ --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
284
+ --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
285
+ --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
286
+ --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
287
+ --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
288
+ --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
289
+ --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
290
+ --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
291
+ --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
292
+ --vscode-minimap-findMatchHighlight: #d18616;
293
+ --vscode-minimap-selectionOccurrenceHighlight: #c9c9c9;
294
+ --vscode-minimap-selectionHighlight: #add6ff;
295
+ --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
296
+ --vscode-minimap-warningHighlight: #bf8803;
297
+ --vscode-minimap-foregroundOpacity: #000000;
298
+ --vscode-minimapSlider-background: rgba(100, 100, 100, 0.2);
299
+ --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
300
+ --vscode-minimapSlider-activeBackground: rgba(0, 0, 0, 0.3);
301
+ --vscode-problemsErrorIcon-foreground: #e51400;
302
+ --vscode-problemsWarningIcon-foreground: #bf8803;
303
+ --vscode-problemsInfoIcon-foreground: #1a85ff;
304
+ --vscode-charts-foreground: #616161;
305
+ --vscode-charts-lines: rgba(97, 97, 97, 0.5);
306
+ --vscode-charts-red: #e51400;
307
+ --vscode-charts-blue: #1a85ff;
308
+ --vscode-charts-yellow: #bf8803;
309
+ --vscode-charts-orange: #d18616;
310
+ --vscode-charts-green: #388a34;
311
+ --vscode-charts-purple: #652d90;
312
+ --vscode-editor-lineHighlightBorder: #eeeeee;
313
+ --vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, 0.2);
314
+ --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
315
+ --vscode-editorCursor-foreground: #000000;
316
+ --vscode-editorWhitespace-foreground: rgba(51, 51, 51, 0.2);
317
+ --vscode-editorIndentGuide-background: #d3d3d3;
318
+ --vscode-editorIndentGuide-activeBackground: #939393;
319
+ --vscode-editorLineNumber-foreground: #237893;
320
+ --vscode-editorActiveLineNumber-foreground: #0b216f;
321
+ --vscode-editorLineNumber-activeForeground: #0b216f;
322
+ --vscode-editorRuler-foreground: #d3d3d3;
323
+ --vscode-editorCodeLens-foreground: #919191;
324
+ --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
325
+ --vscode-editorBracketMatch-border: #b9b9b9;
326
+ --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
327
+ --vscode-editorGutter-background: #ffffff;
328
+ --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
329
+ --vscode-editorGhostText-foreground: rgba(0, 0, 0, 0.47);
330
+ --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
331
+ --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
332
+ --vscode-editorOverviewRuler-warningForeground: #bf8803;
333
+ --vscode-editorOverviewRuler-infoForeground: #1a85ff;
334
+ --vscode-editorBracketHighlight-foreground1: #0431fa;
335
+ --vscode-editorBracketHighlight-foreground2: #319331;
336
+ --vscode-editorBracketHighlight-foreground3: #7b3814;
337
+ --vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
338
+ --vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
339
+ --vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
340
+ --vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
341
+ --vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
342
+ --vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
343
+ --vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
344
+ --vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
345
+ --vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
346
+ --vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
347
+ --vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
348
+ --vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
349
+ --vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
350
+ --vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
351
+ --vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
352
+ --vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
353
+ --vscode-editorUnicodeHighlight-border: #cea33d;
354
+ --vscode-editorUnicodeHighlight-background: rgba(206, 163, 61, 0.08);
355
+ --vscode-symbolIcon-arrayForeground: #616161;
356
+ --vscode-symbolIcon-booleanForeground: #616161;
357
+ --vscode-symbolIcon-classForeground: #d67e00;
358
+ --vscode-symbolIcon-colorForeground: #616161;
359
+ --vscode-symbolIcon-constantForeground: #616161;
360
+ --vscode-symbolIcon-constructorForeground: #652d90;
361
+ --vscode-symbolIcon-enumeratorForeground: #d67e00;
362
+ --vscode-symbolIcon-enumeratorMemberForeground: #007acc;
363
+ --vscode-symbolIcon-eventForeground: #d67e00;
364
+ --vscode-symbolIcon-fieldForeground: #007acc;
365
+ --vscode-symbolIcon-fileForeground: #616161;
366
+ --vscode-symbolIcon-folderForeground: #616161;
367
+ --vscode-symbolIcon-functionForeground: #652d90;
368
+ --vscode-symbolIcon-interfaceForeground: #007acc;
369
+ --vscode-symbolIcon-keyForeground: #616161;
370
+ --vscode-symbolIcon-keywordForeground: #616161;
371
+ --vscode-symbolIcon-methodForeground: #652d90;
372
+ --vscode-symbolIcon-moduleForeground: #616161;
373
+ --vscode-symbolIcon-namespaceForeground: #616161;
374
+ --vscode-symbolIcon-nullForeground: #616161;
375
+ --vscode-symbolIcon-numberForeground: #616161;
376
+ --vscode-symbolIcon-objectForeground: #616161;
377
+ --vscode-symbolIcon-operatorForeground: #616161;
378
+ --vscode-symbolIcon-packageForeground: #616161;
379
+ --vscode-symbolIcon-propertyForeground: #616161;
380
+ --vscode-symbolIcon-referenceForeground: #616161;
381
+ --vscode-symbolIcon-snippetForeground: #616161;
382
+ --vscode-symbolIcon-stringForeground: #616161;
383
+ --vscode-symbolIcon-structForeground: #616161;
384
+ --vscode-symbolIcon-textForeground: #616161;
385
+ --vscode-symbolIcon-typeParameterForeground: #616161;
386
+ --vscode-symbolIcon-unitForeground: #616161;
387
+ --vscode-symbolIcon-variableForeground: #007acc;
388
+ --vscode-editorHoverWidget-highlightForeground: #0066bf;
389
+ --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
390
+ --vscode-editor-foldBackground: rgba(173, 214, 255, 0.3);
391
+ --vscode-editorGutter-foldingControlForeground: #424242;
392
+ --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
393
+ --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.25);
394
+ --vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, 0.25);
395
+ --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
396
+ --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
397
+ --vscode-peekViewTitle-background: rgba(26, 133, 255, 0.1);
398
+ --vscode-peekViewTitleLabel-foreground: #000000;
399
+ --vscode-peekViewTitleDescription-foreground: #616161;
400
+ --vscode-peekView-border: #1a85ff;
401
+ --vscode-peekViewResult-background: #f3f3f3;
402
+ --vscode-peekViewResult-lineForeground: #646465;
403
+ --vscode-peekViewResult-fileForeground: #1e1e1e;
404
+ --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
405
+ --vscode-peekViewResult-selectionForeground: #6c6c6c;
406
+ --vscode-peekViewEditor-background: #f2f8fc;
407
+ --vscode-peekViewEditorGutter-background: #f2f8fc;
408
+ --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
409
+ --vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, 0.87);
410
+ --vscode-editorMarkerNavigationError-background: #e51400;
411
+ --vscode-editorMarkerNavigationError-headerBackground: rgba(229, 20, 0, 0.1);
412
+ --vscode-editorMarkerNavigationWarning-background: #bf8803;
413
+ --vscode-editorMarkerNavigationWarning-headerBackground: rgba(191, 136, 3, 0.1);
414
+ --vscode-editorMarkerNavigationInfo-background: #1a85ff;
415
+ --vscode-editorMarkerNavigationInfo-headerBackground: rgba(26, 133, 255, 0.1);
416
+ --vscode-editorMarkerNavigation-background: #ffffff;
417
+ --vscode-editorSuggestWidget-background: #f3f3f3;
418
+ --vscode-editorSuggestWidget-border: #c8c8c8;
419
+ --vscode-editorSuggestWidget-foreground: #000000;
420
+ --vscode-editorSuggestWidget-selectedForeground: #ffffff;
421
+ --vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
422
+ --vscode-editorSuggestWidget-selectedBackground: #0060c0;
423
+ --vscode-editorSuggestWidget-highlightForeground: #0066bf;
424
+ --vscode-editorSuggestWidget-focusHighlightForeground: #bbe7ff;
425
+ --vscode-editorSuggestWidgetStatus-foreground: rgba(0, 0, 0, 0.5);
426
+ --vscode-tab-activeBackground: #ffffff;
427
+ --vscode-tab-unfocusedActiveBackground: #ffffff;
428
+ --vscode-tab-inactiveBackground: #ececec;
429
+ --vscode-tab-unfocusedInactiveBackground: #ececec;
430
+ --vscode-tab-activeForeground: #333333;
431
+ --vscode-tab-inactiveForeground: rgba(51, 51, 51, 0.7);
432
+ --vscode-tab-unfocusedActiveForeground: rgba(51, 51, 51, 0.7);
433
+ --vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, 0.35);
434
+ --vscode-tab-border: #f3f3f3;
435
+ --vscode-tab-lastPinnedBorder: rgba(97, 97, 97, 0.19);
436
+ --vscode-tab-activeModifiedBorder: #33aaee;
437
+ --vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, 0.5);
438
+ --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, 0.7);
439
+ --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, 0.25);
440
+ --vscode-editorPane-background: #ffffff;
441
+ --vscode-editorGroupHeader-tabsBackground: #f3f3f3;
442
+ --vscode-editorGroupHeader-noTabsBackground: #ffffff;
443
+ --vscode-editorGroup-border: #e7e7e7;
444
+ --vscode-editorGroup-dropBackground: rgba(38, 119, 203, 0.18);
445
+ --vscode-editorGroup-dropIntoPromptForeground: #616161;
446
+ --vscode-editorGroup-dropIntoPromptBackground: #f3f3f3;
447
+ --vscode-sideBySideEditor-horizontalBorder: #e7e7e7;
448
+ --vscode-sideBySideEditor-verticalBorder: #e7e7e7;
449
+ --vscode-panel-background: #ffffff;
450
+ --vscode-panel-border: rgba(128, 128, 128, 0.35);
451
+ --vscode-panelTitle-activeForeground: #424242;
452
+ --vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, 0.75);
453
+ --vscode-panelTitle-activeBorder: #424242;
454
+ --vscode-panelInput-border: #dddddd;
455
+ --vscode-panel-dropBorder: #424242;
456
+ --vscode-panelSection-dropBackground: rgba(38, 119, 203, 0.18);
457
+ --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
458
+ --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
459
+ --vscode-banner-background: #004386;
460
+ --vscode-banner-foreground: #ffffff;
461
+ --vscode-banner-iconForeground: #1a85ff;
462
+ --vscode-statusBar-foreground: #ffffff;
463
+ --vscode-statusBar-noFolderForeground: #ffffff;
464
+ --vscode-statusBar-background: #007acc;
465
+ --vscode-statusBar-noFolderBackground: #68217a;
466
+ --vscode-statusBar-focusBorder: #ffffff;
467
+ --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
468
+ --vscode-statusBarItem-focusBorder: #ffffff;
469
+ --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
470
+ --vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
471
+ --vscode-statusBarItem-prominentForeground: #ffffff;
472
+ --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
473
+ --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
474
+ --vscode-statusBarItem-errorBackground: #c72e0f;
475
+ --vscode-statusBarItem-errorForeground: #ffffff;
476
+ --vscode-statusBarItem-warningBackground: #725102;
477
+ --vscode-statusBarItem-warningForeground: #ffffff;
478
+ --vscode-activityBar-background: #2c2c2c;
479
+ --vscode-activityBar-foreground: #ffffff;
480
+ --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
481
+ --vscode-activityBar-activeBorder: #ffffff;
482
+ --vscode-activityBar-dropBorder: #ffffff;
483
+ --vscode-activityBarBadge-background: #007acc;
484
+ --vscode-activityBarBadge-foreground: #ffffff;
485
+ --vscode-statusBarItem-remoteBackground: #16825d;
486
+ --vscode-statusBarItem-remoteForeground: #ffffff;
487
+ --vscode-extensionBadge-remoteBackground: #007acc;
488
+ --vscode-extensionBadge-remoteForeground: #ffffff;
489
+ --vscode-sideBar-background: #f3f3f3;
490
+ --vscode-sideBarTitle-foreground: #6f6f6f;
491
+ --vscode-sideBar-dropBackground: rgba(38, 119, 203, 0.18);
492
+ --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
493
+ --vscode-sideBarSectionHeader-border: rgba(97, 97, 97, 0.19);
494
+ --vscode-titleBar-activeForeground: #333333;
495
+ --vscode-titleBar-inactiveForeground: rgba(51, 51, 51, 0.6);
496
+ --vscode-titleBar-activeBackground: #dddddd;
497
+ --vscode-titleBar-inactiveBackground: rgba(221, 221, 221, 0.6);
498
+ --vscode-menubar-selectionForeground: #333333;
499
+ --vscode-menubar-selectionBackground: rgba(184, 184, 184, 0.31);
500
+ --vscode-notifications-foreground: #616161;
501
+ --vscode-notifications-background: #f3f3f3;
502
+ --vscode-notificationLink-foreground: #006ab1;
503
+ --vscode-notificationCenterHeader-background: #e7e7e7;
504
+ --vscode-notifications-border: #e7e7e7;
505
+ --vscode-notificationsErrorIcon-foreground: #e51400;
506
+ --vscode-notificationsWarningIcon-foreground: #bf8803;
507
+ --vscode-notificationsInfoIcon-foreground: #1a85ff;
508
+ --vscode-commandCenter-foreground: #333333;
509
+ --vscode-commandCenter-activeForeground: #333333;
510
+ --vscode-commandCenter-activeBackground: rgba(184, 184, 184, 0.31);
511
+ --vscode-commandCenter-border: rgba(128, 128, 128, 0.35);
512
+ --vscode-editorCommentsWidget-resolvedBorder: rgba(97, 97, 97, 0.5);
513
+ --vscode-editorCommentsWidget-unresolvedBorder: #1a85ff;
514
+ --vscode-editorCommentsWidget-rangeBackground: rgba(26, 133, 255, 0.1);
515
+ --vscode-editorCommentsWidget-rangeBorder: rgba(26, 133, 255, 0.4);
516
+ --vscode-editorCommentsWidget-rangeActiveBackground: rgba(26, 133, 255, 0.1);
517
+ --vscode-editorCommentsWidget-rangeActiveBorder: rgba(26, 133, 255, 0.4);
518
+ --vscode-editorGutter-commentRangeForeground: #d5d8e9;
519
+ --vscode-debugToolBar-background: #f3f3f3;
520
+ --vscode-debugIcon-startForeground: #388a34;
521
+ --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
522
+ --vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
523
+ --vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
524
+ --vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.4);
525
+ --vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
526
+ --vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
527
+ --vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
528
+ --vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
529
+ --vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
530
+ --vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
531
+ --vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
532
+ --vscode-settings-headerForeground: #444444;
533
+ --vscode-settings-modifiedItemIndicator: #66afe0;
534
+ --vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
535
+ --vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
536
+ --vscode-settings-dropdownBackground: #ffffff;
537
+ --vscode-settings-dropdownBorder: #cecece;
538
+ --vscode-settings-dropdownListBorder: #c8c8c8;
539
+ --vscode-settings-checkboxBackground: #ffffff;
540
+ --vscode-settings-checkboxBorder: #cecece;
541
+ --vscode-settings-textInputBackground: #ffffff;
542
+ --vscode-settings-textInputForeground: #616161;
543
+ --vscode-settings-textInputBorder: #cecece;
544
+ --vscode-settings-numberInputBackground: #ffffff;
545
+ --vscode-settings-numberInputForeground: #616161;
546
+ --vscode-settings-numberInputBorder: #cecece;
547
+ --vscode-settings-focusedRowBackground: rgba(232, 232, 232, 0.6);
548
+ --vscode-settings-rowHoverBackground: rgba(232, 232, 232, 0.3);
549
+ --vscode-settings-focusedRowBorder: rgba(0, 0, 0, 0.12);
550
+ --vscode-terminal-foreground: #333333;
551
+ --vscode-terminal-selectionBackground: #add6ff;
552
+ --vscode-terminal-inactiveSelectionBackground: #e5ebf1;
553
+ --vscode-terminalCommandDecoration-defaultBackground: rgba(0, 0, 0, 0.25);
554
+ --vscode-terminalCommandDecoration-successBackground: #2090d3;
555
+ --vscode-terminalCommandDecoration-errorBackground: #e51400;
556
+ --vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
557
+ --vscode-terminal-border: rgba(128, 128, 128, 0.35);
558
+ --vscode-terminal-findMatchBackground: #a8ac94;
559
+ --vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
560
+ --vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
561
+ --vscode-terminal-dropBackground: rgba(38, 119, 203, 0.18);
562
+ --vscode-testing-iconFailed: #f14c4c;
563
+ --vscode-testing-iconErrored: #f14c4c;
564
+ --vscode-testing-iconPassed: #73c991;
565
+ --vscode-testing-runAction: #73c991;
566
+ --vscode-testing-iconQueued: #cca700;
567
+ --vscode-testing-iconUnset: #848484;
568
+ --vscode-testing-iconSkipped: #848484;
569
+ --vscode-testing-peekBorder: #e51400;
570
+ --vscode-testing-peekHeaderBackground: rgba(229, 20, 0, 0.1);
571
+ --vscode-testing-message\.error\.decorationForeground: #e51400;
572
+ --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
573
+ --vscode-testing-message\.info\.decorationForeground: rgba(0, 0, 0, 0.5);
574
+ --vscode-welcomePage-tileBackground: #f3f3f3;
575
+ --vscode-welcomePage-tileHoverBackground: #dbdbdb;
576
+ --vscode-welcomePage-tileShadow: rgba(0, 0, 0, 0.16);
577
+ --vscode-welcomePage-progress\.background: #ffffff;
578
+ --vscode-welcomePage-progress\.foreground: #006ab1;
579
+ --vscode-debugExceptionWidget-border: #a31515;
580
+ --vscode-debugExceptionWidget-background: #f1dfde;
581
+ --vscode-ports-iconRunningProcessForeground: #369432;
582
+ --vscode-statusBar-debuggingBackground: #cc6633;
583
+ --vscode-statusBar-debuggingForeground: #ffffff;
584
+ --vscode-editor-inlineValuesForeground: rgba(0, 0, 0, 0.5);
585
+ --vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
586
+ --vscode-editorGutter-modifiedBackground: #2090d3;
587
+ --vscode-editorGutter-addedBackground: #48985d;
588
+ --vscode-editorGutter-deletedBackground: #e51400;
589
+ --vscode-minimapGutter-modifiedBackground: #2090d3;
590
+ --vscode-minimapGutter-addedBackground: #48985d;
591
+ --vscode-minimapGutter-deletedBackground: #e51400;
592
+ --vscode-editorOverviewRuler-modifiedForeground: rgba(32, 144, 211, 0.6);
593
+ --vscode-editorOverviewRuler-addedForeground: rgba(72, 152, 93, 0.6);
594
+ --vscode-editorOverviewRuler-deletedForeground: rgba(229, 20, 0, 0.6);
595
+ --vscode-debugIcon-breakpointForeground: #e51400;
596
+ --vscode-debugIcon-breakpointDisabledForeground: #848484;
597
+ --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
598
+ --vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;
599
+ --vscode-debugIcon-breakpointStackframeForeground: #89d185;
600
+ --vscode-notebook-cellBorderColor: #e8e8e8;
601
+ --vscode-notebook-focusedEditorBorder: #0090f1;
602
+ --vscode-notebookStatusSuccessIcon-foreground: #388a34;
603
+ --vscode-notebookStatusErrorIcon-foreground: #a1260d;
604
+ --vscode-notebookStatusRunningIcon-foreground: #616161;
605
+ --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
606
+ --vscode-notebook-selectedCellBackground: rgba(200, 221, 241, 0.31);
607
+ --vscode-notebook-selectedCellBorder: #e8e8e8;
608
+ --vscode-notebook-focusedCellBorder: #0090f1;
609
+ --vscode-notebook-inactiveFocusedCellBorder: #e8e8e8;
610
+ --vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, 0.08);
611
+ --vscode-notebook-cellInsertionIndicator: #0090f1;
612
+ --vscode-notebookScrollbarSlider-background: rgba(100, 100, 100, 0.4);
613
+ --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
614
+ --vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
615
+ --vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, 0.2);
616
+ --vscode-notebook-cellEditorBackground: #f3f3f3;
617
+ --vscode-notebook-editorBackground: #ffffff;
618
+ --vscode-keybindingTable-headerBackground: rgba(97, 97, 97, 0.04);
619
+ --vscode-keybindingTable-rowsBackground: rgba(97, 97, 97, 0.04);
620
+ --vscode-scm-providerBorder: #c8c8c8;
621
+ --vscode-searchEditor-textInputBorder: #cecece;
622
+ --vscode-debugTokenExpression-name: #9b46b0;
623
+ --vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
624
+ --vscode-debugTokenExpression-string: #a31515;
625
+ --vscode-debugTokenExpression-boolean: #0000ff;
626
+ --vscode-debugTokenExpression-number: #098658;
627
+ --vscode-debugTokenExpression-error: #e51400;
628
+ --vscode-debugView-exceptionLabelForeground: #ffffff;
629
+ --vscode-debugView-exceptionLabelBackground: #a31515;
630
+ --vscode-debugView-stateLabelForeground: #616161;
631
+ --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
632
+ --vscode-debugView-valueChangedHighlight: #569cd6;
633
+ --vscode-debugConsole-infoForeground: #1a85ff;
634
+ --vscode-debugConsole-warningForeground: #bf8803;
635
+ --vscode-debugConsole-errorForeground: #a1260d;
636
+ --vscode-debugConsole-sourceForeground: #616161;
637
+ --vscode-debugConsoleInputIcon-foreground: #616161;
638
+ --vscode-debugIcon-pauseForeground: #007acc;
639
+ --vscode-debugIcon-stopForeground: #a1260d;
640
+ --vscode-debugIcon-disconnectForeground: #a1260d;
641
+ --vscode-debugIcon-restartForeground: #388a34;
642
+ --vscode-debugIcon-stepOverForeground: #007acc;
643
+ --vscode-debugIcon-stepIntoForeground: #007acc;
644
+ --vscode-debugIcon-stepOutForeground: #007acc;
645
+ --vscode-debugIcon-continueForeground: #007acc;
646
+ --vscode-debugIcon-stepBackForeground: #007acc;
647
+ --vscode-extensionButton-prominentBackground: #007acc;
648
+ --vscode-extensionButton-prominentForeground: #ffffff;
649
+ --vscode-extensionButton-prominentHoverBackground: #0062a3;
650
+ --vscode-extensionIcon-starForeground: #df6100;
651
+ --vscode-extensionIcon-verifiedForeground: #006ab1;
652
+ --vscode-extensionIcon-preReleaseForeground: #1d9271;
653
+ --vscode-extensionIcon-sponsorForeground: #b51e78;
654
+ --vscode-terminal-ansiBlack: #000000;
655
+ --vscode-terminal-ansiRed: #cd3131;
656
+ --vscode-terminal-ansiGreen: #00bc00;
657
+ --vscode-terminal-ansiYellow: #949800;
658
+ --vscode-terminal-ansiBlue: #0451a5;
659
+ --vscode-terminal-ansiMagenta: #bc05bc;
660
+ --vscode-terminal-ansiCyan: #0598bc;
661
+ --vscode-terminal-ansiWhite: #555555;
662
+ --vscode-terminal-ansiBrightBlack: #666666;
663
+ --vscode-terminal-ansiBrightRed: #cd3131;
664
+ --vscode-terminal-ansiBrightGreen: #14ce14;
665
+ --vscode-terminal-ansiBrightYellow: #b5ba00;
666
+ --vscode-terminal-ansiBrightBlue: #0451a5;
667
+ --vscode-terminal-ansiBrightMagenta: #bc05bc;
668
+ --vscode-terminal-ansiBrightCyan: #0598bc;
669
+ --vscode-terminal-ansiBrightWhite: #a5a5a5;
670
+ --vscode-interactive-activeCodeBorder: #1a85ff;
671
+ --vscode-interactive-inactiveCodeBorder: #e4e6f1;
672
+ --vscode-gitDecoration-addedResourceForeground: #587c0c;
673
+ --vscode-gitDecoration-modifiedResourceForeground: #895503;
674
+ --vscode-gitDecoration-deletedResourceForeground: #ad0707;
675
+ --vscode-gitDecoration-renamedResourceForeground: #007100;
676
+ --vscode-gitDecoration-untrackedResourceForeground: #007100;
677
+ --vscode-gitDecoration-ignoredResourceForeground: #8e8e90;
678
+ --vscode-gitDecoration-stageModifiedResourceForeground: #895503;
679
+ --vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;
680
+ --vscode-gitDecoration-conflictingResourceForeground: #ad0707;
681
+ --vscode-gitDecoration-submoduleResourceForeground: #1258a7;
682
+ }
683
+
684
+ :root.light-mode {
685
+ color-scheme: light;
686
+ }
687
+
688
+ :root.dark-mode {
689
+ color-scheme: dark;
690
+ --vscode-font-family: system-ui, "Ubuntu", "Droid Sans", sans-serif;
691
+ --vscode-font-weight: normal;
692
+ --vscode-font-size: 13px;
693
+ --vscode-editor-font-family: "Droid Sans Mono", "monospace", monospace;
694
+ --vscode-editor-font-weight: normal;
695
+ --vscode-editor-font-size: 14px;
696
+ --vscode-foreground: #cccccc;
697
+ --vscode-disabledForeground: rgba(204, 204, 204, 0.5);
698
+ --vscode-errorForeground: #f48771;
699
+ --vscode-descriptionForeground: rgba(204, 204, 204, 0.7);
700
+ --vscode-icon-foreground: #c5c5c5;
701
+ --vscode-focusBorder: #007fd4;
702
+ --vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
703
+ --vscode-textLink-foreground: #3794ff;
704
+ --vscode-textLink-activeForeground: #3794ff;
705
+ --vscode-textPreformat-foreground: #d7ba7d;
706
+ --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
707
+ --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
708
+ --vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4);
709
+ --vscode-widget-shadow: rgba(0, 0, 0, 0.36);
710
+ --vscode-input-background: #3c3c3c;
711
+ --vscode-input-foreground: #cccccc;
712
+ --vscode-inputOption-activeBorder: #007acc;
713
+ --vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
714
+ --vscode-inputOption-activeBackground: rgba(0, 127, 212, 0.4);
715
+ --vscode-inputOption-activeForeground: #ffffff;
716
+ --vscode-input-placeholderForeground: #a6a6a6;
717
+ --vscode-inputValidation-infoBackground: #063b49;
718
+ --vscode-inputValidation-infoBorder: #007acc;
719
+ --vscode-inputValidation-warningBackground: #352a05;
720
+ --vscode-inputValidation-warningBorder: #b89500;
721
+ --vscode-inputValidation-errorBackground: #5a1d1d;
722
+ --vscode-inputValidation-errorBorder: #be1100;
723
+ --vscode-dropdown-background: #3c3c3c;
724
+ --vscode-dropdown-foreground: #f0f0f0;
725
+ --vscode-dropdown-border: #3c3c3c;
726
+ --vscode-checkbox-background: #3c3c3c;
727
+ --vscode-checkbox-foreground: #f0f0f0;
728
+ --vscode-checkbox-border: #3c3c3c;
729
+ --vscode-button-foreground: #ffffff;
730
+ --vscode-button-separator: rgba(255, 255, 255, 0.4);
731
+ --vscode-button-background: #0e639c;
732
+ --vscode-button-hoverBackground: #1177bb;
733
+ --vscode-button-secondaryForeground: #ffffff;
734
+ --vscode-button-secondaryBackground: #3a3d41;
735
+ --vscode-button-secondaryHoverBackground: #45494e;
736
+ --vscode-badge-background: #4d4d4d;
737
+ --vscode-badge-foreground: #ffffff;
738
+ --vscode-scrollbar-shadow: #000000;
739
+ --vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
740
+ --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
741
+ --vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
742
+ --vscode-progressBar-background: #0e70c0;
743
+ --vscode-editorError-foreground: #f14c4c;
744
+ --vscode-editorWarning-foreground: #cca700;
745
+ --vscode-editorInfo-foreground: #3794ff;
746
+ --vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
747
+ --vscode-sash-hoverBorder: #007fd4;
748
+ --vscode-editor-background: #1e1e1e;
749
+ --vscode-editor-foreground: #d4d4d4;
750
+ --vscode-editorStickyScroll-background: #1e1e1e;
751
+ --vscode-editorStickyScrollHover-background: #2a2d2e;
752
+ --vscode-editorWidget-background: #252526;
753
+ --vscode-editorWidget-foreground: #cccccc;
754
+ --vscode-editorWidget-border: #454545;
755
+ --vscode-quickInput-background: #252526;
756
+ --vscode-quickInput-foreground: #cccccc;
757
+ --vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
758
+ --vscode-pickerGroup-foreground: #3794ff;
759
+ --vscode-pickerGroup-border: #3f3f46;
760
+ --vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
761
+ --vscode-keybindingLabel-foreground: #cccccc;
762
+ --vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
763
+ --vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
764
+ --vscode-editor-selectionBackground: #264f78;
765
+ --vscode-editor-inactiveSelectionBackground: #3a3d41;
766
+ --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
767
+ --vscode-editor-findMatchBackground: #515c6a;
768
+ --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
769
+ --vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
770
+ --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
771
+ --vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
772
+ --vscode-editorHoverWidget-background: #252526;
773
+ --vscode-editorHoverWidget-foreground: #cccccc;
774
+ --vscode-editorHoverWidget-border: #454545;
775
+ --vscode-editorHoverWidget-statusBarBackground: #2c2c2d;
776
+ --vscode-editorLink-activeForeground: #4e94ce;
777
+ --vscode-editorInlayHint-foreground: rgba(255, 255, 255, 0.8);
778
+ --vscode-editorInlayHint-background: rgba(77, 77, 77, 0.6);
779
+ --vscode-editorInlayHint-typeForeground: rgba(255, 255, 255, 0.8);
780
+ --vscode-editorInlayHint-typeBackground: rgba(77, 77, 77, 0.6);
781
+ --vscode-editorInlayHint-parameterForeground: rgba(255, 255, 255, 0.8);
782
+ --vscode-editorInlayHint-parameterBackground: rgba(77, 77, 77, 0.6);
783
+ --vscode-editorLightBulb-foreground: #ffcc00;
784
+ --vscode-editorLightBulbAutoFix-foreground: #75beff;
785
+ --vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.2);
786
+ --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.4);
787
+ --vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
788
+ --vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
789
+ --vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
790
+ --vscode-list-focusOutline: #007fd4;
791
+ --vscode-list-activeSelectionBackground: #04395e;
792
+ --vscode-list-activeSelectionForeground: #ffffff;
793
+ --vscode-list-activeSelectionIconForeground: #ffffff;
794
+ --vscode-list-inactiveSelectionBackground: #37373d;
795
+ --vscode-list-hoverBackground: #2a2d2e;
796
+ --vscode-list-dropBackground: #383b3d;
797
+ --vscode-list-highlightForeground: #2aaaff;
798
+ --vscode-list-focusHighlightForeground: #2aaaff;
799
+ --vscode-list-invalidItemForeground: #b89500;
800
+ --vscode-list-errorForeground: #f88070;
801
+ --vscode-list-warningForeground: #cca700;
802
+ --vscode-listFilterWidget-background: #252526;
803
+ --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
804
+ --vscode-listFilterWidget-noMatchesOutline: #be1100;
805
+ --vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
806
+ --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
807
+ --vscode-tree-indentGuidesStroke: #585858;
808
+ --vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
809
+ --vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
810
+ --vscode-list-deemphasizedForeground: #8c8c8c;
811
+ --vscode-quickInputList-focusForeground: #ffffff;
812
+ --vscode-quickInputList-focusIconForeground: #ffffff;
813
+ --vscode-quickInputList-focusBackground: #04395e;
814
+ --vscode-menu-foreground: #cccccc;
815
+ --vscode-menu-background: #303031;
816
+ --vscode-menu-selectionForeground: #ffffff;
817
+ --vscode-menu-selectionBackground: #04395e;
818
+ --vscode-menu-separatorBackground: #606060;
819
+ --vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
820
+ --vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
821
+ --vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
822
+ --vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
823
+ --vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
824
+ --vscode-breadcrumb-background: #1e1e1e;
825
+ --vscode-breadcrumb-focusForeground: #e0e0e0;
826
+ --vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
827
+ --vscode-breadcrumbPicker-background: #252526;
828
+ --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
829
+ --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
830
+ --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
831
+ --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
832
+ --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
833
+ --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
834
+ --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
835
+ --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
836
+ --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
837
+ --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
838
+ --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
839
+ --vscode-minimap-findMatchHighlight: #d18616;
840
+ --vscode-minimap-selectionOccurrenceHighlight: #676767;
841
+ --vscode-minimap-selectionHighlight: #264f78;
842
+ --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
843
+ --vscode-minimap-warningHighlight: #cca700;
844
+ --vscode-minimap-foregroundOpacity: #000000;
845
+ --vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
846
+ --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
847
+ --vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
848
+ --vscode-problemsErrorIcon-foreground: #f14c4c;
849
+ --vscode-problemsWarningIcon-foreground: #cca700;
850
+ --vscode-problemsInfoIcon-foreground: #3794ff;
851
+ --vscode-charts-foreground: #cccccc;
852
+ --vscode-charts-lines: rgba(204, 204, 204, 0.5);
853
+ --vscode-charts-red: #f14c4c;
854
+ --vscode-charts-blue: #3794ff;
855
+ --vscode-charts-yellow: #cca700;
856
+ --vscode-charts-orange: #d18616;
857
+ --vscode-charts-green: #89d185;
858
+ --vscode-charts-purple: #b180d7;
859
+ --vscode-editor-lineHighlightBorder: #282828;
860
+ --vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
861
+ --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
862
+ --vscode-editorCursor-foreground: #aeafad;
863
+ --vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
864
+ --vscode-editorIndentGuide-background: #404040;
865
+ --vscode-editorIndentGuide-activeBackground: #707070;
866
+ --vscode-editorLineNumber-foreground: #858585;
867
+ --vscode-editorActiveLineNumber-foreground: #c6c6c6;
868
+ --vscode-editorLineNumber-activeForeground: #c6c6c6;
869
+ --vscode-editorRuler-foreground: #5a5a5a;
870
+ --vscode-editorCodeLens-foreground: #999999;
871
+ --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
872
+ --vscode-editorBracketMatch-border: #888888;
873
+ --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
874
+ --vscode-editorGutter-background: #1e1e1e;
875
+ --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
876
+ --vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
877
+ --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
878
+ --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
879
+ --vscode-editorOverviewRuler-warningForeground: #cca700;
880
+ --vscode-editorOverviewRuler-infoForeground: #3794ff;
881
+ --vscode-editorBracketHighlight-foreground1: #ffd700;
882
+ --vscode-editorBracketHighlight-foreground2: #da70d6;
883
+ --vscode-editorBracketHighlight-foreground3: #179fff;
884
+ --vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
885
+ --vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
886
+ --vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
887
+ --vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
888
+ --vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
889
+ --vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
890
+ --vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
891
+ --vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
892
+ --vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
893
+ --vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
894
+ --vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
895
+ --vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
896
+ --vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
897
+ --vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
898
+ --vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
899
+ --vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
900
+ --vscode-editorUnicodeHighlight-border: #bd9b03;
901
+ --vscode-editorUnicodeHighlight-background: rgba(189, 155, 3, 0.15);
902
+ --vscode-symbolIcon-arrayForeground: #cccccc;
903
+ --vscode-symbolIcon-booleanForeground: #cccccc;
904
+ --vscode-symbolIcon-classForeground: #ee9d28;
905
+ --vscode-symbolIcon-colorForeground: #cccccc;
906
+ --vscode-symbolIcon-constantForeground: #cccccc;
907
+ --vscode-symbolIcon-constructorForeground: #b180d7;
908
+ --vscode-symbolIcon-enumeratorForeground: #ee9d28;
909
+ --vscode-symbolIcon-enumeratorMemberForeground: #75beff;
910
+ --vscode-symbolIcon-eventForeground: #ee9d28;
911
+ --vscode-symbolIcon-fieldForeground: #75beff;
912
+ --vscode-symbolIcon-fileForeground: #cccccc;
913
+ --vscode-symbolIcon-folderForeground: #cccccc;
914
+ --vscode-symbolIcon-functionForeground: #b180d7;
915
+ --vscode-symbolIcon-interfaceForeground: #75beff;
916
+ --vscode-symbolIcon-keyForeground: #cccccc;
917
+ --vscode-symbolIcon-keywordForeground: #cccccc;
918
+ --vscode-symbolIcon-methodForeground: #b180d7;
919
+ --vscode-symbolIcon-moduleForeground: #cccccc;
920
+ --vscode-symbolIcon-namespaceForeground: #cccccc;
921
+ --vscode-symbolIcon-nullForeground: #cccccc;
922
+ --vscode-symbolIcon-numberForeground: #cccccc;
923
+ --vscode-symbolIcon-objectForeground: #cccccc;
924
+ --vscode-symbolIcon-operatorForeground: #cccccc;
925
+ --vscode-symbolIcon-packageForeground: #cccccc;
926
+ --vscode-symbolIcon-propertyForeground: #cccccc;
927
+ --vscode-symbolIcon-referenceForeground: #cccccc;
928
+ --vscode-symbolIcon-snippetForeground: #cccccc;
929
+ --vscode-symbolIcon-stringForeground: #cccccc;
930
+ --vscode-symbolIcon-structForeground: #cccccc;
931
+ --vscode-symbolIcon-textForeground: #cccccc;
932
+ --vscode-symbolIcon-typeParameterForeground: #cccccc;
933
+ --vscode-symbolIcon-unitForeground: #cccccc;
934
+ --vscode-symbolIcon-variableForeground: #75beff;
935
+ --vscode-editorHoverWidget-highlightForeground: #2aaaff;
936
+ --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
937
+ --vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
938
+ --vscode-editorGutter-foldingControlForeground: #c5c5c5;
939
+ --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
940
+ --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
941
+ --vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
942
+ --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
943
+ --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
944
+ --vscode-peekViewTitle-background: rgba(55, 148, 255, 0.1);
945
+ --vscode-peekViewTitleLabel-foreground: #ffffff;
946
+ --vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
947
+ --vscode-peekView-border: #3794ff;
948
+ --vscode-peekViewResult-background: #252526;
949
+ --vscode-peekViewResult-lineForeground: #bbbbbb;
950
+ --vscode-peekViewResult-fileForeground: #ffffff;
951
+ --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
952
+ --vscode-peekViewResult-selectionForeground: #ffffff;
953
+ --vscode-peekViewEditor-background: #001f33;
954
+ --vscode-peekViewEditorGutter-background: #001f33;
955
+ --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
956
+ --vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, 0.6);
957
+ --vscode-editorMarkerNavigationError-background: #f14c4c;
958
+ --vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, 0.1);
959
+ --vscode-editorMarkerNavigationWarning-background: #cca700;
960
+ --vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, 0.1);
961
+ --vscode-editorMarkerNavigationInfo-background: #3794ff;
962
+ --vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1);
963
+ --vscode-editorMarkerNavigation-background: #1e1e1e;
964
+ --vscode-editorSuggestWidget-background: #252526;
965
+ --vscode-editorSuggestWidget-border: #454545;
966
+ --vscode-editorSuggestWidget-foreground: #d4d4d4;
967
+ --vscode-editorSuggestWidget-selectedForeground: #ffffff;
968
+ --vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
969
+ --vscode-editorSuggestWidget-selectedBackground: #04395e;
970
+ --vscode-editorSuggestWidget-highlightForeground: #2aaaff;
971
+ --vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;
972
+ --vscode-editorSuggestWidgetStatus-foreground: rgba(212, 212, 212, 0.5);
973
+ --vscode-tab-activeBackground: #1e1e1e;
974
+ --vscode-tab-unfocusedActiveBackground: #1e1e1e;
975
+ --vscode-tab-inactiveBackground: #2d2d2d;
976
+ --vscode-tab-unfocusedInactiveBackground: #2d2d2d;
977
+ --vscode-tab-activeForeground: #ffffff;
978
+ --vscode-tab-inactiveForeground: rgba(255, 255, 255, 0.5);
979
+ --vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, 0.5);
980
+ --vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, 0.25);
981
+ --vscode-tab-border: #252526;
982
+ --vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
983
+ --vscode-tab-activeModifiedBorder: #3399cc;
984
+ --vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
985
+ --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
986
+ --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
987
+ --vscode-editorPane-background: #1e1e1e;
988
+ --vscode-editorGroupHeader-tabsBackground: #252526;
989
+ --vscode-editorGroupHeader-noTabsBackground: #1e1e1e;
990
+ --vscode-editorGroup-border: #444444;
991
+ --vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
992
+ --vscode-editorGroup-dropIntoPromptForeground: #cccccc;
993
+ --vscode-editorGroup-dropIntoPromptBackground: #252526;
994
+ --vscode-sideBySideEditor-horizontalBorder: #444444;
995
+ --vscode-sideBySideEditor-verticalBorder: #444444;
996
+ --vscode-panel-background: #1e1e1e;
997
+ --vscode-panel-border: rgba(128, 128, 128, 0.35);
998
+ --vscode-panelTitle-activeForeground: #e7e7e7;
999
+ --vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, 0.6);
1000
+ --vscode-panelTitle-activeBorder: #e7e7e7;
1001
+ --vscode-panel-dropBorder: #e7e7e7;
1002
+ --vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
1003
+ --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
1004
+ --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
1005
+ --vscode-banner-background: #04395e;
1006
+ --vscode-banner-foreground: #ffffff;
1007
+ --vscode-banner-iconForeground: #3794ff;
1008
+ --vscode-statusBar-foreground: #ffffff;
1009
+ --vscode-statusBar-noFolderForeground: #ffffff;
1010
+ --vscode-statusBar-background: #007acc;
1011
+ --vscode-statusBar-noFolderBackground: #68217a;
1012
+ --vscode-statusBar-focusBorder: #ffffff;
1013
+ --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
1014
+ --vscode-statusBarItem-focusBorder: #ffffff;
1015
+ --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
1016
+ --vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
1017
+ --vscode-statusBarItem-prominentForeground: #ffffff;
1018
+ --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
1019
+ --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
1020
+ --vscode-statusBarItem-errorBackground: #c72e0f;
1021
+ --vscode-statusBarItem-errorForeground: #ffffff;
1022
+ --vscode-statusBarItem-warningBackground: #7a6400;
1023
+ --vscode-statusBarItem-warningForeground: #ffffff;
1024
+ --vscode-activityBar-background: #333333;
1025
+ --vscode-activityBar-foreground: #ffffff;
1026
+ --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
1027
+ --vscode-activityBar-activeBorder: #ffffff;
1028
+ --vscode-activityBar-dropBorder: #ffffff;
1029
+ --vscode-activityBarBadge-background: #007acc;
1030
+ --vscode-activityBarBadge-foreground: #ffffff;
1031
+ --vscode-statusBarItem-remoteBackground: #16825d;
1032
+ --vscode-statusBarItem-remoteForeground: #ffffff;
1033
+ --vscode-extensionBadge-remoteBackground: #007acc;
1034
+ --vscode-extensionBadge-remoteForeground: #ffffff;
1035
+ --vscode-sideBar-background: #252526;
1036
+ --vscode-sideBarTitle-foreground: #bbbbbb;
1037
+ --vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
1038
+ --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
1039
+ --vscode-sideBarSectionHeader-border: rgba(204, 204, 204, 0.2);
1040
+ --vscode-titleBar-activeForeground: #cccccc;
1041
+ --vscode-titleBar-inactiveForeground: rgba(204, 204, 204, 0.6);
1042
+ --vscode-titleBar-activeBackground: #3c3c3c;
1043
+ --vscode-titleBar-inactiveBackground: rgba(60, 60, 60, 0.6);
1044
+ --vscode-menubar-selectionForeground: #cccccc;
1045
+ --vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
1046
+ --vscode-notifications-foreground: #cccccc;
1047
+ --vscode-notifications-background: #252526;
1048
+ --vscode-notificationLink-foreground: #3794ff;
1049
+ --vscode-notificationCenterHeader-background: #303031;
1050
+ --vscode-notifications-border: #303031;
1051
+ --vscode-notificationsErrorIcon-foreground: #f14c4c;
1052
+ --vscode-notificationsWarningIcon-foreground: #cca700;
1053
+ --vscode-notificationsInfoIcon-foreground: #3794ff;
1054
+ --vscode-commandCenter-foreground: #cccccc;
1055
+ --vscode-commandCenter-activeForeground: #cccccc;
1056
+ --vscode-commandCenter-activeBackground: rgba(90, 93, 94, 0.31);
1057
+ --vscode-commandCenter-border: rgba(128, 128, 128, 0.35);
1058
+ --vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
1059
+ --vscode-editorCommentsWidget-unresolvedBorder: #3794ff;
1060
+ --vscode-editorCommentsWidget-rangeBackground: rgba(55, 148, 255, 0.1);
1061
+ --vscode-editorCommentsWidget-rangeBorder: rgba(55, 148, 255, 0.4);
1062
+ --vscode-editorCommentsWidget-rangeActiveBackground: rgba(55, 148, 255, 0.1);
1063
+ --vscode-editorCommentsWidget-rangeActiveBorder: rgba(55, 148, 255, 0.4);
1064
+ --vscode-editorGutter-commentRangeForeground: #37373d;
1065
+ --vscode-debugToolBar-background: #333333;
1066
+ --vscode-debugIcon-startForeground: #89d185;
1067
+ --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
1068
+ --vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
1069
+ --vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
1070
+ --vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.2);
1071
+ --vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
1072
+ --vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
1073
+ --vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
1074
+ --vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
1075
+ --vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
1076
+ --vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
1077
+ --vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
1078
+ --vscode-settings-headerForeground: #e7e7e7;
1079
+ --vscode-settings-modifiedItemIndicator: #0c7d9d;
1080
+ --vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
1081
+ --vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
1082
+ --vscode-settings-dropdownBackground: #3c3c3c;
1083
+ --vscode-settings-dropdownForeground: #f0f0f0;
1084
+ --vscode-settings-dropdownBorder: #3c3c3c;
1085
+ --vscode-settings-dropdownListBorder: #454545;
1086
+ --vscode-settings-checkboxBackground: #3c3c3c;
1087
+ --vscode-settings-checkboxForeground: #f0f0f0;
1088
+ --vscode-settings-checkboxBorder: #3c3c3c;
1089
+ --vscode-settings-textInputBackground: #3c3c3c;
1090
+ --vscode-settings-textInputForeground: #cccccc;
1091
+ --vscode-settings-numberInputBackground: #3c3c3c;
1092
+ --vscode-settings-numberInputForeground: #cccccc;
1093
+ --vscode-settings-focusedRowBackground: rgba(42, 45, 46, 0.6);
1094
+ --vscode-settings-rowHoverBackground: rgba(42, 45, 46, 0.3);
1095
+ --vscode-settings-focusedRowBorder: rgba(255, 255, 255, 0.12);
1096
+ --vscode-terminal-foreground: #cccccc;
1097
+ --vscode-terminal-selectionBackground: #264f78;
1098
+ --vscode-terminal-inactiveSelectionBackground: #3a3d41;
1099
+ --vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
1100
+ --vscode-terminalCommandDecoration-successBackground: #1b81a8;
1101
+ --vscode-terminalCommandDecoration-errorBackground: #f14c4c;
1102
+ --vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
1103
+ --vscode-terminal-border: rgba(128, 128, 128, 0.35);
1104
+ --vscode-terminal-findMatchBackground: #515c6a;
1105
+ --vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
1106
+ --vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
1107
+ --vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
1108
+ --vscode-testing-iconFailed: #f14c4c;
1109
+ --vscode-testing-iconErrored: #f14c4c;
1110
+ --vscode-testing-iconPassed: #73c991;
1111
+ --vscode-testing-runAction: #73c991;
1112
+ --vscode-testing-iconQueued: #cca700;
1113
+ --vscode-testing-iconUnset: #848484;
1114
+ --vscode-testing-iconSkipped: #848484;
1115
+ --vscode-testing-peekBorder: #f14c4c;
1116
+ --vscode-testing-peekHeaderBackground: rgba(241, 76, 76, 0.1);
1117
+ --vscode-testing-message\.error\.decorationForeground: #f14c4c;
1118
+ --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
1119
+ --vscode-testing-message\.info\.decorationForeground: rgba(212, 212, 212, 0.5);
1120
+ --vscode-welcomePage-tileBackground: #252526;
1121
+ --vscode-welcomePage-tileHoverBackground: #2c2c2d;
1122
+ --vscode-welcomePage-tileShadow: rgba(0, 0, 0, 0.36);
1123
+ --vscode-welcomePage-progress\.background: #3c3c3c;
1124
+ --vscode-welcomePage-progress\.foreground: #3794ff;
1125
+ --vscode-debugExceptionWidget-border: #a31515;
1126
+ --vscode-debugExceptionWidget-background: #420b0d;
1127
+ --vscode-ports-iconRunningProcessForeground: #369432;
1128
+ --vscode-statusBar-debuggingBackground: #cc6633;
1129
+ --vscode-statusBar-debuggingForeground: #ffffff;
1130
+ --vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
1131
+ --vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
1132
+ --vscode-editorGutter-modifiedBackground: #1b81a8;
1133
+ --vscode-editorGutter-addedBackground: #487e02;
1134
+ --vscode-editorGutter-deletedBackground: #f14c4c;
1135
+ --vscode-minimapGutter-modifiedBackground: #1b81a8;
1136
+ --vscode-minimapGutter-addedBackground: #487e02;
1137
+ --vscode-minimapGutter-deletedBackground: #f14c4c;
1138
+ --vscode-editorOverviewRuler-modifiedForeground: rgba(27, 129, 168, 0.6);
1139
+ --vscode-editorOverviewRuler-addedForeground: rgba(72, 126, 2, 0.6);
1140
+ --vscode-editorOverviewRuler-deletedForeground: rgba(241, 76, 76, 0.6);
1141
+ --vscode-debugIcon-breakpointForeground: #e51400;
1142
+ --vscode-debugIcon-breakpointDisabledForeground: #848484;
1143
+ --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
1144
+ --vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
1145
+ --vscode-debugIcon-breakpointStackframeForeground: #89d185;
1146
+ --vscode-notebook-cellBorderColor: #37373d;
1147
+ --vscode-notebook-focusedEditorBorder: #007fd4;
1148
+ --vscode-notebookStatusSuccessIcon-foreground: #89d185;
1149
+ --vscode-notebookStatusErrorIcon-foreground: #f48771;
1150
+ --vscode-notebookStatusRunningIcon-foreground: #cccccc;
1151
+ --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
1152
+ --vscode-notebook-selectedCellBackground: #37373d;
1153
+ --vscode-notebook-selectedCellBorder: #37373d;
1154
+ --vscode-notebook-focusedCellBorder: #007fd4;
1155
+ --vscode-notebook-inactiveFocusedCellBorder: #37373d;
1156
+ --vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
1157
+ --vscode-notebook-cellInsertionIndicator: #007fd4;
1158
+ --vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, 0.4);
1159
+ --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
1160
+ --vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
1161
+ --vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
1162
+ --vscode-notebook-cellEditorBackground: #252526;
1163
+ --vscode-notebook-editorBackground: #1e1e1e;
1164
+ --vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
1165
+ --vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
1166
+ --vscode-scm-providerBorder: #454545;
1167
+ --vscode-debugTokenExpression-name: #c586c0;
1168
+ --vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
1169
+ --vscode-debugTokenExpression-string: #ce9178;
1170
+ --vscode-debugTokenExpression-boolean: #4e94ce;
1171
+ --vscode-debugTokenExpression-number: #b5cea8;
1172
+ --vscode-debugTokenExpression-error: #f48771;
1173
+ --vscode-debugView-exceptionLabelForeground: #cccccc;
1174
+ --vscode-debugView-exceptionLabelBackground: #6c2022;
1175
+ --vscode-debugView-stateLabelForeground: #cccccc;
1176
+ --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
1177
+ --vscode-debugView-valueChangedHighlight: #569cd6;
1178
+ --vscode-debugConsole-infoForeground: #3794ff;
1179
+ --vscode-debugConsole-warningForeground: #cca700;
1180
+ --vscode-debugConsole-errorForeground: #f48771;
1181
+ --vscode-debugConsole-sourceForeground: #cccccc;
1182
+ --vscode-debugConsoleInputIcon-foreground: #cccccc;
1183
+ --vscode-debugIcon-pauseForeground: #75beff;
1184
+ --vscode-debugIcon-stopForeground: #f48771;
1185
+ --vscode-debugIcon-disconnectForeground: #f48771;
1186
+ --vscode-debugIcon-restartForeground: #89d185;
1187
+ --vscode-debugIcon-stepOverForeground: #75beff;
1188
+ --vscode-debugIcon-stepIntoForeground: #75beff;
1189
+ --vscode-debugIcon-stepOutForeground: #75beff;
1190
+ --vscode-debugIcon-continueForeground: #75beff;
1191
+ --vscode-debugIcon-stepBackForeground: #75beff;
1192
+ --vscode-extensionButton-prominentBackground: #0e639c;
1193
+ --vscode-extensionButton-prominentForeground: #ffffff;
1194
+ --vscode-extensionButton-prominentHoverBackground: #1177bb;
1195
+ --vscode-extensionIcon-starForeground: #ff8e00;
1196
+ --vscode-extensionIcon-verifiedForeground: #3794ff;
1197
+ --vscode-extensionIcon-preReleaseForeground: #1d9271;
1198
+ --vscode-extensionIcon-sponsorForeground: #d758b3;
1199
+ --vscode-terminal-ansiBlack: #000000;
1200
+ --vscode-terminal-ansiRed: #cd3131;
1201
+ --vscode-terminal-ansiGreen: #0dbc79;
1202
+ --vscode-terminal-ansiYellow: #e5e510;
1203
+ --vscode-terminal-ansiBlue: #2472c8;
1204
+ --vscode-terminal-ansiMagenta: #bc3fbc;
1205
+ --vscode-terminal-ansiCyan: #11a8cd;
1206
+ --vscode-terminal-ansiWhite: #e5e5e5;
1207
+ --vscode-terminal-ansiBrightBlack: #666666;
1208
+ --vscode-terminal-ansiBrightRed: #f14c4c;
1209
+ --vscode-terminal-ansiBrightGreen: #23d18b;
1210
+ --vscode-terminal-ansiBrightYellow: #f5f543;
1211
+ --vscode-terminal-ansiBrightBlue: #3b8eea;
1212
+ --vscode-terminal-ansiBrightMagenta: #d670d6;
1213
+ --vscode-terminal-ansiBrightCyan: #29b8db;
1214
+ --vscode-terminal-ansiBrightWhite: #e5e5e5;
1215
+ --vscode-interactive-activeCodeBorder: #3794ff;
1216
+ --vscode-interactive-inactiveCodeBorder: #37373d;
1217
+ --vscode-gitDecoration-addedResourceForeground: #81b88b;
1218
+ --vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
1219
+ --vscode-gitDecoration-deletedResourceForeground: #c74e39;
1220
+ --vscode-gitDecoration-renamedResourceForeground: #73c991;
1221
+ --vscode-gitDecoration-untrackedResourceForeground: #73c991;
1222
+ --vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;
1223
+ --vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
1224
+ --vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
1225
+ --vscode-gitDecoration-conflictingResourceForeground: #e4676b;
1226
+ --vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
1227
+ }
1228
+
1229
+ .xterm-wrapper {
1230
+ padding-left: 5px;
1231
+ }
1232
+
1233
+ .xterm-wrapper .xterm-viewport {
1234
+ background-color: var(--vscode-panel-background) !important;
1235
+ color: var(--vscode-foreground) !important;
1236
+ }
1237
+ /*
1238
+ Copyright (c) Microsoft Corporation.
1239
+
1240
+ Licensed under the Apache License, Version 2.0 (the "License");
1241
+ you may not use this file except in compliance with the License.
1242
+ You may obtain a copy of the License at
1243
+
1244
+ http://www.apache.org/licenses/LICENSE-2.0
1245
+
1246
+ Unless required by applicable law or agreed to in writing, software
1247
+ distributed under the License is distributed on an "AS IS" BASIS,
1248
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1249
+ See the License for the specific language governing permissions and
1250
+ limitations under the License.
1251
+ */
1252
+
1253
+ .filters {
1254
+ flex: none;
1255
+ display: flex;
1256
+ flex-direction: column;
1257
+ margin: 2px 0;
1258
+ }
1259
+
1260
+ .filter-list {
1261
+ padding: 0 10px 10px 10px;
1262
+ user-select: none;
1263
+ }
1264
+
1265
+ .filter-title,
1266
+ .filter-summary {
1267
+ overflow: hidden;
1268
+ text-overflow: ellipsis;
1269
+ white-space: nowrap;
1270
+ user-select: none;
1271
+ cursor: pointer;
1272
+ }
1273
+
1274
+ .filter-label {
1275
+ color: var(--vscode-disabledForeground);
1276
+ }
1277
+
1278
+ .filter-summary {
1279
+ line-height: 24px;
1280
+ margin-left: 24px;
1281
+ }
1282
+
1283
+ .filter-summary .filter-label {
1284
+ margin-left: 5px;
1285
+ }
1286
+
1287
+ .filter-entry {
1288
+ line-height: 24px;
1289
+ }
1290
+
1291
+ .filter-entry label {
1292
+ display: flex;
1293
+ align-items: center;
1294
+ cursor: pointer;
1295
+ }
1296
+
1297
+ .filter-entry input {
1298
+ flex: none;
1299
+ display: flex;
1300
+ align-items: center;
1301
+ cursor: pointer;
1302
+ }
1303
+
1304
+ .filter-entry label div {
1305
+ overflow: hidden;
1306
+ text-overflow: ellipsis;
1307
+ }
1308
+ /*
1309
+ Copyright (c) Microsoft Corporation.
1310
+
1311
+ Licensed under the Apache License, Version 2.0 (the "License");
1312
+ you may not use this file except in compliance with the License.
1313
+ You may obtain a copy of the License at
1314
+
1315
+ http://www.apache.org/licenses/LICENSE-2.0
1316
+
1317
+ Unless required by applicable law or agreed to in writing, software
1318
+ distributed under the License is distributed on an "AS IS" BASIS,
1319
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1320
+ See the License for the specific language governing permissions and
1321
+ limitations under the License.
1322
+ */
1323
+
1324
+ .ui-mode-tree-item {
1325
+ flex: auto;
1326
+ }
1327
+
1328
+ .ui-mode-tree-item-title {
1329
+ flex: auto;
1330
+ text-overflow: ellipsis;
1331
+ overflow: hidden;
1332
+ }
1333
+
1334
+ .ui-mode-tree-item-time {
1335
+ flex: none;
1336
+ color: var(--vscode-editorCodeLens-foreground);
1337
+ margin: 0 4px;
1338
+ user-select: none;
1339
+ }
1340
+
1341
+ .tests-tree-view .tree-view-entry.selected .ui-mode-tree-item-time,
1342
+ .tests-tree-view .tree-view-entry.highlighted .ui-mode-tree-item-time {
1343
+ display: none;
1344
+ }
1345
+
1346
+ .tests-tree-view .tree-view-entry:not(.highlighted):not(.selected) .toolbar-button:not(.toggled) {
1347
+ display: none;
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
+ .tag {
1366
+ display: inline-block;
1367
+ padding: 0 8px;
1368
+ font-size: 12px;
1369
+ font-weight: 500;
1370
+ line-height: 18px;
1371
+ border: 1px solid transparent;
1372
+ border-radius: 2em;
1373
+ background-color: #8c959f;
1374
+ color: white;
1375
+ margin: 0 10px;
1376
+ flex: none;
1377
+ font-weight: 600;
1378
+ }
1379
+
1380
+ .tag-color-0 {
1381
+ background-color: #ddf4ff;
1382
+ color: #0550ae;
1383
+ border: 1px solid #218bff;
1384
+ }
1385
+ .tag-color-1 {
1386
+ background-color: #fff8c5;
1387
+ color: #7d4e00;
1388
+ border: 1px solid #bf8700;
1389
+ }
1390
+ .tag-color-2 {
1391
+ background-color: #fbefff;
1392
+ color: #6e40c9;
1393
+ border: 1px solid #a475f9;
1394
+ }
1395
+ .tag-color-3 {
1396
+ background-color: #ffeff7;
1397
+ color: #99286e;
1398
+ border: 1px solid #e85aad;
1399
+ }
1400
+ .tag-color-4 {
1401
+ background-color: #FFF0EB;
1402
+ color: #9E2F1C;
1403
+ border: 1px solid #EA6045;
1404
+ }
1405
+ .tag-color-5 {
1406
+ background-color: #fff1e5;
1407
+ color: #9b4215;
1408
+ border: 1px solid #e16f24;
1409
+ }
1410
+
1411
+ .dark-mode .tag-color-0 {
1412
+ background-color: #051d4d;
1413
+ color: #80ccff;
1414
+ border: 1px solid #218bff;
1415
+ }
1416
+ .dark-mode .tag-color-1 {
1417
+ background-color: #3b2300;
1418
+ color: #eac54f;
1419
+ border: 1px solid #bf8700;
1420
+ }
1421
+ .dark-mode .tag-color-2 {
1422
+ background-color: #271052;
1423
+ color: #d2a8ff;
1424
+ border: 1px solid #a475f9;
1425
+ }
1426
+ .dark-mode .tag-color-3 {
1427
+ background-color: #42062a;
1428
+ color: #ff9bce;
1429
+ border: 1px solid #e85aad;
1430
+ }
1431
+ .dark-mode .tag-color-4 {
1432
+ background-color: #460701;
1433
+ color: #FFA28B;
1434
+ border: 1px solid #EC6547;
1435
+ }
1436
+ .dark-mode .tag-color-5 {
1437
+ background-color: #471700;
1438
+ color: #ffa657;
1439
+ border: 1px solid #e16f24;
1440
+ }