@opensumi/ide-design 2.27.3-rc-1711024024.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/lib/browser/design.contribution.d.ts +9 -0
- package/lib/browser/design.contribution.d.ts.map +1 -0
- package/lib/browser/design.contribution.js +35 -0
- package/lib/browser/design.contribution.js.map +1 -0
- package/lib/browser/index.d.ts +7 -0
- package/lib/browser/index.d.ts.map +1 -0
- package/lib/browser/index.js +83 -0
- package/lib/browser/index.js.map +1 -0
- package/lib/browser/layout/tabbar.view.d.ts +18 -0
- package/lib/browser/layout/tabbar.view.d.ts.map +1 -0
- package/lib/browser/layout/tabbar.view.js +14 -0
- package/lib/browser/layout/tabbar.view.js.map +1 -0
- package/lib/browser/override/editor-tab.service.d.ts +7 -0
- package/lib/browser/override/editor-tab.service.d.ts.map +1 -0
- package/lib/browser/override/editor-tab.service.js +36 -0
- package/lib/browser/override/editor-tab.service.js.map +1 -0
- package/lib/browser/override/menu.service.d.ts +9 -0
- package/lib/browser/override/menu.service.d.ts.map +1 -0
- package/lib/browser/override/menu.service.js +51 -0
- package/lib/browser/override/menu.service.js.map +1 -0
- package/lib/browser/override/override.module.less +135 -0
- package/lib/browser/override/split-panel.service.d.ts +8 -0
- package/lib/browser/override/split-panel.service.d.ts.map +1 -0
- package/lib/browser/override/split-panel.service.js +14 -0
- package/lib/browser/override/split-panel.service.js.map +1 -0
- package/lib/browser/style/design.module.less +735 -0
- package/lib/browser/style/global.less +279 -0
- package/lib/browser/theme/default-theme.d.ts +328 -0
- package/lib/browser/theme/default-theme.d.ts.map +1 -0
- package/lib/browser/theme/default-theme.js +804 -0
- package/lib/browser/theme/default-theme.js.map +1 -0
- package/lib/browser/theme/file-system.provider.d.ts +16 -0
- package/lib/browser/theme/file-system.provider.d.ts.map +1 -0
- package/lib/browser/theme/file-system.provider.js +56 -0
- package/lib/browser/theme/file-system.provider.js.map +1 -0
- package/lib/browser/theme/light-theme.d.ts +329 -0
- package/lib/browser/theme/light-theme.d.ts.map +1 -0
- package/lib/browser/theme/light-theme.js +824 -0
- package/lib/browser/theme/light-theme.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -0
- package/package.json +30 -0
- package/src/browser/design.contribution.ts +34 -0
- package/src/browser/index.ts +96 -0
- package/src/browser/layout/tabbar.view.tsx +48 -0
- package/src/browser/override/editor-tab.service.tsx +46 -0
- package/src/browser/override/menu.service.tsx +74 -0
- package/src/browser/override/override.module.less +135 -0
- package/src/browser/override/split-panel.service.tsx +18 -0
- package/src/browser/style/design.module.less +735 -0
- package/src/browser/style/global.less +279 -0
- package/src/browser/theme/default-theme.ts +803 -0
- package/src/browser/theme/file-system.provider.ts +69 -0
- package/src/browser/theme/light-theme.ts +823 -0
- package/src/index.ts +0 -0
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
#opensumi-left-tabbar {
|
|
2
|
+
.kt-badge {
|
|
3
|
+
top: 0;
|
|
4
|
+
right: -8px;
|
|
5
|
+
font-size: 10px;
|
|
6
|
+
min-width: 16px;
|
|
7
|
+
padding: 0 2px;
|
|
8
|
+
height: 14px;
|
|
9
|
+
line-height: 14px;
|
|
10
|
+
letter-spacing: -0.5px;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
#opensumi-statusbar {
|
|
15
|
+
border-top: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.kt-menu {
|
|
19
|
+
&::-webkit-scrollbar {
|
|
20
|
+
width: 4px;
|
|
21
|
+
margin: 20px;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.kt-menu.kt-inner-menu-submenu {
|
|
26
|
+
background-color: transparent !important;
|
|
27
|
+
border-radius: 8px !important;
|
|
28
|
+
|
|
29
|
+
ul.kt-inner-menu-sub {
|
|
30
|
+
backdrop-filter: saturate(150%) blur(20px) !important;
|
|
31
|
+
-webkit-backdrop-filter: saturate(150%) blur(20px) !important;
|
|
32
|
+
border: 0 none !important;
|
|
33
|
+
box-shadow: 0px 9px 28px 8px var(--design-boxShadow-color1), 0px 3px 6px -4px var(--design-boxShadow-color2),
|
|
34
|
+
0px 6px 16px 0px var(--design-boxShadow-color3) !important;
|
|
35
|
+
border-radius: 8px !important;
|
|
36
|
+
margin-left: 2px;
|
|
37
|
+
|
|
38
|
+
.kt-icon {
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.kt-menu.kt-inner-menu,
|
|
45
|
+
.kt-menu .kt-inner-menu {
|
|
46
|
+
backdrop-filter: saturate(150%) blur(20px) !important;
|
|
47
|
+
-webkit-backdrop-filter: saturate(150%) blur(20px) !important;
|
|
48
|
+
border: 0 none !important;
|
|
49
|
+
box-shadow: 0px 9px 28px 8px var(--design-boxShadow-color1), 0px 3px 6px -4px var(--design-boxShadow-color2),
|
|
50
|
+
0px 6px 16px 0px var(--design-boxShadow-color3) !important;
|
|
51
|
+
border-radius: 8px !important;
|
|
52
|
+
min-width: initial;
|
|
53
|
+
padding: 4px 0 !important;
|
|
54
|
+
|
|
55
|
+
.kt-inner-menu-submenu-title,
|
|
56
|
+
.kt-inner-menu-item {
|
|
57
|
+
height: 28px !important;
|
|
58
|
+
padding: 0 !important;
|
|
59
|
+
line-height: 28px !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
li.kt-inner-menu-submenu {
|
|
63
|
+
line-height: 28px;
|
|
64
|
+
padding-bottom: 0;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.kt-menu.kt-inner-menu .kt-inner-menu-item {
|
|
69
|
+
margin: 0 !important;
|
|
70
|
+
height: 28px !important;
|
|
71
|
+
display: flex !important;
|
|
72
|
+
align-items: center !important;
|
|
73
|
+
color: inherit !important;
|
|
74
|
+
transition: none !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.kt-menu.kt-inner-menu .kt-inner-menu-item-divider,
|
|
78
|
+
.kt-menu .kt-inner-menu .kt-inner-menu-item-divider {
|
|
79
|
+
pointer-events: none !important;
|
|
80
|
+
opacity: 1 !important;
|
|
81
|
+
margin: 4px 0 !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.kt-popover-content {
|
|
85
|
+
box-shadow: 0px 9px 28px 8px var(--design-boxShadow-color1), 0px 3px 6px -4px var(--design-boxShadow-color2),
|
|
86
|
+
0px 6px 16px 0px var(--design-boxShadow-color3);
|
|
87
|
+
padding: 5px 8px;
|
|
88
|
+
border-radius: 6px;
|
|
89
|
+
line-height: 18px;
|
|
90
|
+
margin-top: -3px;
|
|
91
|
+
|
|
92
|
+
.kt-popover-title {
|
|
93
|
+
margin-bottom: 0;
|
|
94
|
+
font-size: 12px;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
html {
|
|
99
|
+
::-webkit-scrollbar-thumb {
|
|
100
|
+
border-radius: 4px !important;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
#workbench-editor .monaco-editor {
|
|
105
|
+
.decorationsOverviewRuler {
|
|
106
|
+
width: 4px !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.find-widget {
|
|
110
|
+
border-radius: 6px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.minimap {
|
|
114
|
+
left: auto !important;
|
|
115
|
+
right: 4px !important;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.monaco-hover {
|
|
119
|
+
background-color: var(--kt-modal-background) !important;
|
|
120
|
+
border: 0 none !important;
|
|
121
|
+
box-shadow: 0px 9px 28px 8px var(--design-boxShadow-color1), 0px 3px 6px -4px var(--design-boxShadow-color2),
|
|
122
|
+
0px 6px 16px 0px var(--design-boxShadow-color3) !important;
|
|
123
|
+
border-radius: 8px !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.monaco-scrollable-element {
|
|
127
|
+
> .scrollbar > .slider {
|
|
128
|
+
background: var(--scrollbarSlider-background);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.vertical {
|
|
132
|
+
width: 4px !important;
|
|
133
|
+
|
|
134
|
+
.slider {
|
|
135
|
+
width: 4px !important;
|
|
136
|
+
left: unset !important;
|
|
137
|
+
right: 0;
|
|
138
|
+
border-radius: 4px !important;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.horizontal {
|
|
143
|
+
height: 4px !important;
|
|
144
|
+
|
|
145
|
+
.slider {
|
|
146
|
+
border-radius: 4px !important;
|
|
147
|
+
height: 4px !important;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.basic_tree {
|
|
154
|
+
.tree_node {
|
|
155
|
+
border-radius: 4px;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.xterm .xterm-viewport {
|
|
160
|
+
&::-webkit-scrollbar {
|
|
161
|
+
width: 4px;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// 对话框
|
|
166
|
+
.kt-modal-content,
|
|
167
|
+
.ant-modal-content {
|
|
168
|
+
border-radius: 8px;
|
|
169
|
+
background-color: transparent;
|
|
170
|
+
}
|
|
171
|
+
.kt-overlay .kt-modal-body,
|
|
172
|
+
.ant-modal-body {
|
|
173
|
+
border-radius: 8px;
|
|
174
|
+
border: 0 none !important;
|
|
175
|
+
box-shadow: 0px 9px 28px 8px var(--design-boxShadow-color1), 0px 3px 6px -4px var(--design-boxShadow-color2),
|
|
176
|
+
0px 6px 16px 0px var(--design-boxShadow-color3) !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.kt-dialog-buttonWrap button {
|
|
180
|
+
border-radius: 4px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.kt-notification-notice {
|
|
184
|
+
border-radius: 8px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// 全局按钮、下拉框、输入框设置调整
|
|
188
|
+
.input-box .validate-message.popup {
|
|
189
|
+
padding: 8px;
|
|
190
|
+
}
|
|
191
|
+
.input-box .validate-message.popup.validate-warning {
|
|
192
|
+
border-radius: 6px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.kt-input {
|
|
196
|
+
border-radius: 6px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.default-button-size,
|
|
200
|
+
.kt-button,
|
|
201
|
+
.ant-btn {
|
|
202
|
+
border-radius: 4px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.large-button-size,
|
|
206
|
+
.kt-dialog-buttonWrap button {
|
|
207
|
+
border-radius: 6px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.kt-select-container .kt-select-value {
|
|
211
|
+
border-radius: 4px;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.kt-select-options {
|
|
215
|
+
border-radius: 8px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.kt-clickable-icon:hover {
|
|
219
|
+
transform: none;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
223
|
+
border-radius: 6px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
#opensumi-quickpick {
|
|
227
|
+
border: 0 none !important;
|
|
228
|
+
box-shadow: 0px 9px 28px 8px var(--design-boxShadow-color1), 0px 3px 6px -4px var(--design-boxShadow-color2),
|
|
229
|
+
0px 6px 16px 0px var(--design-boxShadow-color3) !important;
|
|
230
|
+
border-radius: 8px 8px 0 0 !important;
|
|
231
|
+
padding: 4px 0;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.design_left_slot {
|
|
235
|
+
display: flex;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.design_bottom_slot {
|
|
239
|
+
background-color: var(--design-container-background);
|
|
240
|
+
border-bottom-left-radius: 12px;
|
|
241
|
+
border-bottom-right-radius: 12px;
|
|
242
|
+
overflow: hidden;
|
|
243
|
+
|
|
244
|
+
.kt-select-container {
|
|
245
|
+
.kt-select-value > span {
|
|
246
|
+
color: var(--design-text-color-normal);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.kt-select-options {
|
|
250
|
+
padding: 4px 0;
|
|
251
|
+
border-radius: 8px;
|
|
252
|
+
box-shadow: 0px 9px 28px 8px var(--design-boxShadow-color1), 0px 3px 6px -4px var(--design-boxShadow-color2),
|
|
253
|
+
0px 6px 16px 0px var(--design-boxShadow-color3);
|
|
254
|
+
|
|
255
|
+
> div {
|
|
256
|
+
line-height: 26px;
|
|
257
|
+
height: 26px;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
span {
|
|
261
|
+
margin: 0;
|
|
262
|
+
width: 100%;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
&::-webkit-scrollbar {
|
|
266
|
+
width: 4px !important;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.design-dark,
|
|
273
|
+
.design-light {
|
|
274
|
+
.monaco-editor,
|
|
275
|
+
.monaco-editor-background,
|
|
276
|
+
.monaco-editor .margin {
|
|
277
|
+
background-color: var(--design-monaco-background) !important;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
import { BuiltinTheme } from '@opensumi/ide-theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
tokenColors: ({
|
|
4
|
+
scope: string[];
|
|
5
|
+
settings: {
|
|
6
|
+
foreground: string;
|
|
7
|
+
fontStyle?: undefined;
|
|
8
|
+
};
|
|
9
|
+
name?: undefined;
|
|
10
|
+
} | {
|
|
11
|
+
scope: string;
|
|
12
|
+
settings: {
|
|
13
|
+
fontStyle: string;
|
|
14
|
+
foreground?: undefined;
|
|
15
|
+
};
|
|
16
|
+
name?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
scope: string;
|
|
19
|
+
settings: {
|
|
20
|
+
foreground: string;
|
|
21
|
+
fontStyle?: undefined;
|
|
22
|
+
};
|
|
23
|
+
name?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
scope: string;
|
|
26
|
+
settings: {
|
|
27
|
+
fontStyle: string;
|
|
28
|
+
foreground: string;
|
|
29
|
+
};
|
|
30
|
+
name?: undefined;
|
|
31
|
+
} | {
|
|
32
|
+
name: string;
|
|
33
|
+
scope: string;
|
|
34
|
+
settings: {
|
|
35
|
+
foreground: string;
|
|
36
|
+
fontStyle?: undefined;
|
|
37
|
+
};
|
|
38
|
+
} | {
|
|
39
|
+
name: string;
|
|
40
|
+
scope: string[];
|
|
41
|
+
settings: {
|
|
42
|
+
foreground: string;
|
|
43
|
+
fontStyle?: undefined;
|
|
44
|
+
};
|
|
45
|
+
})[];
|
|
46
|
+
colors: {
|
|
47
|
+
'activityBar.activeBorder': string;
|
|
48
|
+
'activityBar.activeForeground': string;
|
|
49
|
+
'activityBar.background': string;
|
|
50
|
+
'activityBar.border': string;
|
|
51
|
+
'activityBar.disableForeground': string;
|
|
52
|
+
'activityBar.dropBackground': string;
|
|
53
|
+
'activityBar.foreground': string;
|
|
54
|
+
'activityBar.inactiveForeground': string;
|
|
55
|
+
'activityBarBadge.background': string;
|
|
56
|
+
'activityBarBadge.foreground': string;
|
|
57
|
+
'badge.background': string;
|
|
58
|
+
'badge.foreground': string;
|
|
59
|
+
'breadcrumb.background': string;
|
|
60
|
+
'breadcrumb.foreground': string;
|
|
61
|
+
'checkbox.background': string;
|
|
62
|
+
'checkbox.border': string;
|
|
63
|
+
descriptionForeground: string;
|
|
64
|
+
'diffEditor.insertedTextBackground': string;
|
|
65
|
+
'editorGroup.border': string;
|
|
66
|
+
'editorGroup.dropBackground': string;
|
|
67
|
+
'editorGroup.emptyBackground': string;
|
|
68
|
+
'editorGroupHeader.tabsBackground': string;
|
|
69
|
+
'editorSuggestWidget.selectedBackground': string;
|
|
70
|
+
errorForeground: string;
|
|
71
|
+
focusBorder: string;
|
|
72
|
+
foreground: string;
|
|
73
|
+
'gitDecoration.addedResourceForeground': string;
|
|
74
|
+
'gitDecoration.conflictingResourceForeground': string;
|
|
75
|
+
'gitDecoration.deletedResourceForeground': string;
|
|
76
|
+
'gitDecoration.ignoredResourceForeground': string;
|
|
77
|
+
'gitDecoration.modifiedResourceForeground': string;
|
|
78
|
+
'gitDecoration.submoduleResourceForeground': string;
|
|
79
|
+
'gitDecoration.untrackedResourceForeground': string;
|
|
80
|
+
'icon.foreground': string;
|
|
81
|
+
'input.background': string;
|
|
82
|
+
'input.foreground': string;
|
|
83
|
+
'input.placeholderForeground': string;
|
|
84
|
+
'inputDropdown.searchMatchForeground': string;
|
|
85
|
+
'inputIcon.foreground': string;
|
|
86
|
+
'inputValidation.errorBackground': string;
|
|
87
|
+
'inputValidation.errorBorder': string;
|
|
88
|
+
'inputValidation.errorForeground': string;
|
|
89
|
+
'inputValidation.errorText': string;
|
|
90
|
+
'inputValidation.warningBackground': string;
|
|
91
|
+
'inputValidation.warningBorder': string;
|
|
92
|
+
'inputValidation.warningText': string;
|
|
93
|
+
'inputValidation.warningForeground': string;
|
|
94
|
+
'keybinding.background': string;
|
|
95
|
+
'kt.accentForeground': string;
|
|
96
|
+
'kt.actionbar.disableForeground': string;
|
|
97
|
+
'kt.actionbar.foreground': string;
|
|
98
|
+
'kt.actionbar.selectionBackground': string;
|
|
99
|
+
'kt.actionbar.selectionBorder': string;
|
|
100
|
+
'kt.actionbar.separatorBackground': string;
|
|
101
|
+
'kt.activityBar.dropUpBackground': string;
|
|
102
|
+
'kt.button.disableBackground': string;
|
|
103
|
+
'kt.button.disableBorder': string;
|
|
104
|
+
'kt.button.disableForeground': string;
|
|
105
|
+
'kt.checkbox.disableBackground': string;
|
|
106
|
+
'kt.checkbox.disableForeground': string;
|
|
107
|
+
'kt.checkbox.hoverBorder': string;
|
|
108
|
+
'kt.checkbox.selectionBackground': string;
|
|
109
|
+
'kt.checkbox.selectionForeground': string;
|
|
110
|
+
'kt.dangerButton.background': string;
|
|
111
|
+
'kt.dangerButton.clickBackground': string;
|
|
112
|
+
'kt.dangerButton.foreground': string;
|
|
113
|
+
'kt.dangerButton.hoverBackground': string;
|
|
114
|
+
'kt.dangerGhostButton.border': string;
|
|
115
|
+
'kt.dangerGhostButton.clickBorder': string;
|
|
116
|
+
'kt.dangerGhostButton.clickForeground': string;
|
|
117
|
+
'kt.dangerGhostButton.foreground': string;
|
|
118
|
+
'kt.dangerGhostButton.hoverBorder': string;
|
|
119
|
+
'kt.dangerGhostButton.hoverForeground': string;
|
|
120
|
+
'kt.defaultButton.background': string;
|
|
121
|
+
'kt.defaultButton.border': string;
|
|
122
|
+
'kt.defaultButton.clickBackground': string;
|
|
123
|
+
'kt.defaultButton.clickBorder': string;
|
|
124
|
+
'kt.defaultButton.disableBackground': string;
|
|
125
|
+
'kt.defaultButton.disableBorder': string;
|
|
126
|
+
'kt.defaultButton.disableForeground': string;
|
|
127
|
+
'kt.defaultButton.foreground': string;
|
|
128
|
+
'kt.defaultButton.hoverBackground': string;
|
|
129
|
+
'kt.defaultButton.hoverBorder': string;
|
|
130
|
+
'kt.defaultButton.selectionBackground': string;
|
|
131
|
+
'kt.defaultButton.selectionForeground': string;
|
|
132
|
+
'kt.dirtyDot.foreground': string;
|
|
133
|
+
'kt.disableForeground': string;
|
|
134
|
+
'kt.editorBreadcrumb.borderDown': string;
|
|
135
|
+
'kt.errorBackground': string;
|
|
136
|
+
'kt.errorIconForeground': string;
|
|
137
|
+
'kt.hintBackground': string;
|
|
138
|
+
'kt.hintIconForeground': string;
|
|
139
|
+
'kt.icon.clickForeground': string;
|
|
140
|
+
'kt.icon.disableForeground': string;
|
|
141
|
+
'kt.icon.foreground': string;
|
|
142
|
+
'kt.icon.hoverBackground': string;
|
|
143
|
+
'kt.icon.hoverForeground': string;
|
|
144
|
+
'kt.icon.secondaryForeground': string;
|
|
145
|
+
'kt.infoBackground': string;
|
|
146
|
+
'kt.infoIconForeground': string;
|
|
147
|
+
'kt.input.border': string;
|
|
148
|
+
'kt.input.disableBackground': string;
|
|
149
|
+
'kt.input.disableForeground': string;
|
|
150
|
+
'kt.input.selectionBackground': string;
|
|
151
|
+
'kt.linkButton.clickForeground': string;
|
|
152
|
+
'kt.linkButton.disableForeground': string;
|
|
153
|
+
'kt.linkButton.foreground': string;
|
|
154
|
+
'kt.linkButton.hoverForeground': string;
|
|
155
|
+
'kt.menu.descriptionForeground': string;
|
|
156
|
+
'kt.menu.disableForeground': string;
|
|
157
|
+
'kt.menubar.background': string;
|
|
158
|
+
'kt.menubar.border': string;
|
|
159
|
+
'kt.menubar.foreground': string;
|
|
160
|
+
'kt.menubar.separatorBackground': string;
|
|
161
|
+
'kt.modal.background': string;
|
|
162
|
+
'kt.modal.foreground': string;
|
|
163
|
+
'kt.modal.separatorBackground': string;
|
|
164
|
+
'kt.modalErrorIcon.foreground': string;
|
|
165
|
+
'kt.modalInfoIcon.foreground': string;
|
|
166
|
+
'kt.modalSuccessIcon.foreground': string;
|
|
167
|
+
'kt.modalWarningIcon.foreground': string;
|
|
168
|
+
'kt.panel.secondaryForeground': string;
|
|
169
|
+
'kt.panelTab.activeBackground': string;
|
|
170
|
+
'kt.panelTab.activeForeground': string;
|
|
171
|
+
'kt.panelTab.border': string;
|
|
172
|
+
'kt.panelTab.inactiveBackground': string;
|
|
173
|
+
'kt.panelTab.inactiveForeground': string;
|
|
174
|
+
'kt.panelTitle.background': string;
|
|
175
|
+
'kt.popover.background': string;
|
|
176
|
+
'kt.popover.border': string;
|
|
177
|
+
'kt.popover.foreground': string;
|
|
178
|
+
'kt.popover.prominentBackground': string;
|
|
179
|
+
'kt.primaryButton.background': string;
|
|
180
|
+
'kt.primaryButton.clickBackground': string;
|
|
181
|
+
'kt.primaryButton.foreground': string;
|
|
182
|
+
'kt.primaryButton.hoverBackground': string;
|
|
183
|
+
'kt.primaryButton.border': string;
|
|
184
|
+
'kt.primaryGhostButton.clickBorder': string;
|
|
185
|
+
'kt.primaryGhostButton.clickForeground': string;
|
|
186
|
+
'kt.primaryGhostButton.clickBackground': string;
|
|
187
|
+
'kt.primaryGhostButton.foreground': string;
|
|
188
|
+
'kt.primaryGhostButton.border': string;
|
|
189
|
+
'kt.primaryGhostButton.background': string;
|
|
190
|
+
'kt.secondaryButton.border': string;
|
|
191
|
+
'kt.secondaryButton.clickBorder': string;
|
|
192
|
+
'kt.secondaryButton.clickForeground': string;
|
|
193
|
+
'kt.secondaryButton.foreground': string;
|
|
194
|
+
'kt.secondaryButton.hoverBorder': string;
|
|
195
|
+
'kt.secondaryButton.hoverForeground': string;
|
|
196
|
+
'kt.secondaryButton.background': string;
|
|
197
|
+
'kt.select.background': string;
|
|
198
|
+
'kt.select.border': string;
|
|
199
|
+
'kt.select.disableBackground': string;
|
|
200
|
+
'kt.select.disableForeground': string;
|
|
201
|
+
'kt.select.foreground': string;
|
|
202
|
+
'kt.select.placeholderForeground': string;
|
|
203
|
+
'kt.selectDropdown.background': string;
|
|
204
|
+
'kt.selectDropdown.foreground': string;
|
|
205
|
+
'kt.selectDropdown.hoverBackground': string;
|
|
206
|
+
'kt.selectDropdown.selectionBackground': string;
|
|
207
|
+
'kt.selectOption.activeBorder': string;
|
|
208
|
+
'kt.statusbar.offline.background': string;
|
|
209
|
+
'kt.successBackground': string;
|
|
210
|
+
'kt.successIconForeground': string;
|
|
211
|
+
'kt.tab.activeBorder': string;
|
|
212
|
+
'kt.tab.activeForeground': string;
|
|
213
|
+
'kt.tab.borderDown': string;
|
|
214
|
+
'kt.tab.inactiveForeground': string;
|
|
215
|
+
'kt.tree.activeSelectionBackground': string;
|
|
216
|
+
'kt.tree.activeSelectionForeground': string;
|
|
217
|
+
'kt.tree.hoverBackground': string;
|
|
218
|
+
'kt.tree.hoverForeground': string;
|
|
219
|
+
'kt.tree.inactiveSelectionBackground': string;
|
|
220
|
+
'kt.tree.inactiveSelectionForeground': string;
|
|
221
|
+
'kt.warningBackground': string;
|
|
222
|
+
'kt.warningIconForeground': string;
|
|
223
|
+
'kt.whiteGhostButton.border': string;
|
|
224
|
+
'kt.whiteGhostButton.clickBorder': string;
|
|
225
|
+
'kt.whiteGhostButton.clickForeground': string;
|
|
226
|
+
'kt.whiteGhostButton.disableBackground': string;
|
|
227
|
+
'kt.whiteGhostButton.disableBorder': string;
|
|
228
|
+
'kt.whiteGhostButton.disableForeground': string;
|
|
229
|
+
'kt.whiteGhostButton.foreground': string;
|
|
230
|
+
'list.activeSelectionBackground': string;
|
|
231
|
+
'list.activeSelectionForeground': string;
|
|
232
|
+
'list.evenItemBackground': string;
|
|
233
|
+
'list.headerBackground': string;
|
|
234
|
+
'list.hoverBackground': string;
|
|
235
|
+
'menu.background': string;
|
|
236
|
+
'menu.foreground': string;
|
|
237
|
+
'menu.selectionBackground': string;
|
|
238
|
+
'menu.selectionForeground': string;
|
|
239
|
+
'menu.separatorBackground': string;
|
|
240
|
+
'menubar.selectionBackground': string;
|
|
241
|
+
'menubar.selectionForeground': string;
|
|
242
|
+
'message.background': string;
|
|
243
|
+
'message.foreground': string;
|
|
244
|
+
'messageErrorIcon.foreground': string;
|
|
245
|
+
'messageInfoIcon.foreground': string;
|
|
246
|
+
'messageSuccessIcon.foreground': string;
|
|
247
|
+
'messageWarningIcon.foreground': string;
|
|
248
|
+
'notifications.background': string;
|
|
249
|
+
'notifications.foreground': string;
|
|
250
|
+
'notificationsErrorIcon.foreground': string;
|
|
251
|
+
'notificationsInfoIcon.foreground': string;
|
|
252
|
+
'notificationsWarningIcon.foreground': string;
|
|
253
|
+
'panel.background': string;
|
|
254
|
+
'panel.border': string;
|
|
255
|
+
'panel.foreground': string;
|
|
256
|
+
'panel.selectionBackground': string;
|
|
257
|
+
'panel.separatorBackground': string;
|
|
258
|
+
'panelMenuBadge.background': string;
|
|
259
|
+
'panelMenuBar.background': string;
|
|
260
|
+
'panelMenuBarBadge.foreground': string;
|
|
261
|
+
'panelTabBarActionIcon.Background': string;
|
|
262
|
+
'panelTabBarError.foreground': string;
|
|
263
|
+
'panelTitle.activeBorder': string;
|
|
264
|
+
'panelTitle.activeForeground': string;
|
|
265
|
+
'panelTitle.hoverForeground': string;
|
|
266
|
+
'panelTitle.inactiveForeground': string;
|
|
267
|
+
'selectDropdown.descriptionForeground': string;
|
|
268
|
+
'selectDropdown.teamForeground': string;
|
|
269
|
+
'sideBar.background': string;
|
|
270
|
+
'sideBar.border': string;
|
|
271
|
+
'sideBar.dropBackground': string;
|
|
272
|
+
'sideBar.dropUpBackground': string;
|
|
273
|
+
'sideBarSectionHeader.background': string;
|
|
274
|
+
'sideBarSectionHeader.foreground': string;
|
|
275
|
+
'sideBarTitle.foreground': string;
|
|
276
|
+
'statusBar.background': string;
|
|
277
|
+
'statusBar.debuggingBackground': string;
|
|
278
|
+
'statusBar.foreground': string;
|
|
279
|
+
'statusBar.noFolderBackground': string;
|
|
280
|
+
'statusBarItem.activeBackground': string;
|
|
281
|
+
'statusBarItem.hoverBackground': string;
|
|
282
|
+
'statusBarItem.remoteBackground': string;
|
|
283
|
+
'tab.activeBackground': string;
|
|
284
|
+
'tab.activeForeground': string;
|
|
285
|
+
'tab.border': string;
|
|
286
|
+
'tab.inactiveBackground': string;
|
|
287
|
+
'tab.inactiveForeground': string;
|
|
288
|
+
'tab.hoverBackground': string;
|
|
289
|
+
'tab.unfocusedActiveBackground': string;
|
|
290
|
+
'tab.unfocusedActiveForeground': string;
|
|
291
|
+
'tab.unfocusedInactiveForeground': string;
|
|
292
|
+
'terminal.background': string;
|
|
293
|
+
'terminal.border': string;
|
|
294
|
+
'terminal.foreground': string;
|
|
295
|
+
'terminal.offlineBackground': string;
|
|
296
|
+
'terminal.offlineForeground': string;
|
|
297
|
+
'terminal.offlineLinkForeground': string;
|
|
298
|
+
'terminal.selectionBackground': string;
|
|
299
|
+
'tooltip.background': string;
|
|
300
|
+
'tooltip.foreground': string;
|
|
301
|
+
'widget.shadow': string;
|
|
302
|
+
'list.focusOutline': string;
|
|
303
|
+
'editorInlayHint.parameterBackground': string;
|
|
304
|
+
'button.background': string;
|
|
305
|
+
'scrollbarSlider.background': string;
|
|
306
|
+
'editor.background': string;
|
|
307
|
+
'quickInput.background': string;
|
|
308
|
+
'list.focusBackground': string;
|
|
309
|
+
'textLink.foreground': string;
|
|
310
|
+
};
|
|
311
|
+
semanticHighlighting: boolean;
|
|
312
|
+
semanticTokenColors: {
|
|
313
|
+
newOperator: string;
|
|
314
|
+
stringLiteral: string;
|
|
315
|
+
customLiteral: string;
|
|
316
|
+
numberLiteral: string;
|
|
317
|
+
};
|
|
318
|
+
encodedTokensColors: never[];
|
|
319
|
+
rules: never[];
|
|
320
|
+
base: BuiltinTheme;
|
|
321
|
+
designThemeType: string;
|
|
322
|
+
inherit: boolean;
|
|
323
|
+
hasDefaultTokens: boolean;
|
|
324
|
+
id: string;
|
|
325
|
+
name: string;
|
|
326
|
+
};
|
|
327
|
+
export default _default;
|
|
328
|
+
//# sourceMappingURL=default-theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-theme.d.ts","sourceRoot":"","sources":["../../../src/browser/theme/default-theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEnD,wBAgyBE"}
|