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