@sap-ux/control-property-editor 0.4.21 → 0.4.23
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/CHANGELOG.md +12 -0
- package/dist/app.css +1 -1
- package/dist/app.css.map +3 -3
- package/dist/app.js +136 -136
- package/dist/app.js.map +3 -3
- package/package.json +3 -3
- package/src/App.scss +10 -1
- package/src/App.tsx +76 -73
- package/src/Workarounds.scss +5 -0
- package/src/components/ThemeSelectorCallout.tsx +3 -2
- package/src/components/index.ts +0 -1
- package/src/i18n/i18n.json +9 -1
- package/src/icons.tsx +12 -1
- package/src/index.css +1136 -470
- package/src/middleware.ts +9 -1
- package/src/panels/index.ts +1 -1
- package/src/panels/properties/index.ts +1 -0
- package/src/slice.ts +37 -2
- package/src/{panels/properties → toolbar}/DeviceSelector.tsx +1 -1
- package/src/{panels/properties → toolbar}/DeviceToggle.tsx +4 -4
- package/src/toolbar/ModeSwitcher.scss +16 -0
- package/src/toolbar/ModeSwitcher.tsx +52 -0
- package/src/{components → toolbar}/ToolBar.scss +35 -2
- package/src/toolbar/ToolBar.tsx +56 -0
- package/src/toolbar/UndoRedoSaveActions.tsx +61 -0
- package/src/{panels/properties → toolbar}/ViewChanger.tsx +2 -2
- package/src/toolbar/index.ts +1 -0
- package/test/unit/App.test.tsx +8 -3
- package/test/unit/middleware.test.ts +89 -0
- package/test/unit/panels/outline/OutlinePanel.test.tsx +5 -1
- package/test/unit/panels/properties/ViewChanger.test.tsx +1 -1
- package/test/unit/slice.test.ts +2 -1
- package/test/unit/toolbar/ModeSwitcher.test.tsx +40 -0
- package/test/unit/toolbar/UndoRedoSaveActions.test.tsx +56 -0
- package/src/components/ToolBar.tsx +0 -26
- package/src/panels/properties/PropertiesPanel.tsx +0 -30
- package/src/panels/properties/index.tsx +0 -1
- /package/src/{panels/properties → toolbar}/ViewChanger.module.scss +0 -0
- /package/test/unit/{components → toolbar}/ThemeSelector.test.tsx +0 -0
package/src/index.css
CHANGED
|
@@ -23,49 +23,27 @@ code {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
html[data-theme='dark'] {
|
|
26
|
-
--vscode-font-family:
|
|
26
|
+
--vscode-font-family: "Segoe WPC", "Segoe UI", sans-serif;
|
|
27
27
|
--vscode-font-weight: normal;
|
|
28
28
|
--vscode-font-size: 13px;
|
|
29
|
-
--vscode-editor-font-family:
|
|
29
|
+
--vscode-editor-font-family: Consolas, 'Courier New', monospace;
|
|
30
30
|
--vscode-editor-font-weight: normal;
|
|
31
|
-
--vscode-editor-font-size:
|
|
31
|
+
--vscode-editor-font-size: 14px;
|
|
32
32
|
--vscode-foreground: #cccccc;
|
|
33
|
+
--vscode-disabledForeground: rgba(204, 204, 204, 0.5);
|
|
33
34
|
--vscode-errorForeground: #f48771;
|
|
34
35
|
--vscode-descriptionForeground: rgba(204, 204, 204, 0.7);
|
|
35
36
|
--vscode-icon-foreground: #c5c5c5;
|
|
36
37
|
--vscode-focusBorder: #007fd4;
|
|
37
|
-
--vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
|
|
38
38
|
--vscode-textLink-foreground: #3794ff;
|
|
39
39
|
--vscode-textLink-activeForeground: #3794ff;
|
|
40
|
+
--vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
|
|
40
41
|
--vscode-textPreformat-foreground: #d7ba7d;
|
|
41
|
-
--vscode-
|
|
42
|
+
--vscode-textPreformat-background: rgba(255, 255, 255, 0.1);
|
|
43
|
+
--vscode-textBlockQuote-background: #222222;
|
|
42
44
|
--vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
|
|
43
45
|
--vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4);
|
|
44
|
-
--vscode-
|
|
45
|
-
--vscode-input-background: #3c3c3c;
|
|
46
|
-
--vscode-input-foreground: #cccccc;
|
|
47
|
-
--vscode-inputOption-activeBorder: rgba(0, 122, 204, 0);
|
|
48
|
-
--vscode-inputOption-activeBackground: rgba(0, 127, 212, 0.4);
|
|
49
|
-
--vscode-inputOption-activeForeground: #ffffff;
|
|
50
|
-
--vscode-input-placeholderForeground: #a6a6a6;
|
|
51
|
-
--vscode-inputValidation-infoBackground: #063b49;
|
|
52
|
-
--vscode-inputValidation-infoBorder: #007acc;
|
|
53
|
-
--vscode-inputValidation-warningBackground: #352a05;
|
|
54
|
-
--vscode-inputValidation-warningBorder: #b89500;
|
|
55
|
-
--vscode-inputValidation-errorBackground: #5a1d1d;
|
|
56
|
-
--vscode-inputValidation-errorBorder: #be1100;
|
|
57
|
-
--vscode-dropdown-background: #3c3c3c;
|
|
58
|
-
--vscode-dropdown-foreground: #f0f0f0;
|
|
59
|
-
--vscode-dropdown-border: #3c3c3c;
|
|
60
|
-
--vscode-checkbox-background: #3c3c3c;
|
|
61
|
-
--vscode-checkbox-foreground: #f0f0f0;
|
|
62
|
-
--vscode-checkbox-border: #3c3c3c;
|
|
63
|
-
--vscode-button-foreground: #ffffff;
|
|
64
|
-
--vscode-button-background: #0e639c;
|
|
65
|
-
--vscode-button-hoverBackground: #1177bb;
|
|
66
|
-
--vscode-button-secondaryForeground: #ffffff;
|
|
67
|
-
--vscode-button-secondaryBackground: #3a3d41;
|
|
68
|
-
--vscode-button-secondaryHoverBackground: #45494e;
|
|
46
|
+
--vscode-sash-hoverBorder: #007fd4;
|
|
69
47
|
--vscode-badge-background: #4d4d4d;
|
|
70
48
|
--vscode-badge-foreground: #ffffff;
|
|
71
49
|
--vscode-scrollbar-shadow: #000000;
|
|
@@ -73,66 +51,53 @@ html[data-theme='dark'] {
|
|
|
73
51
|
--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
74
52
|
--vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
|
75
53
|
--vscode-progressBar-background: #0e70c0;
|
|
76
|
-
--vscode-editorError-foreground: #f48771;
|
|
77
|
-
--vscode-editorWarning-foreground: #cca700;
|
|
78
|
-
--vscode-editorInfo-foreground: #75beff;
|
|
79
|
-
--vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
|
|
80
|
-
--vscode-sash-hoverBorder: #007fd4;
|
|
81
54
|
--vscode-editor-background: #1e1e1e;
|
|
82
55
|
--vscode-editor-foreground: #d4d4d4;
|
|
56
|
+
--vscode-editorStickyScroll-background: #1e1e1e;
|
|
57
|
+
--vscode-editorStickyScrollHover-background: #2a2d2e;
|
|
58
|
+
--vscode-editorStickyScroll-shadow: #000000;
|
|
83
59
|
--vscode-editorWidget-background: #252526;
|
|
84
60
|
--vscode-editorWidget-foreground: #cccccc;
|
|
85
61
|
--vscode-editorWidget-border: #454545;
|
|
86
|
-
--vscode-
|
|
87
|
-
--vscode-
|
|
88
|
-
--vscode-
|
|
89
|
-
--vscode-
|
|
90
|
-
--vscode-
|
|
91
|
-
--vscode-pickerGroup-border: #3f3f46;
|
|
62
|
+
--vscode-editorError-foreground: #f14c4c;
|
|
63
|
+
--vscode-editorWarning-foreground: #cca700;
|
|
64
|
+
--vscode-editorInfo-foreground: #3794ff;
|
|
65
|
+
--vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
|
|
66
|
+
--vscode-editorLink-activeForeground: #4e94ce;
|
|
92
67
|
--vscode-editor-selectionBackground: #264f78;
|
|
93
68
|
--vscode-editor-inactiveSelectionBackground: #3a3d41;
|
|
94
69
|
--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
|
|
95
70
|
--vscode-editor-findMatchBackground: #515c6a;
|
|
96
71
|
--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
97
72
|
--vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
|
|
98
|
-
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
|
99
73
|
--vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
|
|
100
74
|
--vscode-editorHoverWidget-background: #252526;
|
|
101
75
|
--vscode-editorHoverWidget-foreground: #cccccc;
|
|
102
76
|
--vscode-editorHoverWidget-border: #454545;
|
|
103
77
|
--vscode-editorHoverWidget-statusBarBackground: #2c2c2d;
|
|
104
|
-
--vscode-
|
|
105
|
-
--vscode-
|
|
106
|
-
--vscode-
|
|
78
|
+
--vscode-editorInlayHint-foreground: #969696;
|
|
79
|
+
--vscode-editorInlayHint-background: rgba(77, 77, 77, 0.1);
|
|
80
|
+
--vscode-editorInlayHint-typeForeground: #969696;
|
|
81
|
+
--vscode-editorInlayHint-typeBackground: rgba(77, 77, 77, 0.1);
|
|
82
|
+
--vscode-editorInlayHint-parameterForeground: #969696;
|
|
83
|
+
--vscode-editorInlayHint-parameterBackground: rgba(77, 77, 77, 0.1);
|
|
107
84
|
--vscode-editorLightBulb-foreground: #ffcc00;
|
|
108
85
|
--vscode-editorLightBulbAutoFix-foreground: #75beff;
|
|
109
|
-
--vscode-
|
|
110
|
-
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
|
111
|
-
--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
|
|
112
|
-
--vscode-list-focusOutline: #007fd4;
|
|
113
|
-
--vscode-list-activeSelectionBackground: #094771;
|
|
114
|
-
--vscode-list-activeSelectionForeground: #ffffff;
|
|
115
|
-
--vscode-list-inactiveSelectionBackground: #37373d;
|
|
116
|
-
--vscode-list-hoverBackground: #2a2d2e;
|
|
117
|
-
--vscode-list-dropBackground: #383b3d;
|
|
118
|
-
--vscode-list-highlightForeground: #0097fb;
|
|
119
|
-
--vscode-list-invalidItemForeground: #b89500;
|
|
120
|
-
--vscode-list-errorForeground: #f88070;
|
|
121
|
-
--vscode-list-warningForeground: #cca700;
|
|
122
|
-
--vscode-listFilterWidget-background: #653723;
|
|
123
|
-
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
|
124
|
-
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
|
125
|
-
--vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
|
|
126
|
-
--vscode-tree-indentGuidesStroke: #585858;
|
|
127
|
-
--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
|
|
128
|
-
--vscode-list-deemphasizedForeground: #8c8c8c;
|
|
129
|
-
--vscode-menu-foreground: #cccccc;
|
|
130
|
-
--vscode-menu-background: #252526;
|
|
131
|
-
--vscode-menu-selectionForeground: #ffffff;
|
|
132
|
-
--vscode-menu-selectionBackground: #094771;
|
|
133
|
-
--vscode-menu-separatorBackground: #bbbbbb;
|
|
86
|
+
--vscode-editorLightBulbAi-foreground: #ffcc00;
|
|
134
87
|
--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
|
|
135
88
|
--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
|
|
89
|
+
--vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.2);
|
|
90
|
+
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
|
91
|
+
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
|
92
|
+
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
|
93
|
+
--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
|
|
94
|
+
--vscode-diffEditor-unchangedRegionBackground: #252526;
|
|
95
|
+
--vscode-diffEditor-unchangedRegionForeground: #cccccc;
|
|
96
|
+
--vscode-diffEditor-unchangedCodeBackground: rgba(116, 116, 116, 0.16);
|
|
97
|
+
--vscode-widget-shadow: rgba(0, 0, 0, 0.36);
|
|
98
|
+
--vscode-widget-border: #303031;
|
|
99
|
+
--vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
|
|
100
|
+
--vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
|
|
136
101
|
--vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
|
|
137
102
|
--vscode-breadcrumb-background: #1e1e1e;
|
|
138
103
|
--vscode-breadcrumb-focusForeground: #e0e0e0;
|
|
@@ -149,45 +114,100 @@ html[data-theme='dark'] {
|
|
|
149
114
|
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
|
150
115
|
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
151
116
|
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
117
|
+
--vscode-problemsErrorIcon-foreground: #f14c4c;
|
|
118
|
+
--vscode-problemsWarningIcon-foreground: #cca700;
|
|
119
|
+
--vscode-problemsInfoIcon-foreground: #3794ff;
|
|
120
|
+
--vscode-input-background: #3c3c3c;
|
|
121
|
+
--vscode-input-foreground: #cccccc;
|
|
122
|
+
--vscode-inputOption-activeBorder: #007acc;
|
|
123
|
+
--vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
|
|
124
|
+
--vscode-inputOption-activeBackground: rgba(0, 127, 212, 0.4);
|
|
125
|
+
--vscode-inputOption-activeForeground: #ffffff;
|
|
126
|
+
--vscode-input-placeholderForeground: #a6a6a6;
|
|
127
|
+
--vscode-inputValidation-infoBackground: #063b49;
|
|
128
|
+
--vscode-inputValidation-infoBorder: #007acc;
|
|
129
|
+
--vscode-inputValidation-warningBackground: #352a05;
|
|
130
|
+
--vscode-inputValidation-warningBorder: #b89500;
|
|
131
|
+
--vscode-inputValidation-errorBackground: #5a1d1d;
|
|
132
|
+
--vscode-inputValidation-errorBorder: #be1100;
|
|
133
|
+
--vscode-dropdown-background: #3c3c3c;
|
|
134
|
+
--vscode-dropdown-foreground: #f0f0f0;
|
|
135
|
+
--vscode-dropdown-border: #3c3c3c;
|
|
136
|
+
--vscode-button-foreground: #ffffff;
|
|
137
|
+
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
|
138
|
+
--vscode-button-background: #0e639c;
|
|
139
|
+
--vscode-button-hoverBackground: #1177bb;
|
|
140
|
+
--vscode-button-secondaryForeground: #ffffff;
|
|
141
|
+
--vscode-button-secondaryBackground: #3a3d41;
|
|
142
|
+
--vscode-button-secondaryHoverBackground: #45494e;
|
|
143
|
+
--vscode-checkbox-background: #3c3c3c;
|
|
144
|
+
--vscode-checkbox-selectBackground: #252526;
|
|
145
|
+
--vscode-checkbox-foreground: #f0f0f0;
|
|
146
|
+
--vscode-checkbox-border: #6b6b6b;
|
|
147
|
+
--vscode-checkbox-selectBorder: #c5c5c5;
|
|
148
|
+
--vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
|
|
149
|
+
--vscode-keybindingLabel-foreground: #cccccc;
|
|
150
|
+
--vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
|
|
151
|
+
--vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
|
|
152
|
+
--vscode-list-focusOutline: #007fd4;
|
|
153
|
+
--vscode-list-activeSelectionBackground: #04395e;
|
|
154
|
+
--vscode-list-activeSelectionForeground: #ffffff;
|
|
155
|
+
--vscode-list-activeSelectionIconForeground: #ffffff;
|
|
156
|
+
--vscode-list-inactiveSelectionBackground: #37373d;
|
|
157
|
+
--vscode-list-hoverBackground: #2a2d2e;
|
|
158
|
+
--vscode-list-dropBackground: #383b3d;
|
|
159
|
+
--vscode-list-dropBetweenBackground: #c5c5c5;
|
|
160
|
+
--vscode-list-highlightForeground: #2aaaff;
|
|
161
|
+
--vscode-list-focusHighlightForeground: #2aaaff;
|
|
162
|
+
--vscode-list-invalidItemForeground: #b89500;
|
|
163
|
+
--vscode-list-errorForeground: #f88070;
|
|
164
|
+
--vscode-list-warningForeground: #cca700;
|
|
165
|
+
--vscode-listFilterWidget-background: #252526;
|
|
166
|
+
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
|
167
|
+
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
|
168
|
+
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
|
|
169
|
+
--vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
|
|
170
|
+
--vscode-list-deemphasizedForeground: #8c8c8c;
|
|
171
|
+
--vscode-tree-indentGuidesStroke: #585858;
|
|
172
|
+
--vscode-tree-inactiveIndentGuidesStroke: rgba(88, 88, 88, 0.4);
|
|
173
|
+
--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
|
|
174
|
+
--vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
|
|
175
|
+
--vscode-menu-border: #454545;
|
|
176
|
+
--vscode-menu-foreground: #cccccc;
|
|
177
|
+
--vscode-menu-background: #252526;
|
|
178
|
+
--vscode-menu-selectionForeground: #ffffff;
|
|
179
|
+
--vscode-menu-selectionBackground: #04395e;
|
|
180
|
+
--vscode-menu-separatorBackground: #454545;
|
|
152
181
|
--vscode-minimap-findMatchHighlight: #d18616;
|
|
182
|
+
--vscode-minimap-selectionOccurrenceHighlight: #676767;
|
|
153
183
|
--vscode-minimap-selectionHighlight: #264f78;
|
|
154
|
-
--vscode-minimap-
|
|
184
|
+
--vscode-minimap-infoHighlight: #3794ff;
|
|
155
185
|
--vscode-minimap-warningHighlight: #cca700;
|
|
186
|
+
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
|
187
|
+
--vscode-minimap-foregroundOpacity: #000000;
|
|
156
188
|
--vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
|
|
157
189
|
--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
|
|
158
190
|
--vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
|
|
159
|
-
--vscode-problemsErrorIcon-foreground: #f48771;
|
|
160
|
-
--vscode-problemsWarningIcon-foreground: #cca700;
|
|
161
|
-
--vscode-problemsInfoIcon-foreground: #75beff;
|
|
162
191
|
--vscode-charts-foreground: #cccccc;
|
|
163
192
|
--vscode-charts-lines: rgba(204, 204, 204, 0.5);
|
|
164
|
-
--vscode-charts-red: #
|
|
165
|
-
--vscode-charts-blue: #
|
|
193
|
+
--vscode-charts-red: #f14c4c;
|
|
194
|
+
--vscode-charts-blue: #3794ff;
|
|
166
195
|
--vscode-charts-yellow: #cca700;
|
|
167
196
|
--vscode-charts-orange: #d18616;
|
|
168
197
|
--vscode-charts-green: #89d185;
|
|
169
198
|
--vscode-charts-purple: #b180d7;
|
|
170
|
-
--vscode-
|
|
171
|
-
--vscode-
|
|
172
|
-
--vscode-
|
|
173
|
-
--vscode-
|
|
174
|
-
--vscode-
|
|
175
|
-
--vscode-
|
|
176
|
-
--vscode-
|
|
177
|
-
--vscode-
|
|
178
|
-
--vscode-
|
|
179
|
-
--vscode-
|
|
180
|
-
--vscode-
|
|
181
|
-
--vscode-
|
|
182
|
-
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
183
|
-
--vscode-editorBracketMatch-border: #888888;
|
|
184
|
-
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
|
185
|
-
--vscode-editorGutter-background: #1e1e1e;
|
|
186
|
-
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
|
|
187
|
-
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
188
|
-
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
|
189
|
-
--vscode-editorOverviewRuler-warningForeground: #cca700;
|
|
190
|
-
--vscode-editorOverviewRuler-infoForeground: #75beff;
|
|
199
|
+
--vscode-quickInput-background: #252526;
|
|
200
|
+
--vscode-quickInput-foreground: #cccccc;
|
|
201
|
+
--vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
|
|
202
|
+
--vscode-pickerGroup-foreground: #3794ff;
|
|
203
|
+
--vscode-pickerGroup-border: #3f3f46;
|
|
204
|
+
--vscode-quickInputList-focusForeground: #ffffff;
|
|
205
|
+
--vscode-quickInputList-focusIconForeground: #ffffff;
|
|
206
|
+
--vscode-quickInputList-focusBackground: #04395e;
|
|
207
|
+
--vscode-search-resultsInfoForeground: rgba(204, 204, 204, 0.65);
|
|
208
|
+
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
|
209
|
+
--vscode-multiDiffEditor-headerBackground: #262626;
|
|
210
|
+
--vscode-multiDiffEditor-border: rgba(204, 204, 204, 0.2);
|
|
191
211
|
--vscode-symbolIcon-arrayForeground: #cccccc;
|
|
192
212
|
--vscode-symbolIcon-booleanForeground: #cccccc;
|
|
193
213
|
--vscode-symbolIcon-classForeground: #ee9d28;
|
|
@@ -221,18 +241,81 @@ html[data-theme='dark'] {
|
|
|
221
241
|
--vscode-symbolIcon-typeParameterForeground: #cccccc;
|
|
222
242
|
--vscode-symbolIcon-unitForeground: #cccccc;
|
|
223
243
|
--vscode-symbolIcon-variableForeground: #75beff;
|
|
244
|
+
--vscode-actionBar-toggledBackground: #383a49;
|
|
245
|
+
--vscode-editorHoverWidget-highlightForeground: #2aaaff;
|
|
246
|
+
--vscode-editor-lineHighlightBorder: #282828;
|
|
247
|
+
--vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
|
|
248
|
+
--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
249
|
+
--vscode-editorCursor-foreground: #aeafad;
|
|
250
|
+
--vscode-editorMultiCursor-primary\.foreground: #aeafad;
|
|
251
|
+
--vscode-editorMultiCursor-secondary\.foreground: #aeafad;
|
|
252
|
+
--vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
|
|
253
|
+
--vscode-editorLineNumber-foreground: #858585;
|
|
254
|
+
--vscode-editorIndentGuide-background: rgba(227, 228, 226, 0.16);
|
|
255
|
+
--vscode-editorIndentGuide-activeBackground: rgba(227, 228, 226, 0.16);
|
|
256
|
+
--vscode-editorIndentGuide-background1: #404040;
|
|
257
|
+
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
|
258
|
+
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
|
259
|
+
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
|
260
|
+
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
|
261
|
+
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
|
262
|
+
--vscode-editorIndentGuide-activeBackground1: #707070;
|
|
263
|
+
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
264
|
+
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
265
|
+
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
266
|
+
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
267
|
+
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
268
|
+
--vscode-editorActiveLineNumber-foreground: #c6c6c6;
|
|
269
|
+
--vscode-editorLineNumber-activeForeground: #c6c6c6;
|
|
270
|
+
--vscode-editorRuler-foreground: #5a5a5a;
|
|
271
|
+
--vscode-editorCodeLens-foreground: #999999;
|
|
272
|
+
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
273
|
+
--vscode-editorBracketMatch-border: #888888;
|
|
274
|
+
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
|
275
|
+
--vscode-editorGutter-background: #1e1e1e;
|
|
276
|
+
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
|
|
277
|
+
--vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
|
|
278
|
+
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
279
|
+
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
|
280
|
+
--vscode-editorOverviewRuler-warningForeground: #cca700;
|
|
281
|
+
--vscode-editorOverviewRuler-infoForeground: #3794ff;
|
|
282
|
+
--vscode-editorBracketHighlight-foreground1: #ffd700;
|
|
283
|
+
--vscode-editorBracketHighlight-foreground2: #da70d6;
|
|
284
|
+
--vscode-editorBracketHighlight-foreground3: #179fff;
|
|
285
|
+
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
|
286
|
+
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
|
287
|
+
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
|
288
|
+
--vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
|
|
289
|
+
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
|
290
|
+
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
|
291
|
+
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
|
292
|
+
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
|
293
|
+
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
|
294
|
+
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
|
295
|
+
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
|
296
|
+
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
297
|
+
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
298
|
+
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
299
|
+
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
300
|
+
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
301
|
+
--vscode-editorUnicodeHighlight-border: #cca700;
|
|
302
|
+
--vscode-diffEditor-move\.border: rgba(139, 139, 139, 0.61);
|
|
303
|
+
--vscode-diffEditor-moveActive\.border: #ffa500;
|
|
304
|
+
--vscode-diffEditor-unchangedRegionShadow: #000000;
|
|
224
305
|
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
|
306
|
+
--vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
|
|
307
|
+
--vscode-editorGutter-foldingControlForeground: #c5c5c5;
|
|
225
308
|
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
|
226
309
|
--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
|
|
227
310
|
--vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
|
|
311
|
+
--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, 0.72);
|
|
228
312
|
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
229
313
|
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
|
230
|
-
--vscode-
|
|
231
|
-
--vscode-
|
|
232
|
-
--vscode-peekViewTitle-background: #1e1e1e;
|
|
314
|
+
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
|
315
|
+
--vscode-peekViewTitle-background: #252526;
|
|
233
316
|
--vscode-peekViewTitleLabel-foreground: #ffffff;
|
|
234
317
|
--vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
|
|
235
|
-
--vscode-peekView-border: #
|
|
318
|
+
--vscode-peekView-border: #3794ff;
|
|
236
319
|
--vscode-peekViewResult-background: #252526;
|
|
237
320
|
--vscode-peekViewResult-lineForeground: #bbbbbb;
|
|
238
321
|
--vscode-peekViewResult-fileForeground: #ffffff;
|
|
@@ -240,17 +323,26 @@ html[data-theme='dark'] {
|
|
|
240
323
|
--vscode-peekViewResult-selectionForeground: #ffffff;
|
|
241
324
|
--vscode-peekViewEditor-background: #001f33;
|
|
242
325
|
--vscode-peekViewEditorGutter-background: #001f33;
|
|
326
|
+
--vscode-peekViewEditorStickyScroll-background: #001f33;
|
|
243
327
|
--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
|
|
244
328
|
--vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, 0.6);
|
|
245
|
-
--vscode-editorMarkerNavigationError-background: #
|
|
329
|
+
--vscode-editorMarkerNavigationError-background: #f14c4c;
|
|
330
|
+
--vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, 0.1);
|
|
246
331
|
--vscode-editorMarkerNavigationWarning-background: #cca700;
|
|
247
|
-
--vscode-
|
|
248
|
-
--vscode-
|
|
332
|
+
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, 0.1);
|
|
333
|
+
--vscode-editorMarkerNavigationInfo-background: #3794ff;
|
|
334
|
+
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1);
|
|
335
|
+
--vscode-editorMarkerNavigation-background: #1e1e1e;
|
|
249
336
|
--vscode-editorSuggestWidget-background: #252526;
|
|
250
337
|
--vscode-editorSuggestWidget-border: #454545;
|
|
251
338
|
--vscode-editorSuggestWidget-foreground: #d4d4d4;
|
|
252
|
-
--vscode-editorSuggestWidget-
|
|
253
|
-
--vscode-editorSuggestWidget-
|
|
339
|
+
--vscode-editorSuggestWidget-selectedForeground: #ffffff;
|
|
340
|
+
--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
|
|
341
|
+
--vscode-editorSuggestWidget-selectedBackground: #04395e;
|
|
342
|
+
--vscode-editorSuggestWidget-highlightForeground: #2aaaff;
|
|
343
|
+
--vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;
|
|
344
|
+
--vscode-editorSuggestWidgetStatus-foreground: rgba(212, 212, 212, 0.5);
|
|
345
|
+
--vscode-editorWatermark-foreground: rgba(212, 212, 212, 0.6);
|
|
254
346
|
--vscode-tab-activeBackground: #1e1e1e;
|
|
255
347
|
--vscode-tab-unfocusedActiveBackground: #1e1e1e;
|
|
256
348
|
--vscode-tab-inactiveBackground: #2d2d2d;
|
|
@@ -261,6 +353,7 @@ html[data-theme='dark'] {
|
|
|
261
353
|
--vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, 0.25);
|
|
262
354
|
--vscode-tab-border: #252526;
|
|
263
355
|
--vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
|
|
356
|
+
--vscode-tab-dragAndDropBorder: #ffffff;
|
|
264
357
|
--vscode-tab-activeModifiedBorder: #3399cc;
|
|
265
358
|
--vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
|
266
359
|
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
|
@@ -270,7 +363,10 @@ html[data-theme='dark'] {
|
|
|
270
363
|
--vscode-editorGroupHeader-noTabsBackground: #1e1e1e;
|
|
271
364
|
--vscode-editorGroup-border: #444444;
|
|
272
365
|
--vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
|
|
273
|
-
--vscode-
|
|
366
|
+
--vscode-editorGroup-dropIntoPromptForeground: #cccccc;
|
|
367
|
+
--vscode-editorGroup-dropIntoPromptBackground: #252526;
|
|
368
|
+
--vscode-sideBySideEditor-horizontalBorder: #444444;
|
|
369
|
+
--vscode-sideBySideEditor-verticalBorder: #444444;
|
|
274
370
|
--vscode-panel-background: #1e1e1e;
|
|
275
371
|
--vscode-panel-border: rgba(128, 128, 128, 0.35);
|
|
276
372
|
--vscode-panelTitle-activeForeground: #e7e7e7;
|
|
@@ -280,17 +376,33 @@ html[data-theme='dark'] {
|
|
|
280
376
|
--vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
|
|
281
377
|
--vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
|
|
282
378
|
--vscode-panelSection-border: rgba(128, 128, 128, 0.35);
|
|
379
|
+
--vscode-panelStickyScroll-background: #1e1e1e;
|
|
380
|
+
--vscode-panelStickyScroll-shadow: #000000;
|
|
381
|
+
--vscode-banner-background: #04395e;
|
|
382
|
+
--vscode-banner-foreground: #ffffff;
|
|
383
|
+
--vscode-banner-iconForeground: #3794ff;
|
|
283
384
|
--vscode-statusBar-foreground: #ffffff;
|
|
284
385
|
--vscode-statusBar-noFolderForeground: #ffffff;
|
|
285
386
|
--vscode-statusBar-background: #007acc;
|
|
286
387
|
--vscode-statusBar-noFolderBackground: #68217a;
|
|
388
|
+
--vscode-statusBar-focusBorder: #ffffff;
|
|
287
389
|
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
|
390
|
+
--vscode-statusBarItem-focusBorder: #ffffff;
|
|
288
391
|
--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
|
|
392
|
+
--vscode-statusBarItem-hoverForeground: #ffffff;
|
|
393
|
+
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
|
289
394
|
--vscode-statusBarItem-prominentForeground: #ffffff;
|
|
290
395
|
--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
|
|
396
|
+
--vscode-statusBarItem-prominentHoverForeground: #ffffff;
|
|
291
397
|
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
|
292
398
|
--vscode-statusBarItem-errorBackground: #c72e0f;
|
|
293
399
|
--vscode-statusBarItem-errorForeground: #ffffff;
|
|
400
|
+
--vscode-statusBarItem-errorHoverForeground: #ffffff;
|
|
401
|
+
--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12);
|
|
402
|
+
--vscode-statusBarItem-warningBackground: #7a6400;
|
|
403
|
+
--vscode-statusBarItem-warningForeground: #ffffff;
|
|
404
|
+
--vscode-statusBarItem-warningHoverForeground: #ffffff;
|
|
405
|
+
--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12);
|
|
294
406
|
--vscode-activityBar-background: #333333;
|
|
295
407
|
--vscode-activityBar-foreground: #ffffff;
|
|
296
408
|
--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
|
|
@@ -298,51 +410,124 @@ html[data-theme='dark'] {
|
|
|
298
410
|
--vscode-activityBar-dropBorder: #ffffff;
|
|
299
411
|
--vscode-activityBarBadge-background: #007acc;
|
|
300
412
|
--vscode-activityBarBadge-foreground: #ffffff;
|
|
413
|
+
--vscode-activityBarTop-foreground: #e7e7e7;
|
|
414
|
+
--vscode-activityBarTop-activeBorder: #e7e7e7;
|
|
415
|
+
--vscode-activityBarTop-inactiveForeground: rgba(231, 231, 231, 0.6);
|
|
416
|
+
--vscode-activityBarTop-dropBorder: #e7e7e7;
|
|
417
|
+
--vscode-profileBadge-background: #4d4d4d;
|
|
418
|
+
--vscode-profileBadge-foreground: #ffffff;
|
|
301
419
|
--vscode-statusBarItem-remoteBackground: #16825d;
|
|
302
420
|
--vscode-statusBarItem-remoteForeground: #ffffff;
|
|
421
|
+
--vscode-statusBarItem-remoteHoverForeground: #ffffff;
|
|
422
|
+
--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12);
|
|
423
|
+
--vscode-statusBarItem-offlineBackground: #6c1717;
|
|
424
|
+
--vscode-statusBarItem-offlineForeground: #ffffff;
|
|
425
|
+
--vscode-statusBarItem-offlineHoverForeground: #ffffff;
|
|
426
|
+
--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12);
|
|
303
427
|
--vscode-extensionBadge-remoteBackground: #007acc;
|
|
304
428
|
--vscode-extensionBadge-remoteForeground: #ffffff;
|
|
305
429
|
--vscode-sideBar-background: #252526;
|
|
430
|
+
--vscode-sideBarTitle-background: #252526;
|
|
306
431
|
--vscode-sideBarTitle-foreground: #bbbbbb;
|
|
307
432
|
--vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
|
|
308
433
|
--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
|
|
309
434
|
--vscode-sideBarSectionHeader-border: rgba(204, 204, 204, 0.2);
|
|
435
|
+
--vscode-sideBarActivityBarTop-border: rgba(204, 204, 204, 0.2);
|
|
436
|
+
--vscode-sideBarStickyScroll-background: #252526;
|
|
437
|
+
--vscode-sideBarStickyScroll-shadow: #000000;
|
|
310
438
|
--vscode-titleBar-activeForeground: #cccccc;
|
|
311
439
|
--vscode-titleBar-inactiveForeground: rgba(204, 204, 204, 0.6);
|
|
312
440
|
--vscode-titleBar-activeBackground: #3c3c3c;
|
|
313
441
|
--vscode-titleBar-inactiveBackground: rgba(60, 60, 60, 0.6);
|
|
314
442
|
--vscode-menubar-selectionForeground: #cccccc;
|
|
315
|
-
--vscode-menubar-selectionBackground: rgba(
|
|
443
|
+
--vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
|
|
444
|
+
--vscode-commandCenter-foreground: #cccccc;
|
|
445
|
+
--vscode-commandCenter-activeForeground: #cccccc;
|
|
446
|
+
--vscode-commandCenter-inactiveForeground: rgba(204, 204, 204, 0.6);
|
|
447
|
+
--vscode-commandCenter-background: rgba(255, 255, 255, 0.05);
|
|
448
|
+
--vscode-commandCenter-activeBackground: rgba(255, 255, 255, 0.08);
|
|
449
|
+
--vscode-commandCenter-border: rgba(204, 204, 204, 0.2);
|
|
450
|
+
--vscode-commandCenter-activeBorder: rgba(204, 204, 204, 0.3);
|
|
451
|
+
--vscode-commandCenter-inactiveBorder: rgba(204, 204, 204, 0.15);
|
|
452
|
+
--vscode-notificationCenter-border: #303031;
|
|
453
|
+
--vscode-notificationToast-border: #303031;
|
|
316
454
|
--vscode-notifications-foreground: #cccccc;
|
|
317
455
|
--vscode-notifications-background: #252526;
|
|
318
456
|
--vscode-notificationLink-foreground: #3794ff;
|
|
319
457
|
--vscode-notificationCenterHeader-background: #303031;
|
|
320
458
|
--vscode-notifications-border: #303031;
|
|
321
|
-
--vscode-notificationsErrorIcon-foreground: #
|
|
459
|
+
--vscode-notificationsErrorIcon-foreground: #f14c4c;
|
|
322
460
|
--vscode-notificationsWarningIcon-foreground: #cca700;
|
|
323
|
-
--vscode-notificationsInfoIcon-foreground: #
|
|
324
|
-
--vscode-
|
|
461
|
+
--vscode-notificationsInfoIcon-foreground: #3794ff;
|
|
462
|
+
--vscode-chat-requestBorder: rgba(255, 255, 255, 0.1);
|
|
463
|
+
--vscode-chat-requestBackground: rgba(30, 30, 30, 0.62);
|
|
464
|
+
--vscode-chat-slashCommandBackground: rgba(52, 65, 75, 0.56);
|
|
465
|
+
--vscode-chat-slashCommandForeground: #40a6ff;
|
|
466
|
+
--vscode-chat-avatarBackground: #1f1f1f;
|
|
467
|
+
--vscode-chat-avatarForeground: #cccccc;
|
|
468
|
+
--vscode-simpleFindWidget-sashBorder: #454545;
|
|
469
|
+
--vscode-commentsView-resolvedIcon: rgba(204, 204, 204, 0.5);
|
|
470
|
+
--vscode-commentsView-unresolvedIcon: #007fd4;
|
|
471
|
+
--vscode-editorCommentsWidget-replyInputBackground: #252526;
|
|
472
|
+
--vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
|
|
473
|
+
--vscode-editorCommentsWidget-unresolvedBorder: #007fd4;
|
|
474
|
+
--vscode-editorCommentsWidget-rangeBackground: rgba(0, 127, 212, 0.1);
|
|
475
|
+
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 127, 212, 0.1);
|
|
476
|
+
--vscode-editorGutter-commentRangeForeground: #37373d;
|
|
477
|
+
--vscode-editorOverviewRuler-commentForeground: #37373d;
|
|
478
|
+
--vscode-editorOverviewRuler-commentUnresolvedForeground: #37373d;
|
|
479
|
+
--vscode-editorGutter-commentGlyphForeground: #d4d4d4;
|
|
480
|
+
--vscode-editorGutter-commentUnresolvedGlyphForeground: #d4d4d4;
|
|
325
481
|
--vscode-debugToolBar-background: #333333;
|
|
326
482
|
--vscode-debugIcon-startForeground: #89d185;
|
|
483
|
+
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
|
484
|
+
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
|
485
|
+
--vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
|
|
486
|
+
--vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.2);
|
|
487
|
+
--vscode-mergeEditor-changeBase\.background: #4b1818;
|
|
488
|
+
--vscode-mergeEditor-changeBase\.word\.background: #6f1313;
|
|
489
|
+
--vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
|
|
490
|
+
--vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
|
|
491
|
+
--vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
|
|
492
|
+
--vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
|
|
493
|
+
--vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
|
494
|
+
--vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
|
|
495
|
+
--vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
|
|
496
|
+
--vscode-mergeEditor-conflict\.input1\.background: rgba(64, 200, 174, 0.2);
|
|
497
|
+
--vscode-mergeEditor-conflict\.input2\.background: rgba(64, 166, 255, 0.2);
|
|
327
498
|
--vscode-settings-headerForeground: #e7e7e7;
|
|
499
|
+
--vscode-settings-settingsHeaderHoverForeground: rgba(231, 231, 231, 0.7);
|
|
328
500
|
--vscode-settings-modifiedItemIndicator: #0c7d9d;
|
|
501
|
+
--vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
|
|
502
|
+
--vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
|
|
329
503
|
--vscode-settings-dropdownBackground: #3c3c3c;
|
|
330
504
|
--vscode-settings-dropdownForeground: #f0f0f0;
|
|
331
505
|
--vscode-settings-dropdownBorder: #3c3c3c;
|
|
332
506
|
--vscode-settings-dropdownListBorder: #454545;
|
|
333
507
|
--vscode-settings-checkboxBackground: #3c3c3c;
|
|
334
508
|
--vscode-settings-checkboxForeground: #f0f0f0;
|
|
335
|
-
--vscode-settings-checkboxBorder: #
|
|
509
|
+
--vscode-settings-checkboxBorder: #6b6b6b;
|
|
336
510
|
--vscode-settings-textInputBackground: #3c3c3c;
|
|
337
511
|
--vscode-settings-textInputForeground: #cccccc;
|
|
338
512
|
--vscode-settings-numberInputBackground: #3c3c3c;
|
|
339
513
|
--vscode-settings-numberInputForeground: #cccccc;
|
|
340
|
-
--vscode-settings-focusedRowBackground: rgba(
|
|
341
|
-
--vscode-
|
|
342
|
-
--vscode-
|
|
514
|
+
--vscode-settings-focusedRowBackground: rgba(42, 45, 46, 0.6);
|
|
515
|
+
--vscode-settings-rowHoverBackground: rgba(42, 45, 46, 0.3);
|
|
516
|
+
--vscode-settings-focusedRowBorder: #007fd4;
|
|
343
517
|
--vscode-terminal-foreground: #cccccc;
|
|
344
|
-
--vscode-terminal-selectionBackground:
|
|
518
|
+
--vscode-terminal-selectionBackground: #264f78;
|
|
519
|
+
--vscode-terminal-inactiveSelectionBackground: #3a3d41;
|
|
520
|
+
--vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
|
|
521
|
+
--vscode-terminalCommandDecoration-successBackground: #1b81a8;
|
|
522
|
+
--vscode-terminalCommandDecoration-errorBackground: #f14c4c;
|
|
523
|
+
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
|
345
524
|
--vscode-terminal-border: rgba(128, 128, 128, 0.35);
|
|
525
|
+
--vscode-terminal-findMatchBackground: #515c6a;
|
|
526
|
+
--vscode-terminal-hoverHighlightBackground: rgba(38, 79, 120, 0.13);
|
|
527
|
+
--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
528
|
+
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
529
|
+
--vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
|
|
530
|
+
--vscode-terminalStickyScrollHover-background: #2a2d2e;
|
|
346
531
|
--vscode-testing-iconFailed: #f14c4c;
|
|
347
532
|
--vscode-testing-iconErrored: #f14c4c;
|
|
348
533
|
--vscode-testing-iconPassed: #73c991;
|
|
@@ -350,47 +535,119 @@ html[data-theme='dark'] {
|
|
|
350
535
|
--vscode-testing-iconQueued: #cca700;
|
|
351
536
|
--vscode-testing-iconUnset: #848484;
|
|
352
537
|
--vscode-testing-iconSkipped: #848484;
|
|
353
|
-
--vscode-testing-peekBorder: #
|
|
354
|
-
--vscode-testing-
|
|
538
|
+
--vscode-testing-peekBorder: #f14c4c;
|
|
539
|
+
--vscode-testing-messagePeekBorder: #3794ff;
|
|
540
|
+
--vscode-testing-peekHeaderBackground: rgba(241, 76, 76, 0.1);
|
|
541
|
+
--vscode-testing-messagePeekHeaderBackground: rgba(55, 148, 255, 0.1);
|
|
542
|
+
--vscode-testing-coveredBackground: rgba(156, 204, 44, 0.2);
|
|
543
|
+
--vscode-testing-coveredBorder: rgba(156, 204, 44, 0.15);
|
|
544
|
+
--vscode-testing-coveredGutterBackground: rgba(156, 204, 44, 0.12);
|
|
545
|
+
--vscode-testing-uncoveredBranchBackground: #781212;
|
|
546
|
+
--vscode-testing-uncoveredBackground: rgba(255, 0, 0, 0.2);
|
|
547
|
+
--vscode-testing-uncoveredBorder: rgba(255, 0, 0, 0.15);
|
|
548
|
+
--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, 0.3);
|
|
549
|
+
--vscode-testing-coverCountBadgeBackground: #4d4d4d;
|
|
550
|
+
--vscode-testing-coverCountBadgeForeground: #ffffff;
|
|
551
|
+
--vscode-testing-message\.error\.decorationForeground: #f14c4c;
|
|
355
552
|
--vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
|
|
356
|
-
--vscode-testing-message\.
|
|
357
|
-
--vscode-testing-
|
|
358
|
-
--vscode-testing-
|
|
359
|
-
--vscode-testing-
|
|
360
|
-
--vscode-testing-
|
|
553
|
+
--vscode-testing-message\.info\.decorationForeground: rgba(212, 212, 212, 0.5);
|
|
554
|
+
--vscode-testing-iconErrored\.retired: rgba(241, 76, 76, 0.7);
|
|
555
|
+
--vscode-testing-iconFailed\.retired: rgba(241, 76, 76, 0.7);
|
|
556
|
+
--vscode-testing-iconPassed\.retired: rgba(115, 201, 145, 0.7);
|
|
557
|
+
--vscode-testing-iconQueued\.retired: rgba(204, 167, 0, 0.7);
|
|
558
|
+
--vscode-testing-iconUnset\.retired: rgba(132, 132, 132, 0.7);
|
|
559
|
+
--vscode-testing-iconSkipped\.retired: rgba(132, 132, 132, 0.7);
|
|
361
560
|
--vscode-welcomePage-tileBackground: #252526;
|
|
362
561
|
--vscode-welcomePage-tileHoverBackground: #2c2c2d;
|
|
562
|
+
--vscode-welcomePage-tileBorder: rgba(255, 255, 255, 0.1);
|
|
363
563
|
--vscode-welcomePage-progress\.background: #3c3c3c;
|
|
364
564
|
--vscode-welcomePage-progress\.foreground: #3794ff;
|
|
365
|
-
--vscode-
|
|
366
|
-
--vscode-
|
|
565
|
+
--vscode-walkthrough-stepTitle\.foreground: #ffffff;
|
|
566
|
+
--vscode-walkThrough-embeddedEditorBackground: rgba(0, 0, 0, 0.4);
|
|
567
|
+
--vscode-inlineChat-background: #252526;
|
|
568
|
+
--vscode-inlineChat-border: #454545;
|
|
569
|
+
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.36);
|
|
570
|
+
--vscode-inlineChat-regionHighlight: rgba(38, 79, 120, 0.25);
|
|
571
|
+
--vscode-inlineChatInput-border: #454545;
|
|
572
|
+
--vscode-inlineChatInput-focusBorder: #007fd4;
|
|
573
|
+
--vscode-inlineChatInput-placeholderForeground: #a6a6a6;
|
|
574
|
+
--vscode-inlineChatInput-background: #3c3c3c;
|
|
575
|
+
--vscode-inlineChatDiff-inserted: rgba(156, 204, 44, 0.1);
|
|
576
|
+
--vscode-editorOverviewRuler-inlineChatInserted: rgba(156, 204, 44, 0.12);
|
|
577
|
+
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
|
578
|
+
--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, 0.12);
|
|
367
579
|
--vscode-debugExceptionWidget-border: #a31515;
|
|
368
580
|
--vscode-debugExceptionWidget-background: #420b0d;
|
|
369
|
-
--vscode-
|
|
370
|
-
--vscode-
|
|
371
|
-
--vscode-
|
|
372
|
-
--vscode-
|
|
373
|
-
--vscode-
|
|
374
|
-
--vscode-minimapGutter-deletedBackground: #94151b;
|
|
375
|
-
--vscode-editorOverviewRuler-modifiedForeground: rgba(12, 125, 157, 0.6);
|
|
376
|
-
--vscode-editorOverviewRuler-addedForeground: rgba(88, 124, 12, 0.6);
|
|
377
|
-
--vscode-editorOverviewRuler-deletedForeground: rgba(148, 21, 27, 0.6);
|
|
378
|
-
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
|
379
|
-
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
|
581
|
+
--vscode-statusBar-debuggingBackground: #cc6633;
|
|
582
|
+
--vscode-statusBar-debuggingForeground: #ffffff;
|
|
583
|
+
--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, 0.26);
|
|
584
|
+
--vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
|
|
585
|
+
--vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
|
|
380
586
|
--vscode-debugIcon-breakpointForeground: #e51400;
|
|
381
587
|
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
|
382
588
|
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
|
383
589
|
--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
|
|
384
590
|
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
|
385
|
-
--vscode-
|
|
591
|
+
--vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
|
|
592
|
+
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
|
593
|
+
--vscode-ports-iconRunningProcessForeground: #369432;
|
|
594
|
+
--vscode-editorGutter-modifiedBackground: #1b81a8;
|
|
595
|
+
--vscode-editorGutter-addedBackground: #487e02;
|
|
596
|
+
--vscode-editorGutter-deletedBackground: #f14c4c;
|
|
597
|
+
--vscode-minimapGutter-modifiedBackground: #1b81a8;
|
|
598
|
+
--vscode-minimapGutter-addedBackground: #487e02;
|
|
599
|
+
--vscode-minimapGutter-deletedBackground: #f14c4c;
|
|
600
|
+
--vscode-editorOverviewRuler-modifiedForeground: rgba(27, 129, 168, 0.6);
|
|
601
|
+
--vscode-editorOverviewRuler-addedForeground: rgba(72, 126, 2, 0.6);
|
|
602
|
+
--vscode-editorOverviewRuler-deletedForeground: rgba(241, 76, 76, 0.6);
|
|
603
|
+
--vscode-debugTokenExpression-name: #c586c0;
|
|
604
|
+
--vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
|
|
605
|
+
--vscode-debugTokenExpression-string: #ce9178;
|
|
606
|
+
--vscode-debugTokenExpression-boolean: #4e94ce;
|
|
607
|
+
--vscode-debugTokenExpression-number: #b5cea8;
|
|
608
|
+
--vscode-debugTokenExpression-error: #f48771;
|
|
609
|
+
--vscode-debugView-exceptionLabelForeground: #cccccc;
|
|
610
|
+
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
|
611
|
+
--vscode-debugView-stateLabelForeground: #cccccc;
|
|
612
|
+
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
613
|
+
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
614
|
+
--vscode-debugConsole-infoForeground: #3794ff;
|
|
615
|
+
--vscode-debugConsole-warningForeground: #cca700;
|
|
616
|
+
--vscode-debugConsole-errorForeground: #f48771;
|
|
617
|
+
--vscode-debugConsole-sourceForeground: #cccccc;
|
|
618
|
+
--vscode-debugConsoleInputIcon-foreground: #cccccc;
|
|
619
|
+
--vscode-debugIcon-pauseForeground: #75beff;
|
|
620
|
+
--vscode-debugIcon-stopForeground: #f48771;
|
|
621
|
+
--vscode-debugIcon-disconnectForeground: #f48771;
|
|
622
|
+
--vscode-debugIcon-restartForeground: #89d185;
|
|
623
|
+
--vscode-debugIcon-stepOverForeground: #75beff;
|
|
624
|
+
--vscode-debugIcon-stepIntoForeground: #75beff;
|
|
625
|
+
--vscode-debugIcon-stepOutForeground: #75beff;
|
|
626
|
+
--vscode-debugIcon-continueForeground: #75beff;
|
|
627
|
+
--vscode-debugIcon-stepBackForeground: #75beff;
|
|
628
|
+
--vscode-scm-historyItemAdditionsForeground: #81b88b;
|
|
629
|
+
--vscode-scm-historyItemDeletionsForeground: #c74e39;
|
|
630
|
+
--vscode-scm-historyItemStatisticsBorder: rgba(204, 204, 204, 0.2);
|
|
631
|
+
--vscode-scm-historyItemSelectedStatisticsBorder: rgba(255, 255, 255, 0.2);
|
|
632
|
+
--vscode-extensionButton-background: #0e639c;
|
|
633
|
+
--vscode-extensionButton-foreground: #ffffff;
|
|
634
|
+
--vscode-extensionButton-hoverBackground: #1177bb;
|
|
635
|
+
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
|
636
|
+
--vscode-extensionButton-prominentBackground: #0e639c;
|
|
637
|
+
--vscode-extensionButton-prominentForeground: #ffffff;
|
|
638
|
+
--vscode-extensionButton-prominentHoverBackground: #1177bb;
|
|
639
|
+
--vscode-extensionIcon-starForeground: #ff8e00;
|
|
640
|
+
--vscode-extensionIcon-verifiedForeground: #3794ff;
|
|
641
|
+
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
|
642
|
+
--vscode-extensionIcon-sponsorForeground: #d758b3;
|
|
386
643
|
--vscode-notebook-cellBorderColor: #37373d;
|
|
387
644
|
--vscode-notebook-focusedEditorBorder: #007fd4;
|
|
388
645
|
--vscode-notebookStatusSuccessIcon-foreground: #89d185;
|
|
646
|
+
--vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185;
|
|
389
647
|
--vscode-notebookStatusErrorIcon-foreground: #f48771;
|
|
390
648
|
--vscode-notebookStatusRunningIcon-foreground: #cccccc;
|
|
391
|
-
--vscode-notebook-outputContainerBackgroundColor: #37373d;
|
|
392
649
|
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
|
393
|
-
--vscode-notebook-selectedCellBackground:
|
|
650
|
+
--vscode-notebook-selectedCellBackground: #37373d;
|
|
394
651
|
--vscode-notebook-selectedCellBorder: #37373d;
|
|
395
652
|
--vscode-notebook-focusedCellBorder: #007fd4;
|
|
396
653
|
--vscode-notebook-inactiveFocusedCellBorder: #37373d;
|
|
@@ -400,10 +657,10 @@ html[data-theme='dark'] {
|
|
|
400
657
|
--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
401
658
|
--vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
|
402
659
|
--vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
|
|
403
|
-
--vscode-
|
|
404
|
-
--vscode-
|
|
405
|
-
--vscode-
|
|
406
|
-
--vscode-
|
|
660
|
+
--vscode-notebook-cellEditorBackground: #252526;
|
|
661
|
+
--vscode-notebook-editorBackground: #1e1e1e;
|
|
662
|
+
--vscode-interactive-activeCodeBorder: #007acc;
|
|
663
|
+
--vscode-interactive-inactiveCodeBorder: #37373d;
|
|
407
664
|
--vscode-terminal-ansiBlack: #000000;
|
|
408
665
|
--vscode-terminal-ansiRed: #cd3131;
|
|
409
666
|
--vscode-terminal-ansiGreen: #0dbc79;
|
|
@@ -420,31 +677,6 @@ html[data-theme='dark'] {
|
|
|
420
677
|
--vscode-terminal-ansiBrightMagenta: #d670d6;
|
|
421
678
|
--vscode-terminal-ansiBrightCyan: #29b8db;
|
|
422
679
|
--vscode-terminal-ansiBrightWhite: #e5e5e5;
|
|
423
|
-
--vscode-debugTokenExpression-name: #c586c0;
|
|
424
|
-
--vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
|
|
425
|
-
--vscode-debugTokenExpression-string: #ce9178;
|
|
426
|
-
--vscode-debugTokenExpression-boolean: #4e94ce;
|
|
427
|
-
--vscode-debugTokenExpression-number: #b5cea8;
|
|
428
|
-
--vscode-debugTokenExpression-error: #f48771;
|
|
429
|
-
--vscode-debugView-exceptionLabelForeground: #cccccc;
|
|
430
|
-
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
|
431
|
-
--vscode-debugView-stateLabelForeground: #cccccc;
|
|
432
|
-
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
433
|
-
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
434
|
-
--vscode-debugConsole-infoForeground: #75beff;
|
|
435
|
-
--vscode-debugConsole-warningForeground: #cca700;
|
|
436
|
-
--vscode-debugConsole-errorForeground: #f48771;
|
|
437
|
-
--vscode-debugConsole-sourceForeground: #cccccc;
|
|
438
|
-
--vscode-debugConsoleInputIcon-foreground: #cccccc;
|
|
439
|
-
--vscode-debugIcon-pauseForeground: #75beff;
|
|
440
|
-
--vscode-debugIcon-stopForeground: #f48771;
|
|
441
|
-
--vscode-debugIcon-disconnectForeground: #f48771;
|
|
442
|
-
--vscode-debugIcon-restartForeground: #89d185;
|
|
443
|
-
--vscode-debugIcon-stepOverForeground: #75beff;
|
|
444
|
-
--vscode-debugIcon-stepIntoForeground: #75beff;
|
|
445
|
-
--vscode-debugIcon-stepOutForeground: #75beff;
|
|
446
|
-
--vscode-debugIcon-continueForeground: #75beff;
|
|
447
|
-
--vscode-debugIcon-stepBackForeground: #75beff;
|
|
448
680
|
--vscode-gitDecoration-addedResourceForeground: #81b88b;
|
|
449
681
|
--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
|
|
450
682
|
--vscode-gitDecoration-deletedResourceForeground: #c74e39;
|
|
@@ -455,51 +687,30 @@ html[data-theme='dark'] {
|
|
|
455
687
|
--vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
|
|
456
688
|
--vscode-gitDecoration-conflictingResourceForeground: #e4676b;
|
|
457
689
|
--vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
|
|
458
|
-
/* } */
|
|
459
690
|
}
|
|
460
691
|
|
|
461
692
|
html[data-theme='light'] {
|
|
462
|
-
--vscode-font-family:
|
|
693
|
+
--vscode-font-family: "Segoe WPC", "Segoe UI", sans-serif;
|
|
463
694
|
--vscode-font-weight: normal;
|
|
464
695
|
--vscode-font-size: 13px;
|
|
465
|
-
--vscode-editor-font-family:
|
|
696
|
+
--vscode-editor-font-family: Consolas, 'Courier New', monospace;
|
|
466
697
|
--vscode-editor-font-weight: normal;
|
|
467
|
-
--vscode-editor-font-size:
|
|
698
|
+
--vscode-editor-font-size: 14px;
|
|
468
699
|
--vscode-foreground: #616161;
|
|
700
|
+
--vscode-disabledForeground: rgba(97, 97, 97, 0.5);
|
|
469
701
|
--vscode-errorForeground: #a1260d;
|
|
470
702
|
--vscode-descriptionForeground: #717171;
|
|
471
703
|
--vscode-icon-foreground: #424242;
|
|
472
704
|
--vscode-focusBorder: #0090f1;
|
|
473
|
-
--vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
|
|
474
705
|
--vscode-textLink-foreground: #006ab1;
|
|
475
706
|
--vscode-textLink-activeForeground: #006ab1;
|
|
707
|
+
--vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
|
|
476
708
|
--vscode-textPreformat-foreground: #a31515;
|
|
477
|
-
--vscode-
|
|
709
|
+
--vscode-textPreformat-background: rgba(0, 0, 0, 0.1);
|
|
710
|
+
--vscode-textBlockQuote-background: #f2f2f2;
|
|
478
711
|
--vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
|
|
479
712
|
--vscode-textCodeBlock-background: rgba(220, 220, 220, 0.4);
|
|
480
|
-
--vscode-
|
|
481
|
-
--vscode-input-background: #ffffff;
|
|
482
|
-
--vscode-input-foreground: #616161;
|
|
483
|
-
--vscode-inputOption-activeBorder: rgba(0, 122, 204, 0);
|
|
484
|
-
--vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
|
|
485
|
-
--vscode-inputOption-activeForeground: #000000;
|
|
486
|
-
--vscode-input-placeholderForeground: #767676;
|
|
487
|
-
--vscode-inputValidation-infoBackground: #d6ecf2;
|
|
488
|
-
--vscode-inputValidation-infoBorder: #007acc;
|
|
489
|
-
--vscode-inputValidation-warningBackground: #f6f5d2;
|
|
490
|
-
--vscode-inputValidation-warningBorder: #b89500;
|
|
491
|
-
--vscode-inputValidation-errorBackground: #f2dede;
|
|
492
|
-
--vscode-inputValidation-errorBorder: #be1100;
|
|
493
|
-
--vscode-dropdown-background: #ffffff;
|
|
494
|
-
--vscode-dropdown-border: #cecece;
|
|
495
|
-
--vscode-checkbox-background: #ffffff;
|
|
496
|
-
--vscode-checkbox-border: #cecece;
|
|
497
|
-
--vscode-button-foreground: #ffffff;
|
|
498
|
-
--vscode-button-background: #007acc;
|
|
499
|
-
--vscode-button-hoverBackground: #0062a3;
|
|
500
|
-
--vscode-button-secondaryForeground: #ffffff;
|
|
501
|
-
--vscode-button-secondaryBackground: #5f6a79;
|
|
502
|
-
--vscode-button-secondaryHoverBackground: #4c5561;
|
|
713
|
+
--vscode-sash-hoverBorder: #0090f1;
|
|
503
714
|
--vscode-badge-background: #c4c4c4;
|
|
504
715
|
--vscode-badge-foreground: #333333;
|
|
505
716
|
--vscode-scrollbar-shadow: #dddddd;
|
|
@@ -507,120 +718,164 @@ html[data-theme='light'] {
|
|
|
507
718
|
--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
508
719
|
--vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
|
|
509
720
|
--vscode-progressBar-background: #0e70c0;
|
|
510
|
-
--vscode-editorError-foreground: #e51400;
|
|
511
|
-
--vscode-editorWarning-foreground: #bf8803;
|
|
512
|
-
--vscode-editorInfo-foreground: #75beff;
|
|
513
|
-
--vscode-editorHint-foreground: #6c6c6c;
|
|
514
|
-
--vscode-sash-hoverBorder: #0090f1;
|
|
515
721
|
--vscode-editor-background: #ffffff;
|
|
516
722
|
--vscode-editor-foreground: #000000;
|
|
723
|
+
--vscode-editorStickyScroll-background: #ffffff;
|
|
724
|
+
--vscode-editorStickyScrollHover-background: #f0f0f0;
|
|
725
|
+
--vscode-editorStickyScroll-shadow: #dddddd;
|
|
517
726
|
--vscode-editorWidget-background: #f3f3f3;
|
|
518
727
|
--vscode-editorWidget-foreground: #616161;
|
|
519
728
|
--vscode-editorWidget-border: #c8c8c8;
|
|
520
|
-
--vscode-
|
|
521
|
-
--vscode-
|
|
522
|
-
--vscode-
|
|
523
|
-
--vscode-
|
|
524
|
-
--vscode-
|
|
525
|
-
--vscode-pickerGroup-border: #cccedb;
|
|
729
|
+
--vscode-editorError-foreground: #e51400;
|
|
730
|
+
--vscode-editorWarning-foreground: #bf8803;
|
|
731
|
+
--vscode-editorInfo-foreground: #1a85ff;
|
|
732
|
+
--vscode-editorHint-foreground: #6c6c6c;
|
|
733
|
+
--vscode-editorLink-activeForeground: #0000ff;
|
|
526
734
|
--vscode-editor-selectionBackground: #add6ff;
|
|
527
735
|
--vscode-editor-inactiveSelectionBackground: #e5ebf1;
|
|
528
736
|
--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.5);
|
|
529
737
|
--vscode-editor-findMatchBackground: #a8ac94;
|
|
530
738
|
--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
531
739
|
--vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, 0.3);
|
|
532
|
-
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
|
533
740
|
--vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
|
|
534
741
|
--vscode-editorHoverWidget-background: #f3f3f3;
|
|
535
742
|
--vscode-editorHoverWidget-foreground: #616161;
|
|
536
743
|
--vscode-editorHoverWidget-border: #c8c8c8;
|
|
537
744
|
--vscode-editorHoverWidget-statusBarBackground: #e7e7e7;
|
|
538
|
-
--vscode-
|
|
539
|
-
--vscode-
|
|
540
|
-
--vscode-
|
|
745
|
+
--vscode-editorInlayHint-foreground: #969696;
|
|
746
|
+
--vscode-editorInlayHint-background: rgba(196, 196, 196, 0.1);
|
|
747
|
+
--vscode-editorInlayHint-typeForeground: #969696;
|
|
748
|
+
--vscode-editorInlayHint-typeBackground: rgba(196, 196, 196, 0.1);
|
|
749
|
+
--vscode-editorInlayHint-parameterForeground: #969696;
|
|
750
|
+
--vscode-editorInlayHint-parameterBackground: rgba(196, 196, 196, 0.1);
|
|
541
751
|
--vscode-editorLightBulb-foreground: #ddb100;
|
|
542
752
|
--vscode-editorLightBulbAutoFix-foreground: #007acc;
|
|
543
|
-
--vscode-
|
|
753
|
+
--vscode-editorLightBulbAi-foreground: #ddb100;
|
|
754
|
+
--vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
|
|
755
|
+
--vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
|
|
756
|
+
--vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.25);
|
|
544
757
|
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
|
758
|
+
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
|
759
|
+
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
|
545
760
|
--vscode-diffEditor-diagonalFill: rgba(34, 34, 34, 0.2);
|
|
761
|
+
--vscode-diffEditor-unchangedRegionBackground: #f8f8f8;
|
|
762
|
+
--vscode-diffEditor-unchangedRegionForeground: #616161;
|
|
763
|
+
--vscode-diffEditor-unchangedCodeBackground: rgba(184, 184, 184, 0.16);
|
|
764
|
+
--vscode-widget-shadow: rgba(0, 0, 0, 0.16);
|
|
765
|
+
--vscode-widget-border: #d4d4d4;
|
|
766
|
+
--vscode-toolbar-hoverBackground: rgba(184, 184, 184, 0.31);
|
|
767
|
+
--vscode-toolbar-activeBackground: rgba(166, 166, 166, 0.31);
|
|
768
|
+
--vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
|
|
769
|
+
--vscode-breadcrumb-background: #ffffff;
|
|
770
|
+
--vscode-breadcrumb-focusForeground: #4e4e4e;
|
|
771
|
+
--vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
|
|
772
|
+
--vscode-breadcrumbPicker-background: #f3f3f3;
|
|
773
|
+
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
|
774
|
+
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
|
775
|
+
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
|
776
|
+
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
|
777
|
+
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
|
778
|
+
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
|
779
|
+
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
|
780
|
+
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
|
781
|
+
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
|
782
|
+
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
783
|
+
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
784
|
+
--vscode-problemsErrorIcon-foreground: #e51400;
|
|
785
|
+
--vscode-problemsWarningIcon-foreground: #bf8803;
|
|
786
|
+
--vscode-problemsInfoIcon-foreground: #1a85ff;
|
|
787
|
+
--vscode-input-background: #ffffff;
|
|
788
|
+
--vscode-input-foreground: #616161;
|
|
789
|
+
--vscode-inputOption-activeBorder: #007acc;
|
|
790
|
+
--vscode-inputOption-hoverBackground: rgba(184, 184, 184, 0.31);
|
|
791
|
+
--vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
|
|
792
|
+
--vscode-inputOption-activeForeground: #000000;
|
|
793
|
+
--vscode-input-placeholderForeground: #767676;
|
|
794
|
+
--vscode-inputValidation-infoBackground: #d6ecf2;
|
|
795
|
+
--vscode-inputValidation-infoBorder: #007acc;
|
|
796
|
+
--vscode-inputValidation-warningBackground: #f6f5d2;
|
|
797
|
+
--vscode-inputValidation-warningBorder: #b89500;
|
|
798
|
+
--vscode-inputValidation-errorBackground: #f2dede;
|
|
799
|
+
--vscode-inputValidation-errorBorder: #be1100;
|
|
800
|
+
--vscode-dropdown-background: #ffffff;
|
|
801
|
+
--vscode-dropdown-foreground: #616161;
|
|
802
|
+
--vscode-dropdown-border: #cecece;
|
|
803
|
+
--vscode-button-foreground: #ffffff;
|
|
804
|
+
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
|
805
|
+
--vscode-button-background: #007acc;
|
|
806
|
+
--vscode-button-hoverBackground: #0062a3;
|
|
807
|
+
--vscode-button-secondaryForeground: #ffffff;
|
|
808
|
+
--vscode-button-secondaryBackground: #5f6a79;
|
|
809
|
+
--vscode-button-secondaryHoverBackground: #4c5561;
|
|
810
|
+
--vscode-checkbox-background: #ffffff;
|
|
811
|
+
--vscode-checkbox-selectBackground: #f3f3f3;
|
|
812
|
+
--vscode-checkbox-foreground: #616161;
|
|
813
|
+
--vscode-checkbox-border: #919191;
|
|
814
|
+
--vscode-checkbox-selectBorder: #424242;
|
|
815
|
+
--vscode-keybindingLabel-background: rgba(221, 221, 221, 0.4);
|
|
816
|
+
--vscode-keybindingLabel-foreground: #555555;
|
|
817
|
+
--vscode-keybindingLabel-border: rgba(204, 204, 204, 0.4);
|
|
818
|
+
--vscode-keybindingLabel-bottomBorder: rgba(187, 187, 187, 0.4);
|
|
546
819
|
--vscode-list-focusOutline: #0090f1;
|
|
820
|
+
--vscode-list-focusAndSelectionOutline: #90c2f9;
|
|
547
821
|
--vscode-list-activeSelectionBackground: #0060c0;
|
|
548
822
|
--vscode-list-activeSelectionForeground: #ffffff;
|
|
823
|
+
--vscode-list-activeSelectionIconForeground: #ffffff;
|
|
549
824
|
--vscode-list-inactiveSelectionBackground: #e4e6f1;
|
|
550
825
|
--vscode-list-hoverBackground: #e8e8e8;
|
|
826
|
+
--vscode-list-dropBackground: #d6ebff;
|
|
827
|
+
--vscode-list-dropBetweenBackground: #424242;
|
|
551
828
|
--vscode-list-highlightForeground: #0066bf;
|
|
829
|
+
--vscode-list-focusHighlightForeground: #bbe7ff;
|
|
552
830
|
--vscode-list-invalidItemForeground: #b89500;
|
|
553
831
|
--vscode-list-errorForeground: #b01011;
|
|
554
832
|
--vscode-list-warningForeground: #855f00;
|
|
555
|
-
--vscode-listFilterWidget-background: #
|
|
833
|
+
--vscode-listFilterWidget-background: #f3f3f3;
|
|
556
834
|
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
|
557
835
|
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
|
836
|
+
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.16);
|
|
558
837
|
--vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
|
|
838
|
+
--vscode-list-deemphasizedForeground: #8e8e90;
|
|
559
839
|
--vscode-tree-indentGuidesStroke: #a9a9a9;
|
|
840
|
+
--vscode-tree-inactiveIndentGuidesStroke: rgba(169, 169, 169, 0.4);
|
|
560
841
|
--vscode-tree-tableColumnsBorder: rgba(97, 97, 97, 0.13);
|
|
561
|
-
--vscode-
|
|
842
|
+
--vscode-tree-tableOddRowsBackground: rgba(97, 97, 97, 0.04);
|
|
843
|
+
--vscode-menu-border: #d4d4d4;
|
|
562
844
|
--vscode-menu-foreground: #616161;
|
|
563
845
|
--vscode-menu-background: #ffffff;
|
|
564
846
|
--vscode-menu-selectionForeground: #ffffff;
|
|
565
847
|
--vscode-menu-selectionBackground: #0060c0;
|
|
566
|
-
--vscode-menu-separatorBackground: #
|
|
567
|
-
--vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
|
|
568
|
-
--vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
|
|
569
|
-
--vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
|
|
570
|
-
--vscode-breadcrumb-background: #ffffff;
|
|
571
|
-
--vscode-breadcrumb-focusForeground: #4e4e4e;
|
|
572
|
-
--vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
|
|
573
|
-
--vscode-breadcrumbPicker-background: #f3f3f3;
|
|
574
|
-
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
|
575
|
-
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
|
576
|
-
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
|
577
|
-
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
|
578
|
-
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
|
579
|
-
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
|
580
|
-
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
|
581
|
-
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
|
582
|
-
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
|
583
|
-
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
584
|
-
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
848
|
+
--vscode-menu-separatorBackground: #d4d4d4;
|
|
585
849
|
--vscode-minimap-findMatchHighlight: #d18616;
|
|
850
|
+
--vscode-minimap-selectionOccurrenceHighlight: #c9c9c9;
|
|
586
851
|
--vscode-minimap-selectionHighlight: #add6ff;
|
|
587
|
-
--vscode-minimap-
|
|
852
|
+
--vscode-minimap-infoHighlight: #1a85ff;
|
|
588
853
|
--vscode-minimap-warningHighlight: #bf8803;
|
|
854
|
+
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
|
855
|
+
--vscode-minimap-foregroundOpacity: #000000;
|
|
589
856
|
--vscode-minimapSlider-background: rgba(100, 100, 100, 0.2);
|
|
590
857
|
--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
|
|
591
858
|
--vscode-minimapSlider-activeBackground: rgba(0, 0, 0, 0.3);
|
|
592
|
-
--vscode-problemsErrorIcon-foreground: #e51400;
|
|
593
|
-
--vscode-problemsWarningIcon-foreground: #bf8803;
|
|
594
|
-
--vscode-problemsInfoIcon-foreground: #75beff;
|
|
595
859
|
--vscode-charts-foreground: #616161;
|
|
596
860
|
--vscode-charts-lines: rgba(97, 97, 97, 0.5);
|
|
597
861
|
--vscode-charts-red: #e51400;
|
|
598
|
-
--vscode-charts-blue: #
|
|
862
|
+
--vscode-charts-blue: #1a85ff;
|
|
599
863
|
--vscode-charts-yellow: #bf8803;
|
|
600
864
|
--vscode-charts-orange: #d18616;
|
|
601
865
|
--vscode-charts-green: #388a34;
|
|
602
866
|
--vscode-charts-purple: #652d90;
|
|
603
|
-
--vscode-
|
|
604
|
-
--vscode-
|
|
605
|
-
--vscode-
|
|
606
|
-
--vscode-
|
|
607
|
-
--vscode-
|
|
608
|
-
--vscode-
|
|
609
|
-
--vscode-
|
|
610
|
-
--vscode-
|
|
611
|
-
--vscode-
|
|
612
|
-
--vscode-
|
|
613
|
-
--vscode-
|
|
614
|
-
--vscode-
|
|
615
|
-
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
616
|
-
--vscode-editorBracketMatch-border: #b9b9b9;
|
|
617
|
-
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
|
618
|
-
--vscode-editorGutter-background: #ffffff;
|
|
619
|
-
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
|
|
620
|
-
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
621
|
-
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
|
622
|
-
--vscode-editorOverviewRuler-warningForeground: #bf8803;
|
|
623
|
-
--vscode-editorOverviewRuler-infoForeground: #75beff;
|
|
867
|
+
--vscode-quickInput-background: #f3f3f3;
|
|
868
|
+
--vscode-quickInput-foreground: #616161;
|
|
869
|
+
--vscode-quickInputTitle-background: rgba(0, 0, 0, 0.06);
|
|
870
|
+
--vscode-pickerGroup-foreground: #0066bf;
|
|
871
|
+
--vscode-pickerGroup-border: #cccedb;
|
|
872
|
+
--vscode-quickInputList-focusForeground: #ffffff;
|
|
873
|
+
--vscode-quickInputList-focusIconForeground: #ffffff;
|
|
874
|
+
--vscode-quickInputList-focusBackground: #0060c0;
|
|
875
|
+
--vscode-search-resultsInfoForeground: #616161;
|
|
876
|
+
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
|
877
|
+
--vscode-multiDiffEditor-headerBackground: #ececec;
|
|
878
|
+
--vscode-multiDiffEditor-border: #cccccc;
|
|
624
879
|
--vscode-symbolIcon-arrayForeground: #616161;
|
|
625
880
|
--vscode-symbolIcon-booleanForeground: #616161;
|
|
626
881
|
--vscode-symbolIcon-classForeground: #d67e00;
|
|
@@ -654,18 +909,81 @@ html[data-theme='light'] {
|
|
|
654
909
|
--vscode-symbolIcon-typeParameterForeground: #616161;
|
|
655
910
|
--vscode-symbolIcon-unitForeground: #616161;
|
|
656
911
|
--vscode-symbolIcon-variableForeground: #007acc;
|
|
912
|
+
--vscode-actionBar-toggledBackground: #dddddd;
|
|
913
|
+
--vscode-editorHoverWidget-highlightForeground: #0066bf;
|
|
914
|
+
--vscode-editor-lineHighlightBorder: #eeeeee;
|
|
915
|
+
--vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, 0.2);
|
|
916
|
+
--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
917
|
+
--vscode-editorCursor-foreground: #000000;
|
|
918
|
+
--vscode-editorMultiCursor-primary\.foreground: #000000;
|
|
919
|
+
--vscode-editorMultiCursor-secondary\.foreground: #000000;
|
|
920
|
+
--vscode-editorWhitespace-foreground: rgba(51, 51, 51, 0.2);
|
|
921
|
+
--vscode-editorLineNumber-foreground: #237893;
|
|
922
|
+
--vscode-editorIndentGuide-background: rgba(51, 51, 51, 0.2);
|
|
923
|
+
--vscode-editorIndentGuide-activeBackground: rgba(51, 51, 51, 0.2);
|
|
924
|
+
--vscode-editorIndentGuide-background1: #d3d3d3;
|
|
925
|
+
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
|
926
|
+
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
|
927
|
+
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
|
928
|
+
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
|
929
|
+
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
|
930
|
+
--vscode-editorIndentGuide-activeBackground1: #939393;
|
|
931
|
+
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
932
|
+
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
933
|
+
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
934
|
+
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
935
|
+
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
936
|
+
--vscode-editorActiveLineNumber-foreground: #0b216f;
|
|
937
|
+
--vscode-editorLineNumber-activeForeground: #0b216f;
|
|
938
|
+
--vscode-editorRuler-foreground: #d3d3d3;
|
|
939
|
+
--vscode-editorCodeLens-foreground: #919191;
|
|
940
|
+
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
941
|
+
--vscode-editorBracketMatch-border: #b9b9b9;
|
|
942
|
+
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
|
943
|
+
--vscode-editorGutter-background: #ffffff;
|
|
944
|
+
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
|
|
945
|
+
--vscode-editorGhostText-foreground: rgba(0, 0, 0, 0.47);
|
|
946
|
+
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
947
|
+
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
|
948
|
+
--vscode-editorOverviewRuler-warningForeground: #bf8803;
|
|
949
|
+
--vscode-editorOverviewRuler-infoForeground: #1a85ff;
|
|
950
|
+
--vscode-editorBracketHighlight-foreground1: #0431fa;
|
|
951
|
+
--vscode-editorBracketHighlight-foreground2: #319331;
|
|
952
|
+
--vscode-editorBracketHighlight-foreground3: #7b3814;
|
|
953
|
+
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
|
954
|
+
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
|
955
|
+
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
|
956
|
+
--vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
|
|
957
|
+
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
|
958
|
+
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
|
959
|
+
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
|
960
|
+
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
|
961
|
+
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
|
962
|
+
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
|
963
|
+
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
|
964
|
+
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
965
|
+
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
966
|
+
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
967
|
+
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
968
|
+
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
969
|
+
--vscode-editorUnicodeHighlight-border: #bf8803;
|
|
970
|
+
--vscode-diffEditor-move\.border: rgba(139, 139, 139, 0.61);
|
|
971
|
+
--vscode-diffEditor-moveActive\.border: #ffa500;
|
|
972
|
+
--vscode-diffEditor-unchangedRegionShadow: rgba(115, 115, 115, 0.75);
|
|
657
973
|
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
|
974
|
+
--vscode-editor-foldBackground: rgba(173, 214, 255, 0.3);
|
|
975
|
+
--vscode-editorGutter-foldingControlForeground: #424242;
|
|
658
976
|
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
|
659
977
|
--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.25);
|
|
660
978
|
--vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, 0.25);
|
|
979
|
+
--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, 0.25);
|
|
661
980
|
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
662
981
|
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
|
663
|
-
--vscode-
|
|
664
|
-
--vscode-
|
|
665
|
-
--vscode-
|
|
666
|
-
--vscode-
|
|
667
|
-
--vscode-
|
|
668
|
-
--vscode-peekView-border: #007acc;
|
|
982
|
+
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
|
983
|
+
--vscode-peekViewTitle-background: #f3f3f3;
|
|
984
|
+
--vscode-peekViewTitleLabel-foreground: #000000;
|
|
985
|
+
--vscode-peekViewTitleDescription-foreground: #616161;
|
|
986
|
+
--vscode-peekView-border: #1a85ff;
|
|
669
987
|
--vscode-peekViewResult-background: #f3f3f3;
|
|
670
988
|
--vscode-peekViewResult-lineForeground: #646465;
|
|
671
989
|
--vscode-peekViewResult-fileForeground: #1e1e1e;
|
|
@@ -673,17 +991,26 @@ html[data-theme='light'] {
|
|
|
673
991
|
--vscode-peekViewResult-selectionForeground: #6c6c6c;
|
|
674
992
|
--vscode-peekViewEditor-background: #f2f8fc;
|
|
675
993
|
--vscode-peekViewEditorGutter-background: #f2f8fc;
|
|
994
|
+
--vscode-peekViewEditorStickyScroll-background: #f2f8fc;
|
|
676
995
|
--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
|
|
677
996
|
--vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, 0.87);
|
|
678
997
|
--vscode-editorMarkerNavigationError-background: #e51400;
|
|
998
|
+
--vscode-editorMarkerNavigationError-headerBackground: rgba(229, 20, 0, 0.1);
|
|
679
999
|
--vscode-editorMarkerNavigationWarning-background: #bf8803;
|
|
680
|
-
--vscode-
|
|
1000
|
+
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(191, 136, 3, 0.1);
|
|
1001
|
+
--vscode-editorMarkerNavigationInfo-background: #1a85ff;
|
|
1002
|
+
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(26, 133, 255, 0.1);
|
|
681
1003
|
--vscode-editorMarkerNavigation-background: #ffffff;
|
|
682
1004
|
--vscode-editorSuggestWidget-background: #f3f3f3;
|
|
683
1005
|
--vscode-editorSuggestWidget-border: #c8c8c8;
|
|
684
1006
|
--vscode-editorSuggestWidget-foreground: #000000;
|
|
685
|
-
--vscode-editorSuggestWidget-
|
|
1007
|
+
--vscode-editorSuggestWidget-selectedForeground: #ffffff;
|
|
1008
|
+
--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
|
|
1009
|
+
--vscode-editorSuggestWidget-selectedBackground: #0060c0;
|
|
686
1010
|
--vscode-editorSuggestWidget-highlightForeground: #0066bf;
|
|
1011
|
+
--vscode-editorSuggestWidget-focusHighlightForeground: #bbe7ff;
|
|
1012
|
+
--vscode-editorSuggestWidgetStatus-foreground: rgba(0, 0, 0, 0.5);
|
|
1013
|
+
--vscode-editorWatermark-foreground: rgba(0, 0, 0, 0.68);
|
|
687
1014
|
--vscode-tab-activeBackground: #ffffff;
|
|
688
1015
|
--vscode-tab-unfocusedActiveBackground: #ffffff;
|
|
689
1016
|
--vscode-tab-inactiveBackground: #ececec;
|
|
@@ -694,6 +1021,7 @@ html[data-theme='light'] {
|
|
|
694
1021
|
--vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, 0.35);
|
|
695
1022
|
--vscode-tab-border: #f3f3f3;
|
|
696
1023
|
--vscode-tab-lastPinnedBorder: rgba(97, 97, 97, 0.19);
|
|
1024
|
+
--vscode-tab-dragAndDropBorder: #333333;
|
|
697
1025
|
--vscode-tab-activeModifiedBorder: #33aaee;
|
|
698
1026
|
--vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, 0.5);
|
|
699
1027
|
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, 0.7);
|
|
@@ -703,7 +1031,10 @@ html[data-theme='light'] {
|
|
|
703
1031
|
--vscode-editorGroupHeader-noTabsBackground: #ffffff;
|
|
704
1032
|
--vscode-editorGroup-border: #e7e7e7;
|
|
705
1033
|
--vscode-editorGroup-dropBackground: rgba(38, 119, 203, 0.18);
|
|
706
|
-
--vscode-
|
|
1034
|
+
--vscode-editorGroup-dropIntoPromptForeground: #616161;
|
|
1035
|
+
--vscode-editorGroup-dropIntoPromptBackground: #f3f3f3;
|
|
1036
|
+
--vscode-sideBySideEditor-horizontalBorder: #e7e7e7;
|
|
1037
|
+
--vscode-sideBySideEditor-verticalBorder: #e7e7e7;
|
|
707
1038
|
--vscode-panel-background: #ffffff;
|
|
708
1039
|
--vscode-panel-border: rgba(128, 128, 128, 0.35);
|
|
709
1040
|
--vscode-panelTitle-activeForeground: #424242;
|
|
@@ -714,17 +1045,33 @@ html[data-theme='light'] {
|
|
|
714
1045
|
--vscode-panelSection-dropBackground: rgba(38, 119, 203, 0.18);
|
|
715
1046
|
--vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
|
|
716
1047
|
--vscode-panelSection-border: rgba(128, 128, 128, 0.35);
|
|
1048
|
+
--vscode-panelStickyScroll-background: #ffffff;
|
|
1049
|
+
--vscode-panelStickyScroll-shadow: #dddddd;
|
|
1050
|
+
--vscode-banner-background: #004386;
|
|
1051
|
+
--vscode-banner-foreground: #ffffff;
|
|
1052
|
+
--vscode-banner-iconForeground: #1a85ff;
|
|
717
1053
|
--vscode-statusBar-foreground: #ffffff;
|
|
718
1054
|
--vscode-statusBar-noFolderForeground: #ffffff;
|
|
719
1055
|
--vscode-statusBar-background: #007acc;
|
|
720
1056
|
--vscode-statusBar-noFolderBackground: #68217a;
|
|
1057
|
+
--vscode-statusBar-focusBorder: #ffffff;
|
|
721
1058
|
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
|
1059
|
+
--vscode-statusBarItem-focusBorder: #ffffff;
|
|
722
1060
|
--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
|
|
1061
|
+
--vscode-statusBarItem-hoverForeground: #ffffff;
|
|
1062
|
+
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
|
723
1063
|
--vscode-statusBarItem-prominentForeground: #ffffff;
|
|
724
1064
|
--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
|
|
1065
|
+
--vscode-statusBarItem-prominentHoverForeground: #ffffff;
|
|
725
1066
|
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
|
726
1067
|
--vscode-statusBarItem-errorBackground: #c72e0f;
|
|
727
1068
|
--vscode-statusBarItem-errorForeground: #ffffff;
|
|
1069
|
+
--vscode-statusBarItem-errorHoverForeground: #ffffff;
|
|
1070
|
+
--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1071
|
+
--vscode-statusBarItem-warningBackground: #725102;
|
|
1072
|
+
--vscode-statusBarItem-warningForeground: #ffffff;
|
|
1073
|
+
--vscode-statusBarItem-warningHoverForeground: #ffffff;
|
|
1074
|
+
--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12);
|
|
728
1075
|
--vscode-activityBar-background: #2c2c2c;
|
|
729
1076
|
--vscode-activityBar-foreground: #ffffff;
|
|
730
1077
|
--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
|
|
@@ -732,21 +1079,47 @@ html[data-theme='light'] {
|
|
|
732
1079
|
--vscode-activityBar-dropBorder: #ffffff;
|
|
733
1080
|
--vscode-activityBarBadge-background: #007acc;
|
|
734
1081
|
--vscode-activityBarBadge-foreground: #ffffff;
|
|
1082
|
+
--vscode-activityBarTop-foreground: #424242;
|
|
1083
|
+
--vscode-activityBarTop-activeBorder: #424242;
|
|
1084
|
+
--vscode-activityBarTop-inactiveForeground: rgba(66, 66, 66, 0.75);
|
|
1085
|
+
--vscode-activityBarTop-dropBorder: #424242;
|
|
1086
|
+
--vscode-profileBadge-background: #c4c4c4;
|
|
1087
|
+
--vscode-profileBadge-foreground: #333333;
|
|
735
1088
|
--vscode-statusBarItem-remoteBackground: #16825d;
|
|
736
1089
|
--vscode-statusBarItem-remoteForeground: #ffffff;
|
|
1090
|
+
--vscode-statusBarItem-remoteHoverForeground: #ffffff;
|
|
1091
|
+
--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1092
|
+
--vscode-statusBarItem-offlineBackground: #6c1717;
|
|
1093
|
+
--vscode-statusBarItem-offlineForeground: #ffffff;
|
|
1094
|
+
--vscode-statusBarItem-offlineHoverForeground: #ffffff;
|
|
1095
|
+
--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12);
|
|
737
1096
|
--vscode-extensionBadge-remoteBackground: #007acc;
|
|
738
1097
|
--vscode-extensionBadge-remoteForeground: #ffffff;
|
|
739
1098
|
--vscode-sideBar-background: #f3f3f3;
|
|
1099
|
+
--vscode-sideBarTitle-background: #f3f3f3;
|
|
740
1100
|
--vscode-sideBarTitle-foreground: #6f6f6f;
|
|
741
1101
|
--vscode-sideBar-dropBackground: rgba(38, 119, 203, 0.18);
|
|
742
1102
|
--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
|
|
743
1103
|
--vscode-sideBarSectionHeader-border: rgba(97, 97, 97, 0.19);
|
|
1104
|
+
--vscode-sideBarActivityBarTop-border: rgba(97, 97, 97, 0.19);
|
|
1105
|
+
--vscode-sideBarStickyScroll-background: #f3f3f3;
|
|
1106
|
+
--vscode-sideBarStickyScroll-shadow: #dddddd;
|
|
744
1107
|
--vscode-titleBar-activeForeground: #333333;
|
|
745
1108
|
--vscode-titleBar-inactiveForeground: rgba(51, 51, 51, 0.6);
|
|
746
1109
|
--vscode-titleBar-activeBackground: #dddddd;
|
|
747
1110
|
--vscode-titleBar-inactiveBackground: rgba(221, 221, 221, 0.6);
|
|
748
1111
|
--vscode-menubar-selectionForeground: #333333;
|
|
749
|
-
--vscode-menubar-selectionBackground: rgba(
|
|
1112
|
+
--vscode-menubar-selectionBackground: rgba(184, 184, 184, 0.31);
|
|
1113
|
+
--vscode-commandCenter-foreground: #333333;
|
|
1114
|
+
--vscode-commandCenter-activeForeground: #333333;
|
|
1115
|
+
--vscode-commandCenter-inactiveForeground: rgba(51, 51, 51, 0.6);
|
|
1116
|
+
--vscode-commandCenter-background: rgba(0, 0, 0, 0.05);
|
|
1117
|
+
--vscode-commandCenter-activeBackground: rgba(0, 0, 0, 0.08);
|
|
1118
|
+
--vscode-commandCenter-border: rgba(51, 51, 51, 0.2);
|
|
1119
|
+
--vscode-commandCenter-activeBorder: rgba(51, 51, 51, 0.3);
|
|
1120
|
+
--vscode-commandCenter-inactiveBorder: rgba(51, 51, 51, 0.15);
|
|
1121
|
+
--vscode-notificationCenter-border: #d4d4d4;
|
|
1122
|
+
--vscode-notificationToast-border: #d4d4d4;
|
|
750
1123
|
--vscode-notifications-foreground: #616161;
|
|
751
1124
|
--vscode-notifications-background: #f3f3f3;
|
|
752
1125
|
--vscode-notificationLink-foreground: #006ab1;
|
|
@@ -754,27 +1127,78 @@ html[data-theme='light'] {
|
|
|
754
1127
|
--vscode-notifications-border: #e7e7e7;
|
|
755
1128
|
--vscode-notificationsErrorIcon-foreground: #e51400;
|
|
756
1129
|
--vscode-notificationsWarningIcon-foreground: #bf8803;
|
|
757
|
-
--vscode-notificationsInfoIcon-foreground: #
|
|
758
|
-
--vscode-
|
|
1130
|
+
--vscode-notificationsInfoIcon-foreground: #1a85ff;
|
|
1131
|
+
--vscode-chat-requestBorder: rgba(0, 0, 0, 0.1);
|
|
1132
|
+
--vscode-chat-requestBackground: rgba(255, 255, 255, 0.62);
|
|
1133
|
+
--vscode-chat-slashCommandBackground: rgba(210, 236, 255, 0.6);
|
|
1134
|
+
--vscode-chat-slashCommandForeground: #306ca2;
|
|
1135
|
+
--vscode-chat-avatarBackground: #f2f2f2;
|
|
1136
|
+
--vscode-chat-avatarForeground: #616161;
|
|
1137
|
+
--vscode-simpleFindWidget-sashBorder: #c8c8c8;
|
|
1138
|
+
--vscode-commentsView-resolvedIcon: rgba(97, 97, 97, 0.5);
|
|
1139
|
+
--vscode-commentsView-unresolvedIcon: #0090f1;
|
|
1140
|
+
--vscode-editorCommentsWidget-replyInputBackground: #f3f3f3;
|
|
1141
|
+
--vscode-editorCommentsWidget-resolvedBorder: rgba(97, 97, 97, 0.5);
|
|
1142
|
+
--vscode-editorCommentsWidget-unresolvedBorder: #0090f1;
|
|
1143
|
+
--vscode-editorCommentsWidget-rangeBackground: rgba(0, 144, 241, 0.1);
|
|
1144
|
+
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 144, 241, 0.1);
|
|
1145
|
+
--vscode-editorGutter-commentRangeForeground: #d5d8e9;
|
|
1146
|
+
--vscode-editorOverviewRuler-commentForeground: #d5d8e9;
|
|
1147
|
+
--vscode-editorOverviewRuler-commentUnresolvedForeground: #d5d8e9;
|
|
1148
|
+
--vscode-editorGutter-commentGlyphForeground: #000000;
|
|
1149
|
+
--vscode-editorGutter-commentUnresolvedGlyphForeground: #000000;
|
|
759
1150
|
--vscode-debugToolBar-background: #f3f3f3;
|
|
760
1151
|
--vscode-debugIcon-startForeground: #388a34;
|
|
1152
|
+
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
|
|
1153
|
+
--vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
|
|
1154
|
+
--vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
|
|
1155
|
+
--vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.4);
|
|
1156
|
+
--vscode-mergeEditor-changeBase\.background: #ffcccc;
|
|
1157
|
+
--vscode-mergeEditor-changeBase\.word\.background: #ffa3a3;
|
|
1158
|
+
--vscode-mergeEditor-conflict\.unhandledUnfocused\.border: #ffa600;
|
|
1159
|
+
--vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
|
|
1160
|
+
--vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
|
|
1161
|
+
--vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
|
|
1162
|
+
--vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
|
1163
|
+
--vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
|
|
1164
|
+
--vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
|
|
1165
|
+
--vscode-mergeEditor-conflict\.input1\.background: rgba(64, 200, 174, 0.2);
|
|
1166
|
+
--vscode-mergeEditor-conflict\.input2\.background: rgba(64, 166, 255, 0.2);
|
|
761
1167
|
--vscode-settings-headerForeground: #444444;
|
|
1168
|
+
--vscode-settings-settingsHeaderHoverForeground: rgba(68, 68, 68, 0.7);
|
|
762
1169
|
--vscode-settings-modifiedItemIndicator: #66afe0;
|
|
1170
|
+
--vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
|
|
1171
|
+
--vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
|
|
763
1172
|
--vscode-settings-dropdownBackground: #ffffff;
|
|
1173
|
+
--vscode-settings-dropdownForeground: #616161;
|
|
764
1174
|
--vscode-settings-dropdownBorder: #cecece;
|
|
765
1175
|
--vscode-settings-dropdownListBorder: #c8c8c8;
|
|
766
1176
|
--vscode-settings-checkboxBackground: #ffffff;
|
|
767
|
-
--vscode-settings-
|
|
1177
|
+
--vscode-settings-checkboxForeground: #616161;
|
|
1178
|
+
--vscode-settings-checkboxBorder: #919191;
|
|
768
1179
|
--vscode-settings-textInputBackground: #ffffff;
|
|
769
1180
|
--vscode-settings-textInputForeground: #616161;
|
|
770
1181
|
--vscode-settings-textInputBorder: #cecece;
|
|
771
1182
|
--vscode-settings-numberInputBackground: #ffffff;
|
|
772
1183
|
--vscode-settings-numberInputForeground: #616161;
|
|
773
1184
|
--vscode-settings-numberInputBorder: #cecece;
|
|
774
|
-
--vscode-
|
|
1185
|
+
--vscode-settings-focusedRowBackground: rgba(232, 232, 232, 0.6);
|
|
1186
|
+
--vscode-settings-rowHoverBackground: rgba(232, 232, 232, 0.3);
|
|
1187
|
+
--vscode-settings-focusedRowBorder: #0090f1;
|
|
775
1188
|
--vscode-terminal-foreground: #333333;
|
|
776
|
-
--vscode-terminal-selectionBackground:
|
|
1189
|
+
--vscode-terminal-selectionBackground: #add6ff;
|
|
1190
|
+
--vscode-terminal-inactiveSelectionBackground: #e5ebf1;
|
|
1191
|
+
--vscode-terminalCommandDecoration-defaultBackground: rgba(0, 0, 0, 0.25);
|
|
1192
|
+
--vscode-terminalCommandDecoration-successBackground: #2090d3;
|
|
1193
|
+
--vscode-terminalCommandDecoration-errorBackground: #e51400;
|
|
1194
|
+
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
|
777
1195
|
--vscode-terminal-border: rgba(128, 128, 128, 0.35);
|
|
1196
|
+
--vscode-terminal-findMatchBackground: #a8ac94;
|
|
1197
|
+
--vscode-terminal-hoverHighlightBackground: rgba(173, 214, 255, 0.07);
|
|
1198
|
+
--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
1199
|
+
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
1200
|
+
--vscode-terminal-dropBackground: rgba(38, 119, 203, 0.18);
|
|
1201
|
+
--vscode-terminalStickyScrollHover-background: #f0f0f0;
|
|
778
1202
|
--vscode-testing-iconFailed: #f14c4c;
|
|
779
1203
|
--vscode-testing-iconErrored: #f14c4c;
|
|
780
1204
|
--vscode-testing-iconPassed: #73c991;
|
|
@@ -783,44 +1207,116 @@ html[data-theme='light'] {
|
|
|
783
1207
|
--vscode-testing-iconUnset: #848484;
|
|
784
1208
|
--vscode-testing-iconSkipped: #848484;
|
|
785
1209
|
--vscode-testing-peekBorder: #e51400;
|
|
1210
|
+
--vscode-testing-messagePeekBorder: #1a85ff;
|
|
1211
|
+
--vscode-testing-peekHeaderBackground: rgba(229, 20, 0, 0.1);
|
|
1212
|
+
--vscode-testing-messagePeekHeaderBackground: rgba(26, 133, 255, 0.1);
|
|
1213
|
+
--vscode-testing-coveredBackground: rgba(156, 204, 44, 0.25);
|
|
1214
|
+
--vscode-testing-coveredBorder: rgba(156, 204, 44, 0.19);
|
|
1215
|
+
--vscode-testing-coveredGutterBackground: rgba(156, 204, 44, 0.15);
|
|
1216
|
+
--vscode-testing-uncoveredBranchBackground: #ff9999;
|
|
1217
|
+
--vscode-testing-uncoveredBackground: rgba(255, 0, 0, 0.2);
|
|
1218
|
+
--vscode-testing-uncoveredBorder: rgba(255, 0, 0, 0.15);
|
|
1219
|
+
--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, 0.3);
|
|
1220
|
+
--vscode-testing-coverCountBadgeBackground: #c4c4c4;
|
|
1221
|
+
--vscode-testing-coverCountBadgeForeground: #333333;
|
|
786
1222
|
--vscode-testing-message\.error\.decorationForeground: #e51400;
|
|
787
1223
|
--vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
|
|
788
|
-
--vscode-testing-message\.
|
|
789
|
-
--vscode-testing-
|
|
790
|
-
--vscode-testing-
|
|
791
|
-
--vscode-testing-
|
|
792
|
-
--vscode-testing-
|
|
1224
|
+
--vscode-testing-message\.info\.decorationForeground: rgba(0, 0, 0, 0.5);
|
|
1225
|
+
--vscode-testing-iconErrored\.retired: rgba(241, 76, 76, 0.7);
|
|
1226
|
+
--vscode-testing-iconFailed\.retired: rgba(241, 76, 76, 0.7);
|
|
1227
|
+
--vscode-testing-iconPassed\.retired: rgba(115, 201, 145, 0.7);
|
|
1228
|
+
--vscode-testing-iconQueued\.retired: rgba(204, 167, 0, 0.7);
|
|
1229
|
+
--vscode-testing-iconUnset\.retired: rgba(132, 132, 132, 0.7);
|
|
1230
|
+
--vscode-testing-iconSkipped\.retired: rgba(132, 132, 132, 0.7);
|
|
793
1231
|
--vscode-welcomePage-tileBackground: #f3f3f3;
|
|
794
1232
|
--vscode-welcomePage-tileHoverBackground: #dbdbdb;
|
|
1233
|
+
--vscode-welcomePage-tileBorder: rgba(0, 0, 0, 0.1);
|
|
795
1234
|
--vscode-welcomePage-progress\.background: #ffffff;
|
|
796
1235
|
--vscode-welcomePage-progress\.foreground: #006ab1;
|
|
797
|
-
--vscode-
|
|
798
|
-
--vscode-
|
|
1236
|
+
--vscode-walkthrough-stepTitle\.foreground: #000000;
|
|
1237
|
+
--vscode-walkThrough-embeddedEditorBackground: #f4f4f4;
|
|
1238
|
+
--vscode-inlineChat-background: #f3f3f3;
|
|
1239
|
+
--vscode-inlineChat-border: #c8c8c8;
|
|
1240
|
+
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.16);
|
|
1241
|
+
--vscode-inlineChat-regionHighlight: rgba(173, 214, 255, 0.15);
|
|
1242
|
+
--vscode-inlineChatInput-border: #c8c8c8;
|
|
1243
|
+
--vscode-inlineChatInput-focusBorder: #0090f1;
|
|
1244
|
+
--vscode-inlineChatInput-placeholderForeground: #767676;
|
|
1245
|
+
--vscode-inlineChatInput-background: #ffffff;
|
|
1246
|
+
--vscode-inlineChatDiff-inserted: rgba(156, 204, 44, 0.13);
|
|
1247
|
+
--vscode-editorOverviewRuler-inlineChatInserted: rgba(156, 204, 44, 0.2);
|
|
1248
|
+
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
|
1249
|
+
--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, 0.16);
|
|
799
1250
|
--vscode-debugExceptionWidget-border: #a31515;
|
|
800
1251
|
--vscode-debugExceptionWidget-background: #f1dfde;
|
|
801
|
-
--vscode-
|
|
802
|
-
--vscode-
|
|
803
|
-
--vscode-
|
|
804
|
-
--vscode-
|
|
805
|
-
--vscode-
|
|
806
|
-
--vscode-minimapGutter-deletedBackground: #ca4b51;
|
|
807
|
-
--vscode-editorOverviewRuler-modifiedForeground: rgba(102, 175, 224, 0.6);
|
|
808
|
-
--vscode-editorOverviewRuler-addedForeground: rgba(129, 184, 139, 0.6);
|
|
809
|
-
--vscode-editorOverviewRuler-deletedForeground: rgba(202, 75, 81, 0.6);
|
|
810
|
-
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
|
|
811
|
-
--vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
|
|
1252
|
+
--vscode-statusBar-debuggingBackground: #cc6633;
|
|
1253
|
+
--vscode-statusBar-debuggingForeground: #ffffff;
|
|
1254
|
+
--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, 0.26);
|
|
1255
|
+
--vscode-keybindingTable-headerBackground: rgba(97, 97, 97, 0.04);
|
|
1256
|
+
--vscode-keybindingTable-rowsBackground: rgba(97, 97, 97, 0.04);
|
|
812
1257
|
--vscode-debugIcon-breakpointForeground: #e51400;
|
|
813
1258
|
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
|
814
1259
|
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
|
815
1260
|
--vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;
|
|
816
1261
|
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
|
817
|
-
--vscode-
|
|
1262
|
+
--vscode-editor-inlineValuesForeground: rgba(0, 0, 0, 0.5);
|
|
1263
|
+
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
|
1264
|
+
--vscode-ports-iconRunningProcessForeground: #369432;
|
|
1265
|
+
--vscode-editorGutter-modifiedBackground: #2090d3;
|
|
1266
|
+
--vscode-editorGutter-addedBackground: #48985d;
|
|
1267
|
+
--vscode-editorGutter-deletedBackground: #e51400;
|
|
1268
|
+
--vscode-minimapGutter-modifiedBackground: #2090d3;
|
|
1269
|
+
--vscode-minimapGutter-addedBackground: #48985d;
|
|
1270
|
+
--vscode-minimapGutter-deletedBackground: #e51400;
|
|
1271
|
+
--vscode-editorOverviewRuler-modifiedForeground: rgba(32, 144, 211, 0.6);
|
|
1272
|
+
--vscode-editorOverviewRuler-addedForeground: rgba(72, 152, 93, 0.6);
|
|
1273
|
+
--vscode-editorOverviewRuler-deletedForeground: rgba(229, 20, 0, 0.6);
|
|
1274
|
+
--vscode-debugTokenExpression-name: #9b46b0;
|
|
1275
|
+
--vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
|
|
1276
|
+
--vscode-debugTokenExpression-string: #a31515;
|
|
1277
|
+
--vscode-debugTokenExpression-boolean: #0000ff;
|
|
1278
|
+
--vscode-debugTokenExpression-number: #098658;
|
|
1279
|
+
--vscode-debugTokenExpression-error: #e51400;
|
|
1280
|
+
--vscode-debugView-exceptionLabelForeground: #ffffff;
|
|
1281
|
+
--vscode-debugView-exceptionLabelBackground: #a31515;
|
|
1282
|
+
--vscode-debugView-stateLabelForeground: #616161;
|
|
1283
|
+
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
1284
|
+
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
1285
|
+
--vscode-debugConsole-infoForeground: #1a85ff;
|
|
1286
|
+
--vscode-debugConsole-warningForeground: #bf8803;
|
|
1287
|
+
--vscode-debugConsole-errorForeground: #a1260d;
|
|
1288
|
+
--vscode-debugConsole-sourceForeground: #616161;
|
|
1289
|
+
--vscode-debugConsoleInputIcon-foreground: #616161;
|
|
1290
|
+
--vscode-debugIcon-pauseForeground: #007acc;
|
|
1291
|
+
--vscode-debugIcon-stopForeground: #a1260d;
|
|
1292
|
+
--vscode-debugIcon-disconnectForeground: #a1260d;
|
|
1293
|
+
--vscode-debugIcon-restartForeground: #388a34;
|
|
1294
|
+
--vscode-debugIcon-stepOverForeground: #007acc;
|
|
1295
|
+
--vscode-debugIcon-stepIntoForeground: #007acc;
|
|
1296
|
+
--vscode-debugIcon-stepOutForeground: #007acc;
|
|
1297
|
+
--vscode-debugIcon-continueForeground: #007acc;
|
|
1298
|
+
--vscode-debugIcon-stepBackForeground: #007acc;
|
|
1299
|
+
--vscode-scm-historyItemAdditionsForeground: #587c0c;
|
|
1300
|
+
--vscode-scm-historyItemDeletionsForeground: #ad0707;
|
|
1301
|
+
--vscode-scm-historyItemStatisticsBorder: rgba(97, 97, 97, 0.2);
|
|
1302
|
+
--vscode-scm-historyItemSelectedStatisticsBorder: rgba(255, 255, 255, 0.2);
|
|
1303
|
+
--vscode-extensionButton-background: #007acc;
|
|
1304
|
+
--vscode-extensionButton-foreground: #ffffff;
|
|
1305
|
+
--vscode-extensionButton-hoverBackground: #0062a3;
|
|
1306
|
+
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
|
1307
|
+
--vscode-extensionButton-prominentBackground: #007acc;
|
|
1308
|
+
--vscode-extensionButton-prominentForeground: #ffffff;
|
|
1309
|
+
--vscode-extensionButton-prominentHoverBackground: #0062a3;
|
|
1310
|
+
--vscode-extensionIcon-starForeground: #df6100;
|
|
1311
|
+
--vscode-extensionIcon-verifiedForeground: #006ab1;
|
|
1312
|
+
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
|
1313
|
+
--vscode-extensionIcon-sponsorForeground: #b51e78;
|
|
818
1314
|
--vscode-notebook-cellBorderColor: #e8e8e8;
|
|
819
1315
|
--vscode-notebook-focusedEditorBorder: #0090f1;
|
|
820
1316
|
--vscode-notebookStatusSuccessIcon-foreground: #388a34;
|
|
1317
|
+
--vscode-notebookEditorOverviewRuler-runningCellForeground: #388a34;
|
|
821
1318
|
--vscode-notebookStatusErrorIcon-foreground: #a1260d;
|
|
822
1319
|
--vscode-notebookStatusRunningIcon-foreground: #616161;
|
|
823
|
-
--vscode-notebook-outputContainerBackgroundColor: #e8e8e8;
|
|
824
1320
|
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
|
825
1321
|
--vscode-notebook-selectedCellBackground: rgba(200, 221, 241, 0.31);
|
|
826
1322
|
--vscode-notebook-selectedCellBorder: #e8e8e8;
|
|
@@ -832,14 +1328,14 @@ html[data-theme='light'] {
|
|
|
832
1328
|
--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
833
1329
|
--vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
|
|
834
1330
|
--vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, 0.2);
|
|
1331
|
+
--vscode-notebook-cellEditorBackground: #f3f3f3;
|
|
1332
|
+
--vscode-notebook-editorBackground: #ffffff;
|
|
1333
|
+
--vscode-interactive-activeCodeBorder: #007acc;
|
|
1334
|
+
--vscode-interactive-inactiveCodeBorder: #e4e6f1;
|
|
835
1335
|
--vscode-searchEditor-textInputBorder: #cecece;
|
|
836
|
-
--vscode-extensionButton-prominentBackground: #007acc;
|
|
837
|
-
--vscode-extensionButton-prominentForeground: #ffffff;
|
|
838
|
-
--vscode-extensionButton-prominentHoverBackground: #0062a3;
|
|
839
|
-
--vscode-extensionIcon-starForeground: #df6100;
|
|
840
1336
|
--vscode-terminal-ansiBlack: #000000;
|
|
841
1337
|
--vscode-terminal-ansiRed: #cd3131;
|
|
842
|
-
--vscode-terminal-ansiGreen: #
|
|
1338
|
+
--vscode-terminal-ansiGreen: #107c10;
|
|
843
1339
|
--vscode-terminal-ansiYellow: #949800;
|
|
844
1340
|
--vscode-terminal-ansiBlue: #0451a5;
|
|
845
1341
|
--vscode-terminal-ansiMagenta: #bc05bc;
|
|
@@ -853,31 +1349,6 @@ html[data-theme='light'] {
|
|
|
853
1349
|
--vscode-terminal-ansiBrightMagenta: #bc05bc;
|
|
854
1350
|
--vscode-terminal-ansiBrightCyan: #0598bc;
|
|
855
1351
|
--vscode-terminal-ansiBrightWhite: #a5a5a5;
|
|
856
|
-
--vscode-debugTokenExpression-name: #9b46b0;
|
|
857
|
-
--vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
|
|
858
|
-
--vscode-debugTokenExpression-string: #a31515;
|
|
859
|
-
--vscode-debugTokenExpression-boolean: #0000ff;
|
|
860
|
-
--vscode-debugTokenExpression-number: #098658;
|
|
861
|
-
--vscode-debugTokenExpression-error: #e51400;
|
|
862
|
-
--vscode-debugView-exceptionLabelForeground: #ffffff;
|
|
863
|
-
--vscode-debugView-exceptionLabelBackground: #a31515;
|
|
864
|
-
--vscode-debugView-stateLabelForeground: #616161;
|
|
865
|
-
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
866
|
-
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
867
|
-
--vscode-debugConsole-infoForeground: #75beff;
|
|
868
|
-
--vscode-debugConsole-warningForeground: #bf8803;
|
|
869
|
-
--vscode-debugConsole-errorForeground: #a1260d;
|
|
870
|
-
--vscode-debugConsole-sourceForeground: #616161;
|
|
871
|
-
--vscode-debugConsoleInputIcon-foreground: #616161;
|
|
872
|
-
--vscode-debugIcon-pauseForeground: #007acc;
|
|
873
|
-
--vscode-debugIcon-stopForeground: #a1260d;
|
|
874
|
-
--vscode-debugIcon-disconnectForeground: #a1260d;
|
|
875
|
-
--vscode-debugIcon-restartForeground: #388a34;
|
|
876
|
-
--vscode-debugIcon-stepOverForeground: #007acc;
|
|
877
|
-
--vscode-debugIcon-stepIntoForeground: #007acc;
|
|
878
|
-
--vscode-debugIcon-stepOutForeground: #007acc;
|
|
879
|
-
--vscode-debugIcon-continueForeground: #007acc;
|
|
880
|
-
--vscode-debugIcon-stepBackForeground: #007acc;
|
|
881
1352
|
--vscode-gitDecoration-addedResourceForeground: #587c0c;
|
|
882
1353
|
--vscode-gitDecoration-modifiedResourceForeground: #895503;
|
|
883
1354
|
--vscode-gitDecoration-deletedResourceForeground: #ad0707;
|
|
@@ -891,13 +1362,14 @@ html[data-theme='light'] {
|
|
|
891
1362
|
}
|
|
892
1363
|
|
|
893
1364
|
html[data-theme='high contrast'] {
|
|
894
|
-
--vscode-font-family:
|
|
1365
|
+
--vscode-font-family: "Segoe WPC", "Segoe UI", sans-serif;
|
|
895
1366
|
--vscode-font-weight: normal;
|
|
896
1367
|
--vscode-font-size: 13px;
|
|
897
|
-
--vscode-editor-font-family:
|
|
1368
|
+
--vscode-editor-font-family: Consolas, 'Courier New', monospace;
|
|
898
1369
|
--vscode-editor-font-weight: normal;
|
|
899
|
-
--vscode-editor-font-size:
|
|
1370
|
+
--vscode-editor-font-size: 14px;
|
|
900
1371
|
--vscode-foreground: #ffffff;
|
|
1372
|
+
--vscode-disabledForeground: #a5a5a5;
|
|
901
1373
|
--vscode-errorForeground: #f48771;
|
|
902
1374
|
--vscode-descriptionForeground: rgba(255, 255, 255, 0.7);
|
|
903
1375
|
--vscode-icon-foreground: #ffffff;
|
|
@@ -905,137 +1377,152 @@ html[data-theme='high contrast'] {
|
|
|
905
1377
|
--vscode-contrastBorder: #6fc3df;
|
|
906
1378
|
--vscode-contrastActiveBorder: #f38518;
|
|
907
1379
|
--vscode-selection-background: #008000;
|
|
1380
|
+
--vscode-textLink-foreground: #21a6ff;
|
|
1381
|
+
--vscode-textLink-activeForeground: #21a6ff;
|
|
908
1382
|
--vscode-textSeparator-foreground: #000000;
|
|
909
|
-
--vscode-
|
|
910
|
-
--vscode-
|
|
911
|
-
--vscode-textPreformat-foreground: #d7ba7d;
|
|
1383
|
+
--vscode-textPreformat-foreground: #000000;
|
|
1384
|
+
--vscode-textPreformat-background: #ffffff;
|
|
912
1385
|
--vscode-textBlockQuote-border: #ffffff;
|
|
913
1386
|
--vscode-textCodeBlock-background: #000000;
|
|
914
|
-
--vscode-
|
|
915
|
-
--vscode-input-foreground: #ffffff;
|
|
916
|
-
--vscode-input-border: #6fc3df;
|
|
917
|
-
--vscode-inputOption-activeBorder: #6fc3df;
|
|
918
|
-
--vscode-inputOption-activeBackground: rgba(0, 0, 0, 0);
|
|
919
|
-
--vscode-input-placeholderForeground: rgba(255, 255, 255, 0.7);
|
|
920
|
-
--vscode-inputValidation-infoBackground: #000000;
|
|
921
|
-
--vscode-inputValidation-infoBorder: #6fc3df;
|
|
922
|
-
--vscode-inputValidation-warningBackground: #000000;
|
|
923
|
-
--vscode-inputValidation-warningBorder: #6fc3df;
|
|
924
|
-
--vscode-inputValidation-errorBackground: #000000;
|
|
925
|
-
--vscode-inputValidation-errorBorder: #6fc3df;
|
|
926
|
-
--vscode-dropdown-background: #000000;
|
|
927
|
-
--vscode-dropdown-listBackground: #000000;
|
|
928
|
-
--vscode-dropdown-foreground: #ffffff;
|
|
929
|
-
--vscode-dropdown-border: #6fc3df;
|
|
930
|
-
--vscode-checkbox-background: #000000;
|
|
931
|
-
--vscode-checkbox-foreground: #ffffff;
|
|
932
|
-
--vscode-checkbox-border: #6fc3df;
|
|
933
|
-
--vscode-button-foreground: #ffffff;
|
|
934
|
-
--vscode-button-secondaryForeground: #ffffff;
|
|
1387
|
+
--vscode-sash-hoverBorder: #f38518;
|
|
935
1388
|
--vscode-badge-background: #000000;
|
|
936
1389
|
--vscode-badge-foreground: #ffffff;
|
|
937
1390
|
--vscode-scrollbarSlider-background: rgba(111, 195, 223, 0.6);
|
|
938
1391
|
--vscode-scrollbarSlider-hoverBackground: rgba(111, 195, 223, 0.8);
|
|
939
1392
|
--vscode-scrollbarSlider-activeBackground: #6fc3df;
|
|
940
1393
|
--vscode-progressBar-background: #6fc3df;
|
|
941
|
-
--vscode-editorError-border: rgba(228, 119, 119, 0.8);
|
|
942
|
-
--vscode-editorWarning-border: rgba(255, 204, 0, 0.8);
|
|
943
|
-
--vscode-editorInfo-border: rgba(117, 190, 255, 0.8);
|
|
944
|
-
--vscode-editorHint-border: rgba(238, 238, 238, 0.8);
|
|
945
|
-
--vscode-sash-hoverBorder: #f38518;
|
|
946
1394
|
--vscode-editor-background: #000000;
|
|
947
1395
|
--vscode-editor-foreground: #ffffff;
|
|
1396
|
+
--vscode-editorStickyScroll-background: #000000;
|
|
1397
|
+
--vscode-editorStickyScroll-border: #6fc3df;
|
|
948
1398
|
--vscode-editorWidget-background: #0c141f;
|
|
949
1399
|
--vscode-editorWidget-foreground: #ffffff;
|
|
950
1400
|
--vscode-editorWidget-border: #6fc3df;
|
|
951
|
-
--vscode-
|
|
952
|
-
--vscode-
|
|
953
|
-
--vscode-
|
|
954
|
-
--vscode-
|
|
955
|
-
--vscode-
|
|
1401
|
+
--vscode-editorError-foreground: #f48771;
|
|
1402
|
+
--vscode-editorError-border: rgba(228, 119, 119, 0.8);
|
|
1403
|
+
--vscode-editorWarning-foreground: #ffd370;
|
|
1404
|
+
--vscode-editorWarning-border: rgba(255, 204, 0, 0.8);
|
|
1405
|
+
--vscode-editorInfo-foreground: #3794ff;
|
|
1406
|
+
--vscode-editorInfo-border: rgba(55, 148, 255, 0.8);
|
|
1407
|
+
--vscode-editorHint-border: rgba(238, 238, 238, 0.8);
|
|
1408
|
+
--vscode-editorLink-activeForeground: #00ffff;
|
|
956
1409
|
--vscode-editor-selectionBackground: #ffffff;
|
|
957
1410
|
--vscode-editor-selectionForeground: #000000;
|
|
958
|
-
--vscode-editor-inactiveSelectionBackground: rgba(255, 255, 255, 0.
|
|
1411
|
+
--vscode-editor-inactiveSelectionBackground: rgba(255, 255, 255, 0.7);
|
|
959
1412
|
--vscode-editor-selectionHighlightBorder: #f38518;
|
|
960
1413
|
--vscode-editor-findMatchBorder: #f38518;
|
|
961
1414
|
--vscode-editor-findMatchHighlightBorder: #f38518;
|
|
962
1415
|
--vscode-editor-findRangeHighlightBorder: rgba(243, 133, 24, 0.4);
|
|
963
|
-
--vscode-searchEditor-findMatchBorder: #f38518;
|
|
964
1416
|
--vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
|
|
965
1417
|
--vscode-editorHoverWidget-background: #0c141f;
|
|
966
1418
|
--vscode-editorHoverWidget-foreground: #ffffff;
|
|
967
1419
|
--vscode-editorHoverWidget-border: #6fc3df;
|
|
968
1420
|
--vscode-editorHoverWidget-statusBarBackground: #0c141f;
|
|
969
|
-
--vscode-
|
|
970
|
-
--vscode-
|
|
971
|
-
--vscode-
|
|
1421
|
+
--vscode-editorInlayHint-foreground: #ffffff;
|
|
1422
|
+
--vscode-editorInlayHint-background: rgba(255, 255, 255, 0.1);
|
|
1423
|
+
--vscode-editorInlayHint-typeForeground: #ffffff;
|
|
1424
|
+
--vscode-editorInlayHint-typeBackground: rgba(255, 255, 255, 0.1);
|
|
1425
|
+
--vscode-editorInlayHint-parameterForeground: #ffffff;
|
|
1426
|
+
--vscode-editorInlayHint-parameterBackground: rgba(255, 255, 255, 0.1);
|
|
972
1427
|
--vscode-editorLightBulb-foreground: #ffcc00;
|
|
973
1428
|
--vscode-editorLightBulbAutoFix-foreground: #75beff;
|
|
1429
|
+
--vscode-editorLightBulbAi-foreground: #ffcc00;
|
|
1430
|
+
--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
|
|
1431
|
+
--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
|
|
974
1432
|
--vscode-diffEditor-insertedTextBorder: #33ff2e;
|
|
975
1433
|
--vscode-diffEditor-removedTextBorder: #ff008f;
|
|
976
1434
|
--vscode-diffEditor-border: #6fc3df;
|
|
1435
|
+
--vscode-diffEditor-unchangedRegionBackground: #000000;
|
|
1436
|
+
--vscode-diffEditor-unchangedRegionForeground: #ffffff;
|
|
1437
|
+
--vscode-widget-border: #6fc3df;
|
|
1438
|
+
--vscode-toolbar-hoverOutline: #f38518;
|
|
1439
|
+
--vscode-breadcrumb-foreground: rgba(255, 255, 255, 0.8);
|
|
1440
|
+
--vscode-breadcrumb-background: #000000;
|
|
1441
|
+
--vscode-breadcrumb-focusForeground: #ffffff;
|
|
1442
|
+
--vscode-breadcrumb-activeSelectionForeground: #ffffff;
|
|
1443
|
+
--vscode-breadcrumbPicker-background: #0c141f;
|
|
1444
|
+
--vscode-merge-border: #c3df6f;
|
|
1445
|
+
--vscode-editorOverviewRuler-currentContentForeground: #c3df6f;
|
|
1446
|
+
--vscode-editorOverviewRuler-incomingContentForeground: #c3df6f;
|
|
1447
|
+
--vscode-editorOverviewRuler-commonContentForeground: #c3df6f;
|
|
1448
|
+
--vscode-editorOverviewRuler-findMatchForeground: #ab5a00;
|
|
1449
|
+
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
1450
|
+
--vscode-problemsErrorIcon-foreground: #f48771;
|
|
1451
|
+
--vscode-problemsWarningIcon-foreground: #ffd370;
|
|
1452
|
+
--vscode-problemsInfoIcon-foreground: #3794ff;
|
|
1453
|
+
--vscode-input-background: #000000;
|
|
1454
|
+
--vscode-input-foreground: #ffffff;
|
|
1455
|
+
--vscode-input-border: #6fc3df;
|
|
1456
|
+
--vscode-inputOption-activeBorder: #6fc3df;
|
|
1457
|
+
--vscode-inputOption-activeBackground: rgba(0, 0, 0, 0);
|
|
1458
|
+
--vscode-inputOption-activeForeground: #ffffff;
|
|
1459
|
+
--vscode-input-placeholderForeground: rgba(255, 255, 255, 0.7);
|
|
1460
|
+
--vscode-inputValidation-infoBackground: #000000;
|
|
1461
|
+
--vscode-inputValidation-infoBorder: #6fc3df;
|
|
1462
|
+
--vscode-inputValidation-warningBackground: #000000;
|
|
1463
|
+
--vscode-inputValidation-warningBorder: #6fc3df;
|
|
1464
|
+
--vscode-inputValidation-errorBackground: #000000;
|
|
1465
|
+
--vscode-inputValidation-errorBorder: #6fc3df;
|
|
1466
|
+
--vscode-dropdown-background: #000000;
|
|
1467
|
+
--vscode-dropdown-listBackground: #000000;
|
|
1468
|
+
--vscode-dropdown-foreground: #ffffff;
|
|
1469
|
+
--vscode-dropdown-border: #6fc3df;
|
|
1470
|
+
--vscode-button-foreground: #ffffff;
|
|
1471
|
+
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
|
1472
|
+
--vscode-button-border: #6fc3df;
|
|
1473
|
+
--vscode-button-secondaryForeground: #ffffff;
|
|
1474
|
+
--vscode-checkbox-background: #000000;
|
|
1475
|
+
--vscode-checkbox-selectBackground: #0c141f;
|
|
1476
|
+
--vscode-checkbox-foreground: #ffffff;
|
|
1477
|
+
--vscode-checkbox-border: #6fc3df;
|
|
1478
|
+
--vscode-checkbox-selectBorder: #ffffff;
|
|
1479
|
+
--vscode-keybindingLabel-background: rgba(0, 0, 0, 0);
|
|
1480
|
+
--vscode-keybindingLabel-foreground: #ffffff;
|
|
1481
|
+
--vscode-keybindingLabel-border: #6fc3df;
|
|
1482
|
+
--vscode-keybindingLabel-bottomBorder: #6fc3df;
|
|
977
1483
|
--vscode-list-focusOutline: #f38518;
|
|
1484
|
+
--vscode-list-hoverBackground: rgba(255, 255, 255, 0.1);
|
|
978
1485
|
--vscode-list-highlightForeground: #f38518;
|
|
1486
|
+
--vscode-list-focusHighlightForeground: #f38518;
|
|
979
1487
|
--vscode-list-invalidItemForeground: #b89500;
|
|
980
|
-
--vscode-
|
|
981
|
-
--vscode-list-activeSelectionForeground: #0c141f;
|
|
982
|
-
--vscode-listFilterWidget-background: #000000;
|
|
1488
|
+
--vscode-listFilterWidget-background: #0c141f;
|
|
983
1489
|
--vscode-listFilterWidget-outline: #f38518;
|
|
984
1490
|
--vscode-listFilterWidget-noMatchesOutline: #6fc3df;
|
|
985
1491
|
--vscode-list-filterMatchBorder: #6fc3df;
|
|
986
|
-
--vscode-tree-indentGuidesStroke: #a9a9a9;
|
|
987
1492
|
--vscode-list-deemphasizedForeground: #a7a8a9;
|
|
1493
|
+
--vscode-tree-indentGuidesStroke: #a9a9a9;
|
|
1494
|
+
--vscode-tree-inactiveIndentGuidesStroke: rgba(169, 169, 169, 0.4);
|
|
988
1495
|
--vscode-menu-border: #6fc3df;
|
|
989
1496
|
--vscode-menu-foreground: #ffffff;
|
|
990
1497
|
--vscode-menu-background: #000000;
|
|
991
1498
|
--vscode-menu-selectionBorder: #f38518;
|
|
992
1499
|
--vscode-menu-separatorBackground: #6fc3df;
|
|
993
|
-
--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
|
|
994
|
-
--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
|
|
995
|
-
--vscode-breadcrumb-foreground: rgba(255, 255, 255, 0.8);
|
|
996
|
-
--vscode-breadcrumb-background: #000000;
|
|
997
|
-
--vscode-breadcrumb-focusForeground: #ffffff;
|
|
998
|
-
--vscode-breadcrumb-activeSelectionForeground: #ffffff;
|
|
999
|
-
--vscode-breadcrumbPicker-background: #0c141f;
|
|
1000
|
-
--vscode-merge-border: #c3df6f;
|
|
1001
|
-
--vscode-editorOverviewRuler-currentContentForeground: #c3df6f;
|
|
1002
|
-
--vscode-editorOverviewRuler-incomingContentForeground: #c3df6f;
|
|
1003
|
-
--vscode-editorOverviewRuler-commonContentForeground: #c3df6f;
|
|
1004
|
-
--vscode-editorOverviewRuler-findMatchForeground: #ab5a00;
|
|
1005
|
-
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
1006
1500
|
--vscode-minimap-findMatchHighlight: #ab5a00;
|
|
1501
|
+
--vscode-minimap-selectionOccurrenceHighlight: #ffffff;
|
|
1007
1502
|
--vscode-minimap-selectionHighlight: #ffffff;
|
|
1008
|
-
--vscode-minimap-
|
|
1503
|
+
--vscode-minimap-infoHighlight: rgba(55, 148, 255, 0.8);
|
|
1009
1504
|
--vscode-minimap-warningHighlight: rgba(255, 204, 0, 0.8);
|
|
1505
|
+
--vscode-minimap-errorHighlight: #ff3232;
|
|
1506
|
+
--vscode-minimap-foregroundOpacity: #000000;
|
|
1010
1507
|
--vscode-minimapSlider-background: rgba(111, 195, 223, 0.3);
|
|
1011
1508
|
--vscode-minimapSlider-hoverBackground: rgba(111, 195, 223, 0.4);
|
|
1012
1509
|
--vscode-minimapSlider-activeBackground: rgba(111, 195, 223, 0.5);
|
|
1013
1510
|
--vscode-charts-foreground: #ffffff;
|
|
1014
1511
|
--vscode-charts-lines: rgba(255, 255, 255, 0.5);
|
|
1512
|
+
--vscode-charts-red: #f48771;
|
|
1513
|
+
--vscode-charts-blue: #3794ff;
|
|
1514
|
+
--vscode-charts-yellow: #ffd370;
|
|
1015
1515
|
--vscode-charts-orange: #ab5a00;
|
|
1016
1516
|
--vscode-charts-green: #89d185;
|
|
1017
1517
|
--vscode-charts-purple: #b180d7;
|
|
1018
|
-
--vscode-
|
|
1019
|
-
--vscode-
|
|
1020
|
-
--vscode-
|
|
1021
|
-
--vscode-
|
|
1022
|
-
--vscode-
|
|
1023
|
-
--vscode-
|
|
1024
|
-
--vscode-
|
|
1025
|
-
--vscode-
|
|
1026
|
-
--vscode-editorActiveLineNumber-foreground: #f38518;
|
|
1027
|
-
--vscode-editorLineNumber-activeForeground: #f38518;
|
|
1028
|
-
--vscode-editorRuler-foreground: #ffffff;
|
|
1029
|
-
--vscode-editorCodeLens-foreground: #999999;
|
|
1030
|
-
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
1031
|
-
--vscode-editorBracketMatch-border: #6fc3df;
|
|
1032
|
-
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
|
1033
|
-
--vscode-editorGutter-background: #000000;
|
|
1034
|
-
--vscode-editorUnnecessaryCode-border: rgba(255, 255, 255, 0.8);
|
|
1035
|
-
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
1036
|
-
--vscode-editorOverviewRuler-errorForeground: #ff3232;
|
|
1037
|
-
--vscode-editorOverviewRuler-warningForeground: rgba(255, 204, 0, 0.8);
|
|
1038
|
-
--vscode-editorOverviewRuler-infoForeground: rgba(117, 190, 255, 0.8);
|
|
1518
|
+
--vscode-quickInput-background: #0c141f;
|
|
1519
|
+
--vscode-quickInput-foreground: #ffffff;
|
|
1520
|
+
--vscode-quickInputTitle-background: #000000;
|
|
1521
|
+
--vscode-pickerGroup-foreground: #ffffff;
|
|
1522
|
+
--vscode-pickerGroup-border: #ffffff;
|
|
1523
|
+
--vscode-search-resultsInfoForeground: #ffffff;
|
|
1524
|
+
--vscode-searchEditor-findMatchBorder: #f38518;
|
|
1525
|
+
--vscode-multiDiffEditor-border: #6fc3df;
|
|
1039
1526
|
--vscode-symbolIcon-arrayForeground: #ffffff;
|
|
1040
1527
|
--vscode-symbolIcon-booleanForeground: #ffffff;
|
|
1041
1528
|
--vscode-symbolIcon-classForeground: #ee9d28;
|
|
@@ -1069,14 +1556,77 @@ html[data-theme='high contrast'] {
|
|
|
1069
1556
|
--vscode-symbolIcon-typeParameterForeground: #ffffff;
|
|
1070
1557
|
--vscode-symbolIcon-unitForeground: #ffffff;
|
|
1071
1558
|
--vscode-symbolIcon-variableForeground: #75beff;
|
|
1559
|
+
--vscode-actionBar-toggledBackground: #383a49;
|
|
1560
|
+
--vscode-editorHoverWidget-highlightForeground: #f38518;
|
|
1561
|
+
--vscode-editor-lineHighlightBorder: #f38518;
|
|
1562
|
+
--vscode-editor-rangeHighlightBorder: #f38518;
|
|
1563
|
+
--vscode-editor-symbolHighlightBorder: #f38518;
|
|
1564
|
+
--vscode-editorCursor-foreground: #ffffff;
|
|
1565
|
+
--vscode-editorMultiCursor-primary\.foreground: #ffffff;
|
|
1566
|
+
--vscode-editorMultiCursor-secondary\.foreground: #ffffff;
|
|
1567
|
+
--vscode-editorWhitespace-foreground: #7c7c7c;
|
|
1568
|
+
--vscode-editorLineNumber-foreground: #ffffff;
|
|
1569
|
+
--vscode-editorIndentGuide-background: #7c7c7c;
|
|
1570
|
+
--vscode-editorIndentGuide-activeBackground: #7c7c7c;
|
|
1571
|
+
--vscode-editorIndentGuide-background1: #ffffff;
|
|
1572
|
+
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
|
1573
|
+
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
|
1574
|
+
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
|
1575
|
+
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
|
1576
|
+
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
|
1577
|
+
--vscode-editorIndentGuide-activeBackground1: #ffffff;
|
|
1578
|
+
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
1579
|
+
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
1580
|
+
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
1581
|
+
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
1582
|
+
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
1583
|
+
--vscode-editorActiveLineNumber-foreground: #f38518;
|
|
1584
|
+
--vscode-editorLineNumber-activeForeground: #f38518;
|
|
1585
|
+
--vscode-editorRuler-foreground: #ffffff;
|
|
1586
|
+
--vscode-editorCodeLens-foreground: #999999;
|
|
1587
|
+
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
1588
|
+
--vscode-editorBracketMatch-border: #6fc3df;
|
|
1589
|
+
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
|
1590
|
+
--vscode-editorGutter-background: #000000;
|
|
1591
|
+
--vscode-editorUnnecessaryCode-border: rgba(255, 255, 255, 0.8);
|
|
1592
|
+
--vscode-editorGhostText-border: rgba(255, 255, 255, 0.8);
|
|
1593
|
+
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
1594
|
+
--vscode-editorOverviewRuler-errorForeground: #ff3232;
|
|
1595
|
+
--vscode-editorOverviewRuler-warningForeground: rgba(255, 204, 0, 0.8);
|
|
1596
|
+
--vscode-editorOverviewRuler-infoForeground: rgba(55, 148, 255, 0.8);
|
|
1597
|
+
--vscode-editorBracketHighlight-foreground1: #ffd700;
|
|
1598
|
+
--vscode-editorBracketHighlight-foreground2: #da70d6;
|
|
1599
|
+
--vscode-editorBracketHighlight-foreground3: #87cefa;
|
|
1600
|
+
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
|
1601
|
+
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
|
1602
|
+
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
|
1603
|
+
--vscode-editorBracketHighlight-unexpectedBracket\.foreground: #ff3232;
|
|
1604
|
+
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
|
1605
|
+
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
|
1606
|
+
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
|
1607
|
+
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
|
1608
|
+
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
|
1609
|
+
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
|
1610
|
+
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
|
1611
|
+
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
1612
|
+
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
1613
|
+
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
1614
|
+
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
1615
|
+
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
1616
|
+
--vscode-editorUnicodeHighlight-border: #ffd370;
|
|
1617
|
+
--vscode-diffEditor-move\.border: rgba(139, 139, 139, 0.61);
|
|
1618
|
+
--vscode-diffEditor-moveActive\.border: #ffa500;
|
|
1619
|
+
--vscode-diffEditor-unchangedRegionShadow: #000000;
|
|
1072
1620
|
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
|
1621
|
+
--vscode-editorGutter-foldingControlForeground: #ffffff;
|
|
1073
1622
|
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
|
1074
1623
|
--vscode-editor-wordHighlightBorder: #f38518;
|
|
1075
1624
|
--vscode-editor-wordHighlightStrongBorder: #f38518;
|
|
1625
|
+
--vscode-editor-wordHighlightTextBorder: #f38518;
|
|
1076
1626
|
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
1077
1627
|
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
|
1078
|
-
--vscode-
|
|
1079
|
-
--vscode-peekViewTitle-background: #
|
|
1628
|
+
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
|
1629
|
+
--vscode-peekViewTitle-background: #000000;
|
|
1080
1630
|
--vscode-peekViewTitleLabel-foreground: #ffffff;
|
|
1081
1631
|
--vscode-peekViewTitleDescription-foreground: rgba(255, 255, 255, 0.6);
|
|
1082
1632
|
--vscode-peekView-border: #6fc3df;
|
|
@@ -1086,15 +1636,20 @@ html[data-theme='high contrast'] {
|
|
|
1086
1636
|
--vscode-peekViewResult-selectionForeground: #ffffff;
|
|
1087
1637
|
--vscode-peekViewEditor-background: #000000;
|
|
1088
1638
|
--vscode-peekViewEditorGutter-background: #000000;
|
|
1639
|
+
--vscode-peekViewEditorStickyScroll-background: #000000;
|
|
1089
1640
|
--vscode-peekViewEditor-matchHighlightBorder: #f38518;
|
|
1090
|
-
--vscode-editorMarkerNavigationError-background:
|
|
1091
|
-
--vscode-editorMarkerNavigationWarning-background:
|
|
1092
|
-
--vscode-
|
|
1093
|
-
--vscode-
|
|
1641
|
+
--vscode-editorMarkerNavigationError-background: #6fc3df;
|
|
1642
|
+
--vscode-editorMarkerNavigationWarning-background: #6fc3df;
|
|
1643
|
+
--vscode-editorMarkerNavigationWarning-headerBackground: #0c141f;
|
|
1644
|
+
--vscode-editorMarkerNavigationInfo-background: #6fc3df;
|
|
1645
|
+
--vscode-editorMarkerNavigation-background: #000000;
|
|
1094
1646
|
--vscode-editorSuggestWidget-background: #0c141f;
|
|
1095
1647
|
--vscode-editorSuggestWidget-border: #6fc3df;
|
|
1096
1648
|
--vscode-editorSuggestWidget-foreground: #ffffff;
|
|
1097
1649
|
--vscode-editorSuggestWidget-highlightForeground: #f38518;
|
|
1650
|
+
--vscode-editorSuggestWidget-focusHighlightForeground: #f38518;
|
|
1651
|
+
--vscode-editorSuggestWidgetStatus-foreground: rgba(255, 255, 255, 0.5);
|
|
1652
|
+
--vscode-editorWatermark-foreground: #ffffff;
|
|
1098
1653
|
--vscode-tab-activeBackground: #000000;
|
|
1099
1654
|
--vscode-tab-unfocusedActiveBackground: #000000;
|
|
1100
1655
|
--vscode-tab-activeForeground: #ffffff;
|
|
@@ -1103,6 +1658,7 @@ html[data-theme='high contrast'] {
|
|
|
1103
1658
|
--vscode-tab-unfocusedInactiveForeground: #ffffff;
|
|
1104
1659
|
--vscode-tab-border: #6fc3df;
|
|
1105
1660
|
--vscode-tab-lastPinnedBorder: #6fc3df;
|
|
1661
|
+
--vscode-tab-dragAndDropBorder: #f38518;
|
|
1106
1662
|
--vscode-tab-inactiveModifiedBorder: #ffffff;
|
|
1107
1663
|
--vscode-tab-unfocusedActiveModifiedBorder: #ffffff;
|
|
1108
1664
|
--vscode-tab-unfocusedInactiveModifiedBorder: #ffffff;
|
|
@@ -1111,59 +1667,129 @@ html[data-theme='high contrast'] {
|
|
|
1111
1667
|
--vscode-editorGroupHeader-noTabsBackground: #000000;
|
|
1112
1668
|
--vscode-editorGroupHeader-border: #6fc3df;
|
|
1113
1669
|
--vscode-editorGroup-border: #6fc3df;
|
|
1114
|
-
--vscode-
|
|
1670
|
+
--vscode-editorGroup-dropIntoPromptForeground: #ffffff;
|
|
1671
|
+
--vscode-editorGroup-dropIntoPromptBackground: #0c141f;
|
|
1672
|
+
--vscode-editorGroup-dropIntoPromptBorder: #6fc3df;
|
|
1673
|
+
--vscode-sideBySideEditor-horizontalBorder: #6fc3df;
|
|
1674
|
+
--vscode-sideBySideEditor-verticalBorder: #6fc3df;
|
|
1115
1675
|
--vscode-panel-background: #000000;
|
|
1116
1676
|
--vscode-panel-border: #6fc3df;
|
|
1117
1677
|
--vscode-panelTitle-activeForeground: #ffffff;
|
|
1118
1678
|
--vscode-panelTitle-inactiveForeground: #ffffff;
|
|
1119
1679
|
--vscode-panelTitle-activeBorder: #6fc3df;
|
|
1680
|
+
--vscode-panelInput-border: #6fc3df;
|
|
1120
1681
|
--vscode-panel-dropBorder: #ffffff;
|
|
1121
1682
|
--vscode-panelSectionHeader-border: #6fc3df;
|
|
1122
1683
|
--vscode-panelSection-border: #6fc3df;
|
|
1684
|
+
--vscode-panelStickyScroll-background: #000000;
|
|
1685
|
+
--vscode-banner-iconForeground: #3794ff;
|
|
1123
1686
|
--vscode-statusBar-foreground: #ffffff;
|
|
1124
1687
|
--vscode-statusBar-noFolderForeground: #ffffff;
|
|
1125
1688
|
--vscode-statusBar-border: #6fc3df;
|
|
1126
1689
|
--vscode-statusBar-noFolderBorder: #6fc3df;
|
|
1127
1690
|
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
|
1128
1691
|
--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
|
|
1692
|
+
--vscode-statusBarItem-hoverForeground: #ffffff;
|
|
1693
|
+
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
|
1129
1694
|
--vscode-statusBarItem-prominentForeground: #ffffff;
|
|
1130
1695
|
--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
|
|
1696
|
+
--vscode-statusBarItem-prominentHoverForeground: #ffffff;
|
|
1131
1697
|
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
|
1132
1698
|
--vscode-statusBarItem-errorForeground: #ffffff;
|
|
1699
|
+
--vscode-statusBarItem-errorHoverForeground: #ffffff;
|
|
1700
|
+
--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1701
|
+
--vscode-statusBarItem-warningForeground: #ffffff;
|
|
1702
|
+
--vscode-statusBarItem-warningHoverForeground: #ffffff;
|
|
1703
|
+
--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1133
1704
|
--vscode-activityBar-background: #000000;
|
|
1134
1705
|
--vscode-activityBar-foreground: #ffffff;
|
|
1135
1706
|
--vscode-activityBar-inactiveForeground: #ffffff;
|
|
1136
1707
|
--vscode-activityBar-border: #6fc3df;
|
|
1137
|
-
--vscode-activityBar-dropBorder: #ffffff;
|
|
1138
1708
|
--vscode-activityBarBadge-background: #000000;
|
|
1139
1709
|
--vscode-activityBarBadge-foreground: #ffffff;
|
|
1710
|
+
--vscode-activityBarTop-foreground: #ffffff;
|
|
1711
|
+
--vscode-activityBarTop-activeBorder: #6fc3df;
|
|
1712
|
+
--vscode-activityBarTop-inactiveForeground: #ffffff;
|
|
1713
|
+
--vscode-activityBarTop-dropBorder: #ffffff;
|
|
1714
|
+
--vscode-profileBadge-background: #ffffff;
|
|
1715
|
+
--vscode-profileBadge-foreground: #000000;
|
|
1140
1716
|
--vscode-statusBarItem-remoteBackground: rgba(0, 0, 0, 0);
|
|
1141
1717
|
--vscode-statusBarItem-remoteForeground: #ffffff;
|
|
1718
|
+
--vscode-statusBarItem-remoteHoverForeground: #ffffff;
|
|
1719
|
+
--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1720
|
+
--vscode-statusBarItem-offlineBackground: #6c1717;
|
|
1721
|
+
--vscode-statusBarItem-offlineForeground: #ffffff;
|
|
1722
|
+
--vscode-statusBarItem-offlineHoverForeground: #ffffff;
|
|
1723
|
+
--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1142
1724
|
--vscode-extensionBadge-remoteBackground: #000000;
|
|
1143
1725
|
--vscode-extensionBadge-remoteForeground: #ffffff;
|
|
1144
1726
|
--vscode-sideBar-background: #000000;
|
|
1145
1727
|
--vscode-sideBar-border: #6fc3df;
|
|
1728
|
+
--vscode-sideBarTitle-background: #000000;
|
|
1146
1729
|
--vscode-sideBarTitle-foreground: #ffffff;
|
|
1147
1730
|
--vscode-sideBarSectionHeader-border: #6fc3df;
|
|
1731
|
+
--vscode-sideBarActivityBarTop-border: #6fc3df;
|
|
1732
|
+
--vscode-sideBarStickyScroll-background: #000000;
|
|
1148
1733
|
--vscode-titleBar-activeForeground: #ffffff;
|
|
1149
1734
|
--vscode-titleBar-activeBackground: #000000;
|
|
1150
1735
|
--vscode-titleBar-border: #6fc3df;
|
|
1151
1736
|
--vscode-menubar-selectionForeground: #ffffff;
|
|
1152
1737
|
--vscode-menubar-selectionBorder: #f38518;
|
|
1738
|
+
--vscode-commandCenter-foreground: #ffffff;
|
|
1739
|
+
--vscode-commandCenter-activeForeground: #ffffff;
|
|
1740
|
+
--vscode-commandCenter-border: #6fc3df;
|
|
1741
|
+
--vscode-commandCenter-activeBorder: #ffffff;
|
|
1153
1742
|
--vscode-notificationCenter-border: #6fc3df;
|
|
1154
1743
|
--vscode-notificationToast-border: #6fc3df;
|
|
1155
1744
|
--vscode-notifications-foreground: #ffffff;
|
|
1156
1745
|
--vscode-notifications-background: #0c141f;
|
|
1157
|
-
--vscode-notificationLink-foreground: #
|
|
1746
|
+
--vscode-notificationLink-foreground: #21a6ff;
|
|
1158
1747
|
--vscode-notificationCenterHeader-background: #0c141f;
|
|
1159
1748
|
--vscode-notifications-border: #0c141f;
|
|
1749
|
+
--vscode-notificationsErrorIcon-foreground: #f48771;
|
|
1750
|
+
--vscode-notificationsWarningIcon-foreground: #ffd370;
|
|
1751
|
+
--vscode-notificationsInfoIcon-foreground: #3794ff;
|
|
1160
1752
|
--vscode-window-activeBorder: #6fc3df;
|
|
1161
1753
|
--vscode-window-inactiveBorder: #6fc3df;
|
|
1162
|
-
--vscode-
|
|
1754
|
+
--vscode-chat-requestBorder: #6fc3df;
|
|
1755
|
+
--vscode-chat-requestBackground: #0c141f;
|
|
1756
|
+
--vscode-chat-slashCommandBackground: #ffffff;
|
|
1757
|
+
--vscode-chat-slashCommandForeground: #000000;
|
|
1758
|
+
--vscode-chat-avatarBackground: #000000;
|
|
1759
|
+
--vscode-chat-avatarForeground: #ffffff;
|
|
1760
|
+
--vscode-simpleFindWidget-sashBorder: #6fc3df;
|
|
1761
|
+
--vscode-commentsView-resolvedIcon: #6fc3df;
|
|
1762
|
+
--vscode-commentsView-unresolvedIcon: #6fc3df;
|
|
1763
|
+
--vscode-editorCommentsWidget-replyInputBackground: #000000;
|
|
1764
|
+
--vscode-editorCommentsWidget-resolvedBorder: #6fc3df;
|
|
1765
|
+
--vscode-editorCommentsWidget-unresolvedBorder: #6fc3df;
|
|
1766
|
+
--vscode-editorCommentsWidget-rangeBackground: rgba(111, 195, 223, 0.1);
|
|
1767
|
+
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(111, 195, 223, 0.1);
|
|
1768
|
+
--vscode-editorGutter-commentRangeForeground: #ffffff;
|
|
1769
|
+
--vscode-editorOverviewRuler-commentForeground: #ffffff;
|
|
1770
|
+
--vscode-editorOverviewRuler-commentUnresolvedForeground: #ffffff;
|
|
1771
|
+
--vscode-editorGutter-commentGlyphForeground: #000000;
|
|
1772
|
+
--vscode-editorGutter-commentUnresolvedGlyphForeground: #000000;
|
|
1163
1773
|
--vscode-debugToolBar-background: #000000;
|
|
1164
1774
|
--vscode-debugIcon-startForeground: #89d185;
|
|
1775
|
+
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
|
1776
|
+
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
|
1777
|
+
--vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
|
|
1778
|
+
--vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.2);
|
|
1779
|
+
--vscode-mergeEditor-changeBase\.background: #4b1818;
|
|
1780
|
+
--vscode-mergeEditor-changeBase\.word\.background: #6f1313;
|
|
1781
|
+
--vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
|
|
1782
|
+
--vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
|
|
1783
|
+
--vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
|
|
1784
|
+
--vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
|
|
1785
|
+
--vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
|
1786
|
+
--vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
|
|
1787
|
+
--vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
|
|
1165
1788
|
--vscode-settings-headerForeground: #ffffff;
|
|
1789
|
+
--vscode-settings-settingsHeaderHoverForeground: rgba(255, 255, 255, 0.7);
|
|
1166
1790
|
--vscode-settings-modifiedItemIndicator: #00497a;
|
|
1791
|
+
--vscode-settings-headerBorder: #6fc3df;
|
|
1792
|
+
--vscode-settings-sashBorder: #6fc3df;
|
|
1167
1793
|
--vscode-settings-dropdownBackground: #000000;
|
|
1168
1794
|
--vscode-settings-dropdownForeground: #ffffff;
|
|
1169
1795
|
--vscode-settings-dropdownBorder: #6fc3df;
|
|
@@ -1177,54 +1803,118 @@ html[data-theme='high contrast'] {
|
|
|
1177
1803
|
--vscode-settings-numberInputBackground: #000000;
|
|
1178
1804
|
--vscode-settings-numberInputForeground: #ffffff;
|
|
1179
1805
|
--vscode-settings-numberInputBorder: #6fc3df;
|
|
1180
|
-
--vscode-
|
|
1806
|
+
--vscode-settings-focusedRowBorder: #f38518;
|
|
1181
1807
|
--vscode-terminal-foreground: #ffffff;
|
|
1182
|
-
--vscode-terminal-selectionBackground:
|
|
1808
|
+
--vscode-terminal-selectionBackground: #ffffff;
|
|
1809
|
+
--vscode-terminal-inactiveSelectionBackground: rgba(255, 255, 255, 0.7);
|
|
1810
|
+
--vscode-terminal-selectionForeground: #000000;
|
|
1811
|
+
--vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.5);
|
|
1812
|
+
--vscode-terminalCommandDecoration-successBackground: #1b81a8;
|
|
1813
|
+
--vscode-terminalCommandDecoration-errorBackground: #f14c4c;
|
|
1814
|
+
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
|
1183
1815
|
--vscode-terminal-border: #6fc3df;
|
|
1184
|
-
--vscode-
|
|
1185
|
-
--vscode-
|
|
1186
|
-
--vscode-
|
|
1187
|
-
--vscode-
|
|
1188
|
-
--vscode-testing-
|
|
1816
|
+
--vscode-terminal-hoverHighlightBackground: rgba(173, 214, 255, 0.07);
|
|
1817
|
+
--vscode-terminal-findMatchBorder: #f38518;
|
|
1818
|
+
--vscode-terminal-findMatchHighlightBorder: #f38518;
|
|
1819
|
+
--vscode-terminalOverviewRuler-findMatchForeground: #f38518;
|
|
1820
|
+
--vscode-testing-iconFailed: #f14c4c;
|
|
1821
|
+
--vscode-testing-iconErrored: #f14c4c;
|
|
1822
|
+
--vscode-testing-iconPassed: #73c991;
|
|
1823
|
+
--vscode-testing-runAction: #73c991;
|
|
1824
|
+
--vscode-testing-iconQueued: #cca700;
|
|
1189
1825
|
--vscode-testing-iconUnset: #848484;
|
|
1190
1826
|
--vscode-testing-iconSkipped: #848484;
|
|
1827
|
+
--vscode-testing-peekBorder: #6fc3df;
|
|
1828
|
+
--vscode-testing-messagePeekBorder: #6fc3df;
|
|
1829
|
+
--vscode-testing-coveredBorder: #6fc3df;
|
|
1830
|
+
--vscode-testing-coveredGutterBackground: #89d185;
|
|
1831
|
+
--vscode-testing-uncoveredBorder: #6fc3df;
|
|
1832
|
+
--vscode-testing-uncoveredGutterBackground: #f48771;
|
|
1833
|
+
--vscode-testing-coverCountBadgeBackground: #000000;
|
|
1834
|
+
--vscode-testing-coverCountBadgeForeground: #ffffff;
|
|
1191
1835
|
--vscode-testing-message\.error\.decorationForeground: #ffffff;
|
|
1192
|
-
--vscode-testing-message\.
|
|
1193
|
-
--vscode-testing-
|
|
1194
|
-
--vscode-testing-
|
|
1195
|
-
--vscode-testing-
|
|
1836
|
+
--vscode-testing-message\.info\.decorationForeground: rgba(255, 255, 255, 0.5);
|
|
1837
|
+
--vscode-testing-iconErrored\.retired: rgba(241, 76, 76, 0.7);
|
|
1838
|
+
--vscode-testing-iconFailed\.retired: rgba(241, 76, 76, 0.7);
|
|
1839
|
+
--vscode-testing-iconPassed\.retired: rgba(115, 201, 145, 0.7);
|
|
1840
|
+
--vscode-testing-iconQueued\.retired: rgba(204, 167, 0, 0.7);
|
|
1841
|
+
--vscode-testing-iconUnset\.retired: rgba(132, 132, 132, 0.7);
|
|
1842
|
+
--vscode-testing-iconSkipped\.retired: rgba(132, 132, 132, 0.7);
|
|
1196
1843
|
--vscode-welcomePage-tileBackground: #000000;
|
|
1844
|
+
--vscode-welcomePage-tileBorder: #6fc3df;
|
|
1197
1845
|
--vscode-welcomePage-progress\.background: #000000;
|
|
1198
|
-
--vscode-welcomePage-progress\.foreground: #
|
|
1199
|
-
--vscode-
|
|
1200
|
-
--vscode-
|
|
1201
|
-
--vscode-
|
|
1846
|
+
--vscode-welcomePage-progress\.foreground: #21a6ff;
|
|
1847
|
+
--vscode-inlineChat-background: #0c141f;
|
|
1848
|
+
--vscode-inlineChat-border: #6fc3df;
|
|
1849
|
+
--vscode-inlineChat-regionHighlight: rgba(173, 214, 255, 0.15);
|
|
1850
|
+
--vscode-inlineChatInput-border: #6fc3df;
|
|
1851
|
+
--vscode-inlineChatInput-focusBorder: #f38518;
|
|
1852
|
+
--vscode-inlineChatInput-placeholderForeground: rgba(255, 255, 255, 0.7);
|
|
1853
|
+
--vscode-inlineChatInput-background: #000000;
|
|
1202
1854
|
--vscode-debugExceptionWidget-border: #a31515;
|
|
1203
1855
|
--vscode-debugExceptionWidget-background: #420b0d;
|
|
1204
|
-
--vscode-
|
|
1205
|
-
--vscode-
|
|
1206
|
-
--vscode-
|
|
1207
|
-
--vscode-
|
|
1208
|
-
--vscode-minimapGutter-addedBackground: #33ab4e;
|
|
1209
|
-
--vscode-minimapGutter-deletedBackground: #fc5d6d;
|
|
1210
|
-
--vscode-editorOverviewRuler-modifiedForeground: rgba(0, 155, 249, 0.6);
|
|
1211
|
-
--vscode-editorOverviewRuler-addedForeground: rgba(51, 171, 78, 0.6);
|
|
1212
|
-
--vscode-editorOverviewRuler-deletedForeground: rgba(252, 93, 109, 0.6);
|
|
1213
|
-
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
|
1214
|
-
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
|
1856
|
+
--vscode-statusBar-debuggingBackground: #ba592c;
|
|
1857
|
+
--vscode-statusBar-debuggingForeground: #ffffff;
|
|
1858
|
+
--vscode-statusBar-debuggingBorder: #6fc3df;
|
|
1859
|
+
--vscode-commandCenter-debuggingBackground: rgba(186, 89, 44, 0.26);
|
|
1215
1860
|
--vscode-debugIcon-breakpointForeground: #e51400;
|
|
1216
1861
|
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
|
1217
1862
|
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
|
1218
1863
|
--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
|
|
1219
1864
|
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
|
1220
|
-
--vscode-
|
|
1865
|
+
--vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
|
|
1866
|
+
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
|
1867
|
+
--vscode-ports-iconRunningProcessForeground: #ffffff;
|
|
1868
|
+
--vscode-editorGutter-modifiedBackground: #1b81a8;
|
|
1869
|
+
--vscode-editorGutter-addedBackground: #487e02;
|
|
1870
|
+
--vscode-editorGutter-deletedBackground: #f48771;
|
|
1871
|
+
--vscode-minimapGutter-modifiedBackground: #1b81a8;
|
|
1872
|
+
--vscode-minimapGutter-addedBackground: #487e02;
|
|
1873
|
+
--vscode-minimapGutter-deletedBackground: #f48771;
|
|
1874
|
+
--vscode-editorOverviewRuler-modifiedForeground: rgba(27, 129, 168, 0.6);
|
|
1875
|
+
--vscode-editorOverviewRuler-addedForeground: rgba(72, 126, 2, 0.6);
|
|
1876
|
+
--vscode-editorOverviewRuler-deletedForeground: rgba(244, 135, 113, 0.6);
|
|
1877
|
+
--vscode-debugTokenExpression-name: #ffffff;
|
|
1878
|
+
--vscode-debugTokenExpression-value: #ffffff;
|
|
1879
|
+
--vscode-debugTokenExpression-string: #f48771;
|
|
1880
|
+
--vscode-debugTokenExpression-boolean: #75bdfe;
|
|
1881
|
+
--vscode-debugTokenExpression-number: #89d185;
|
|
1882
|
+
--vscode-debugTokenExpression-error: #f48771;
|
|
1883
|
+
--vscode-debugView-exceptionLabelForeground: #ffffff;
|
|
1884
|
+
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
|
1885
|
+
--vscode-debugView-stateLabelForeground: #ffffff;
|
|
1886
|
+
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
1887
|
+
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
1888
|
+
--vscode-debugConsole-infoForeground: #ffffff;
|
|
1889
|
+
--vscode-debugConsole-warningForeground: #008000;
|
|
1890
|
+
--vscode-debugConsole-errorForeground: #f48771;
|
|
1891
|
+
--vscode-debugConsole-sourceForeground: #ffffff;
|
|
1892
|
+
--vscode-debugConsoleInputIcon-foreground: #ffffff;
|
|
1893
|
+
--vscode-debugIcon-pauseForeground: #75beff;
|
|
1894
|
+
--vscode-debugIcon-stopForeground: #f48771;
|
|
1895
|
+
--vscode-debugIcon-disconnectForeground: #f48771;
|
|
1896
|
+
--vscode-debugIcon-restartForeground: #89d185;
|
|
1897
|
+
--vscode-debugIcon-stepOverForeground: #75beff;
|
|
1898
|
+
--vscode-debugIcon-stepIntoForeground: #75beff;
|
|
1899
|
+
--vscode-debugIcon-stepOutForeground: #75beff;
|
|
1900
|
+
--vscode-debugIcon-continueForeground: #75beff;
|
|
1901
|
+
--vscode-debugIcon-stepBackForeground: #75beff;
|
|
1902
|
+
--vscode-scm-historyItemAdditionsForeground: #a1e3ad;
|
|
1903
|
+
--vscode-scm-historyItemDeletionsForeground: #c74e39;
|
|
1904
|
+
--vscode-scm-historyItemStatisticsBorder: rgba(255, 255, 255, 0.2);
|
|
1905
|
+
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
|
1906
|
+
--vscode-extensionIcon-starForeground: #ff8e00;
|
|
1907
|
+
--vscode-extensionIcon-verifiedForeground: #21a6ff;
|
|
1908
|
+
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
|
1221
1909
|
--vscode-notebook-cellBorderColor: #6fc3df;
|
|
1222
1910
|
--vscode-notebook-focusedEditorBorder: #f38518;
|
|
1223
1911
|
--vscode-notebookStatusSuccessIcon-foreground: #89d185;
|
|
1912
|
+
--vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185;
|
|
1224
1913
|
--vscode-notebookStatusErrorIcon-foreground: #f48771;
|
|
1225
1914
|
--vscode-notebookStatusRunningIcon-foreground: #ffffff;
|
|
1226
1915
|
--vscode-notebook-cellToolbarSeparator: #6fc3df;
|
|
1227
1916
|
--vscode-notebook-selectedCellBorder: #6fc3df;
|
|
1917
|
+
--vscode-notebook-inactiveSelectedCellBorder: #f38518;
|
|
1228
1918
|
--vscode-notebook-focusedCellBorder: #f38518;
|
|
1229
1919
|
--vscode-notebook-inactiveFocusedCellBorder: #6fc3df;
|
|
1230
1920
|
--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
|
|
@@ -1232,8 +1922,9 @@ html[data-theme='high contrast'] {
|
|
|
1232
1922
|
--vscode-notebookScrollbarSlider-background: rgba(111, 195, 223, 0.6);
|
|
1233
1923
|
--vscode-notebookScrollbarSlider-hoverBackground: rgba(111, 195, 223, 0.8);
|
|
1234
1924
|
--vscode-notebookScrollbarSlider-activeBackground: #6fc3df;
|
|
1925
|
+
--vscode-interactive-activeCodeBorder: #6fc3df;
|
|
1926
|
+
--vscode-interactive-inactiveCodeBorder: #6fc3df;
|
|
1235
1927
|
--vscode-searchEditor-textInputBorder: #6fc3df;
|
|
1236
|
-
--vscode-extensionIcon-starForeground: #ff8e00;
|
|
1237
1928
|
--vscode-terminal-ansiBlack: #000000;
|
|
1238
1929
|
--vscode-terminal-ansiRed: #cd0000;
|
|
1239
1930
|
--vscode-terminal-ansiGreen: #00cd00;
|
|
@@ -1250,32 +1941,7 @@ html[data-theme='high contrast'] {
|
|
|
1250
1941
|
--vscode-terminal-ansiBrightMagenta: #ff00ff;
|
|
1251
1942
|
--vscode-terminal-ansiBrightCyan: #00ffff;
|
|
1252
1943
|
--vscode-terminal-ansiBrightWhite: #ffffff;
|
|
1253
|
-
--vscode-
|
|
1254
|
-
--vscode-debugTokenExpression-value: #ffffff;
|
|
1255
|
-
--vscode-debugTokenExpression-string: #f48771;
|
|
1256
|
-
--vscode-debugTokenExpression-boolean: #75bdfe;
|
|
1257
|
-
--vscode-debugTokenExpression-number: #89d185;
|
|
1258
|
-
--vscode-debugTokenExpression-error: #f48771;
|
|
1259
|
-
--vscode-debugView-exceptionLabelForeground: #ffffff;
|
|
1260
|
-
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
|
1261
|
-
--vscode-debugView-stateLabelForeground: #ffffff;
|
|
1262
|
-
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
1263
|
-
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
1264
|
-
--vscode-debugConsole-infoForeground: #ffffff;
|
|
1265
|
-
--vscode-debugConsole-warningForeground: #008000;
|
|
1266
|
-
--vscode-debugConsole-errorForeground: #f48771;
|
|
1267
|
-
--vscode-debugConsole-sourceForeground: #ffffff;
|
|
1268
|
-
--vscode-debugConsoleInputIcon-foreground: #ffffff;
|
|
1269
|
-
--vscode-debugIcon-pauseForeground: #75beff;
|
|
1270
|
-
--vscode-debugIcon-stopForeground: #f48771;
|
|
1271
|
-
--vscode-debugIcon-disconnectForeground: #f48771;
|
|
1272
|
-
--vscode-debugIcon-restartForeground: #89d185;
|
|
1273
|
-
--vscode-debugIcon-stepOverForeground: #75beff;
|
|
1274
|
-
--vscode-debugIcon-stepIntoForeground: #75beff;
|
|
1275
|
-
--vscode-debugIcon-stepOutForeground: #75beff;
|
|
1276
|
-
--vscode-debugIcon-continueForeground: #75beff;
|
|
1277
|
-
--vscode-debugIcon-stepBackForeground: #75beff;
|
|
1278
|
-
--vscode-gitDecoration-addedResourceForeground: #1b5225;
|
|
1944
|
+
--vscode-gitDecoration-addedResourceForeground: #a1e3ad;
|
|
1279
1945
|
--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
|
|
1280
1946
|
--vscode-gitDecoration-deletedResourceForeground: #c74e39;
|
|
1281
1947
|
--vscode-gitDecoration-renamedResourceForeground: #73c991;
|