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