@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.
Files changed (58) hide show
  1. package/LICENSE +21 -0
  2. package/lib/browser/design.contribution.d.ts +9 -0
  3. package/lib/browser/design.contribution.d.ts.map +1 -0
  4. package/lib/browser/design.contribution.js +35 -0
  5. package/lib/browser/design.contribution.js.map +1 -0
  6. package/lib/browser/index.d.ts +7 -0
  7. package/lib/browser/index.d.ts.map +1 -0
  8. package/lib/browser/index.js +83 -0
  9. package/lib/browser/index.js.map +1 -0
  10. package/lib/browser/layout/tabbar.view.d.ts +18 -0
  11. package/lib/browser/layout/tabbar.view.d.ts.map +1 -0
  12. package/lib/browser/layout/tabbar.view.js +14 -0
  13. package/lib/browser/layout/tabbar.view.js.map +1 -0
  14. package/lib/browser/override/editor-tab.service.d.ts +7 -0
  15. package/lib/browser/override/editor-tab.service.d.ts.map +1 -0
  16. package/lib/browser/override/editor-tab.service.js +36 -0
  17. package/lib/browser/override/editor-tab.service.js.map +1 -0
  18. package/lib/browser/override/menu.service.d.ts +9 -0
  19. package/lib/browser/override/menu.service.d.ts.map +1 -0
  20. package/lib/browser/override/menu.service.js +51 -0
  21. package/lib/browser/override/menu.service.js.map +1 -0
  22. package/lib/browser/override/override.module.less +135 -0
  23. package/lib/browser/override/split-panel.service.d.ts +8 -0
  24. package/lib/browser/override/split-panel.service.d.ts.map +1 -0
  25. package/lib/browser/override/split-panel.service.js +14 -0
  26. package/lib/browser/override/split-panel.service.js.map +1 -0
  27. package/lib/browser/style/design.module.less +735 -0
  28. package/lib/browser/style/global.less +279 -0
  29. package/lib/browser/theme/default-theme.d.ts +328 -0
  30. package/lib/browser/theme/default-theme.d.ts.map +1 -0
  31. package/lib/browser/theme/default-theme.js +804 -0
  32. package/lib/browser/theme/default-theme.js.map +1 -0
  33. package/lib/browser/theme/file-system.provider.d.ts +16 -0
  34. package/lib/browser/theme/file-system.provider.d.ts.map +1 -0
  35. package/lib/browser/theme/file-system.provider.js +56 -0
  36. package/lib/browser/theme/file-system.provider.js.map +1 -0
  37. package/lib/browser/theme/light-theme.d.ts +329 -0
  38. package/lib/browser/theme/light-theme.d.ts.map +1 -0
  39. package/lib/browser/theme/light-theme.js +824 -0
  40. package/lib/browser/theme/light-theme.js.map +1 -0
  41. package/lib/index.d.ts +1 -0
  42. package/lib/index.d.ts.map +1 -0
  43. package/lib/index.js +2 -0
  44. package/lib/index.js.map +1 -0
  45. package/package.json +30 -0
  46. package/src/browser/design.contribution.ts +34 -0
  47. package/src/browser/index.ts +96 -0
  48. package/src/browser/layout/tabbar.view.tsx +48 -0
  49. package/src/browser/override/editor-tab.service.tsx +46 -0
  50. package/src/browser/override/menu.service.tsx +74 -0
  51. package/src/browser/override/override.module.less +135 -0
  52. package/src/browser/override/split-panel.service.tsx +18 -0
  53. package/src/browser/style/design.module.less +735 -0
  54. package/src/browser/style/global.less +279 -0
  55. package/src/browser/theme/default-theme.ts +803 -0
  56. package/src/browser/theme/file-system.provider.ts +69 -0
  57. package/src/browser/theme/light-theme.ts +823 -0
  58. package/src/index.ts +0 -0
@@ -0,0 +1,803 @@
1
+ import { BuiltinTheme } from '@opensumi/ide-theme';
2
+
3
+ export default {
4
+ tokenColors: [
5
+ {
6
+ scope: ['meta.embedded', 'source.groovy.embedded'],
7
+ settings: {
8
+ foreground: '#D4D4D4',
9
+ },
10
+ },
11
+ {
12
+ scope: 'emphasis',
13
+ settings: {
14
+ fontStyle: 'italic',
15
+ },
16
+ },
17
+ {
18
+ scope: 'strong',
19
+ settings: {
20
+ fontStyle: 'bold',
21
+ },
22
+ },
23
+ {
24
+ scope: 'header',
25
+ settings: {
26
+ foreground: '#000080',
27
+ },
28
+ },
29
+ {
30
+ scope: 'comment',
31
+ settings: {
32
+ foreground: '#6A9955',
33
+ },
34
+ },
35
+ {
36
+ scope: 'constant.language',
37
+ settings: {
38
+ foreground: '#569cd6',
39
+ },
40
+ },
41
+ {
42
+ scope: [
43
+ 'constant.numeric',
44
+ 'variable.other.enummember',
45
+ 'keyword.operator.plus.exponent',
46
+ 'keyword.operator.minus.exponent',
47
+ ],
48
+ settings: {
49
+ foreground: '#b5cea8',
50
+ },
51
+ },
52
+ {
53
+ scope: 'constant.regexp',
54
+ settings: {
55
+ foreground: '#646695',
56
+ },
57
+ },
58
+ {
59
+ scope: 'entity.name.tag',
60
+ settings: {
61
+ foreground: '#569cd6',
62
+ },
63
+ },
64
+ {
65
+ scope: 'entity.name.tag.css',
66
+ settings: {
67
+ foreground: '#d7ba7d',
68
+ },
69
+ },
70
+ {
71
+ scope: 'entity.other.attribute-name',
72
+ settings: {
73
+ foreground: '#9cdcfe',
74
+ },
75
+ },
76
+ {
77
+ scope: [
78
+ 'entity.other.attribute-name.class.css',
79
+ 'entity.other.attribute-name.class.mixin.css',
80
+ 'entity.other.attribute-name.id.css',
81
+ 'entity.other.attribute-name.parent-selector.css',
82
+ 'entity.other.attribute-name.pseudo-class.css',
83
+ 'entity.other.attribute-name.pseudo-element.css',
84
+ 'source.css.less entity.other.attribute-name.id',
85
+ 'entity.other.attribute-name.scss',
86
+ ],
87
+ settings: {
88
+ foreground: '#d7ba7d',
89
+ },
90
+ },
91
+ {
92
+ scope: 'invalid',
93
+ settings: {
94
+ foreground: '#f44747',
95
+ },
96
+ },
97
+ {
98
+ scope: 'markup.underline',
99
+ settings: {
100
+ fontStyle: 'underline',
101
+ },
102
+ },
103
+ {
104
+ scope: 'markup.bold',
105
+ settings: {
106
+ fontStyle: 'bold',
107
+ foreground: '#569cd6',
108
+ },
109
+ },
110
+ {
111
+ scope: 'markup.heading',
112
+ settings: {
113
+ fontStyle: 'bold',
114
+ foreground: '#569cd6',
115
+ },
116
+ },
117
+ {
118
+ scope: 'markup.italic',
119
+ settings: {
120
+ fontStyle: 'italic',
121
+ },
122
+ },
123
+ {
124
+ scope: 'markup.inserted',
125
+ settings: {
126
+ foreground: '#b5cea8',
127
+ },
128
+ },
129
+ {
130
+ scope: 'markup.deleted',
131
+ settings: {
132
+ foreground: '#ce9178',
133
+ },
134
+ },
135
+ {
136
+ scope: 'markup.changed',
137
+ settings: {
138
+ foreground: '#569cd6',
139
+ },
140
+ },
141
+ {
142
+ scope: 'punctuation.definition.quote.begin.markdown',
143
+ settings: {
144
+ foreground: '#6A9955',
145
+ },
146
+ },
147
+ {
148
+ scope: 'punctuation.definition.list.begin.markdown',
149
+ settings: {
150
+ foreground: '#6796e6',
151
+ },
152
+ },
153
+ {
154
+ scope: 'markup.inline.raw',
155
+ settings: {
156
+ foreground: '#ce9178',
157
+ },
158
+ },
159
+ {
160
+ name: 'brackets of XML/HTML tags',
161
+ scope: 'punctuation.definition.tag',
162
+ settings: {
163
+ foreground: '#808080',
164
+ },
165
+ },
166
+ {
167
+ scope: ['meta.preprocessor', 'entity.name.function.preprocessor'],
168
+ settings: {
169
+ foreground: '#569cd6',
170
+ },
171
+ },
172
+ {
173
+ scope: 'meta.preprocessor.string',
174
+ settings: {
175
+ foreground: '#ce9178',
176
+ },
177
+ },
178
+ {
179
+ scope: 'meta.preprocessor.numeric',
180
+ settings: {
181
+ foreground: '#b5cea8',
182
+ },
183
+ },
184
+ {
185
+ scope: 'meta.structure.dictionary.key.python',
186
+ settings: {
187
+ foreground: '#9cdcfe',
188
+ },
189
+ },
190
+ {
191
+ scope: 'meta.diff.header',
192
+ settings: {
193
+ foreground: '#569cd6',
194
+ },
195
+ },
196
+ {
197
+ scope: 'storage',
198
+ settings: {
199
+ foreground: '#569cd6',
200
+ },
201
+ },
202
+ {
203
+ scope: 'storage.type',
204
+ settings: {
205
+ foreground: '#569cd6',
206
+ },
207
+ },
208
+ {
209
+ scope: ['storage.modifier', 'keyword.operator.noexcept'],
210
+ settings: {
211
+ foreground: '#569cd6',
212
+ },
213
+ },
214
+ {
215
+ scope: ['string', 'meta.embedded.assembly'],
216
+ settings: {
217
+ foreground: '#ce9178',
218
+ },
219
+ },
220
+ {
221
+ scope: 'string.tag',
222
+ settings: {
223
+ foreground: '#ce9178',
224
+ },
225
+ },
226
+ {
227
+ scope: 'string.value',
228
+ settings: {
229
+ foreground: '#ce9178',
230
+ },
231
+ },
232
+ {
233
+ scope: 'string.regexp',
234
+ settings: {
235
+ foreground: '#d16969',
236
+ },
237
+ },
238
+ {
239
+ name: 'String interpolation',
240
+ scope: [
241
+ 'punctuation.definition.template-expression.begin',
242
+ 'punctuation.definition.template-expression.end',
243
+ 'punctuation.section.embedded',
244
+ ],
245
+ settings: {
246
+ foreground: '#569cd6',
247
+ },
248
+ },
249
+ {
250
+ name: 'Reset JavaScript string interpolation expression',
251
+ scope: ['meta.template.expression'],
252
+ settings: {
253
+ foreground: '#d4d4d4',
254
+ },
255
+ },
256
+ {
257
+ scope: [
258
+ 'support.type.vendored.property-name',
259
+ 'support.type.property-name',
260
+ 'variable.css',
261
+ 'variable.scss',
262
+ 'variable.other.less',
263
+ 'source.coffee.embedded',
264
+ ],
265
+ settings: {
266
+ foreground: '#9cdcfe',
267
+ },
268
+ },
269
+ {
270
+ scope: 'keyword',
271
+ settings: {
272
+ foreground: '#569cd6',
273
+ },
274
+ },
275
+ {
276
+ scope: 'keyword.control',
277
+ settings: {
278
+ foreground: '#569cd6',
279
+ },
280
+ },
281
+ {
282
+ scope: 'keyword.operator',
283
+ settings: {
284
+ foreground: '#d4d4d4',
285
+ },
286
+ },
287
+ {
288
+ scope: [
289
+ 'keyword.operator.new',
290
+ 'keyword.operator.expression',
291
+ 'keyword.operator.cast',
292
+ 'keyword.operator.sizeof',
293
+ 'keyword.operator.alignof',
294
+ 'keyword.operator.typeid',
295
+ 'keyword.operator.alignas',
296
+ 'keyword.operator.instanceof',
297
+ 'keyword.operator.logical.python',
298
+ 'keyword.operator.wordlike',
299
+ ],
300
+ settings: {
301
+ foreground: '#569cd6',
302
+ },
303
+ },
304
+ {
305
+ scope: 'keyword.other.unit',
306
+ settings: {
307
+ foreground: '#b5cea8',
308
+ },
309
+ },
310
+ {
311
+ scope: ['punctuation.section.embedded.begin.php', 'punctuation.section.embedded.end.php'],
312
+ settings: {
313
+ foreground: '#569cd6',
314
+ },
315
+ },
316
+ {
317
+ scope: 'support.function.git-rebase',
318
+ settings: {
319
+ foreground: '#9cdcfe',
320
+ },
321
+ },
322
+ {
323
+ scope: 'constant.sha.git-rebase',
324
+ settings: {
325
+ foreground: '#b5cea8',
326
+ },
327
+ },
328
+ {
329
+ name: 'coloring of the Java import and package identifiers',
330
+ scope: ['storage.modifier.import.java', 'variable.language.wildcard.java', 'storage.modifier.package.java'],
331
+ settings: {
332
+ foreground: '#d4d4d4',
333
+ },
334
+ },
335
+ {
336
+ name: 'this.self',
337
+ scope: 'variable.language',
338
+ settings: {
339
+ foreground: '#569cd6',
340
+ },
341
+ },
342
+ {
343
+ name: 'Function declarations',
344
+ scope: [
345
+ 'entity.name.function',
346
+ 'support.function',
347
+ 'support.constant.handlebars',
348
+ 'source.powershell variable.other.member',
349
+ 'entity.name.operator.custom-literal', // See https://en.cppreference.com/w/cpp/language/user_literal
350
+ ],
351
+ settings: {
352
+ foreground: '#DCDCAA',
353
+ },
354
+ },
355
+ {
356
+ name: 'Types declaration and references',
357
+ scope: [
358
+ 'meta.return-type',
359
+ 'support.class',
360
+ 'support.type',
361
+ 'entity.name.type',
362
+ 'entity.name.namespace',
363
+ 'entity.other.attribute',
364
+ 'entity.name.scope-resolution',
365
+ 'entity.name.class',
366
+ 'storage.type.numeric.go',
367
+ 'storage.type.byte.go',
368
+ 'storage.type.boolean.go',
369
+ 'storage.type.string.go',
370
+ 'storage.type.uintptr.go',
371
+ 'storage.type.error.go',
372
+ 'storage.type.rune.go',
373
+ 'storage.type.cs',
374
+ 'storage.type.generic.cs',
375
+ 'storage.type.modifier.cs',
376
+ 'storage.type.variable.cs',
377
+ 'storage.type.annotation.java',
378
+ 'storage.type.generic.java',
379
+ 'storage.type.java',
380
+ 'storage.type.object.array.java',
381
+ 'storage.type.primitive.array.java',
382
+ 'storage.type.primitive.java',
383
+ 'storage.type.token.java',
384
+ 'storage.type.groovy',
385
+ 'storage.type.annotation.groovy',
386
+ 'storage.type.parameters.groovy',
387
+ 'storage.type.generic.groovy',
388
+ 'storage.type.object.array.groovy',
389
+ 'storage.type.primitive.array.groovy',
390
+ 'storage.type.primitive.groovy',
391
+ ],
392
+ settings: {
393
+ foreground: '#4EC9B0',
394
+ },
395
+ },
396
+ {
397
+ name: 'Types declaration and references, TS grammar specific',
398
+ scope: [
399
+ 'meta.type.cast.expr',
400
+ 'meta.type.new.expr',
401
+ 'support.constant.math',
402
+ 'support.constant.dom',
403
+ 'support.constant.json',
404
+ 'entity.other.inherited-class',
405
+ ],
406
+ settings: {
407
+ foreground: '#4EC9B0',
408
+ },
409
+ },
410
+ {
411
+ name: 'Control flow / Special keywords',
412
+ scope: [
413
+ 'keyword.control',
414
+ 'source.cpp keyword.operator.new',
415
+ 'keyword.operator.delete',
416
+ 'keyword.other.using',
417
+ 'keyword.other.operator',
418
+ 'entity.name.operator',
419
+ ],
420
+ settings: {
421
+ foreground: '#C586C0',
422
+ },
423
+ },
424
+ {
425
+ name: 'Variable and parameter name',
426
+ scope: [
427
+ 'variable',
428
+ 'meta.definition.variable.name',
429
+ 'support.variable',
430
+ 'entity.nam1e.variable',
431
+ 'constant.other.placeholder', // placeholders in strings
432
+ ],
433
+ settings: {
434
+ foreground: '#9CDCFE',
435
+ },
436
+ },
437
+ {
438
+ name: 'Constants and enums',
439
+ scope: ['variable.other.constant', 'variable.other.enummember'],
440
+ settings: {
441
+ foreground: '#4FC1FF',
442
+ },
443
+ },
444
+ {
445
+ name: 'Object keys, TS grammar specific',
446
+ scope: ['meta.object-literal.key'],
447
+ settings: {
448
+ foreground: '#9CDCFE',
449
+ },
450
+ },
451
+ {
452
+ name: 'CSS property value',
453
+ scope: [
454
+ 'support.constant.property-value',
455
+ 'support.constant.font-name',
456
+ 'support.constant.media-type',
457
+ 'support.constant.media',
458
+ 'constant.other.color.rgb-value',
459
+ 'constant.other.rgb-value',
460
+ 'support.constant.color',
461
+ ],
462
+ settings: {
463
+ foreground: '#CE9178',
464
+ },
465
+ },
466
+ {
467
+ name: 'Regular expression groups',
468
+ scope: [
469
+ 'punctuation.definition.group.regexp',
470
+ 'punctuation.definition.group.assertion.regexp',
471
+ 'punctuation.definition.character-class.regexp',
472
+ 'punctuation.character.set.begin.regexp',
473
+ 'punctuation.character.set.end.regexp',
474
+ 'keyword.operator.negation.regexp',
475
+ 'support.other.parenthesis.regexp',
476
+ ],
477
+ settings: {
478
+ foreground: '#CE9178',
479
+ },
480
+ },
481
+ {
482
+ scope: [
483
+ 'constant.character.character-class.regexp',
484
+ 'constant.other.character-class.set.regexp',
485
+ 'constant.other.character-class.regexp',
486
+ 'constant.character.set.regexp',
487
+ ],
488
+ settings: {
489
+ foreground: '#d16969',
490
+ },
491
+ },
492
+ {
493
+ scope: ['keyword.operator.or.regexp', 'keyword.control.anchor.regexp'],
494
+ settings: {
495
+ foreground: '#DCDCAA',
496
+ },
497
+ },
498
+ {
499
+ scope: 'keyword.operator.quantifier.regexp',
500
+ settings: {
501
+ foreground: '#d7ba7d',
502
+ },
503
+ },
504
+ {
505
+ scope: 'constant.character',
506
+ settings: {
507
+ foreground: '#569cd6',
508
+ },
509
+ },
510
+ {
511
+ scope: 'constant.character.escape',
512
+ settings: {
513
+ foreground: '#d7ba7d',
514
+ },
515
+ },
516
+ {
517
+ scope: 'entity.name.label',
518
+ settings: {
519
+ foreground: '#C8C8C8',
520
+ },
521
+ },
522
+ ],
523
+ colors: {
524
+ 'activityBar.activeBorder': '#ffffff1f',
525
+ 'activityBar.activeForeground': '#FFFFFF',
526
+ 'activityBar.background': '#00000000',
527
+ 'activityBar.border': '#252729',
528
+ 'activityBar.disableForeground': '#5F656B',
529
+ 'activityBar.dropBackground': '#43484D',
530
+ 'activityBar.foreground': '#fff',
531
+ 'activityBar.inactiveForeground': '#ffffff73',
532
+ 'activityBarBadge.background': '#167CDB',
533
+ 'activityBarBadge.foreground': '#FFFFFF',
534
+ 'badge.background': '#FFFFFF40',
535
+ 'badge.foreground': '#D7DBDE',
536
+ 'breadcrumb.background': '#222830',
537
+ 'breadcrumb.foreground': '#ffffff73',
538
+ 'checkbox.background': '#ffffff14',
539
+ 'checkbox.border': '#ffffff1f',
540
+ descriptionForeground: '#868C91',
541
+ 'diffEditor.insertedTextBackground': '#12A7A740',
542
+ 'editorGroup.border': '#43484D',
543
+ 'editorGroup.dropBackground': '#5F656B40',
544
+ 'editorGroup.emptyBackground': '#00000000',
545
+ 'editorGroupHeader.tabsBackground': '#222830',
546
+ 'editorSuggestWidget.selectedBackground': '#1A66AC',
547
+ errorForeground: '#D21F28',
548
+ focusBorder: '#ffffff1f',
549
+ foreground: '#D7DBDE',
550
+ 'gitDecoration.addedResourceForeground': '#8FD460',
551
+ 'gitDecoration.conflictingResourceForeground': '#7F9EF3',
552
+ 'gitDecoration.deletedResourceForeground': '#F3956A',
553
+ 'gitDecoration.ignoredResourceForeground': '#BBC0C4',
554
+ 'gitDecoration.modifiedResourceForeground': '#F3CC62',
555
+ 'gitDecoration.submoduleResourceForeground': '#67ABEB',
556
+ 'gitDecoration.untrackedResourceForeground': '#58D1C9',
557
+ 'icon.foreground': '#D7DBDE',
558
+ 'input.background': '#ffffff14',
559
+ 'input.foreground': '#d7dbde',
560
+ 'input.placeholderForeground': '#ffffff59',
561
+ 'inputDropdown.searchMatchForeground': '#3895EB',
562
+ 'inputIcon.foreground': '#5F656B',
563
+ 'inputValidation.errorBackground': '#321115',
564
+ 'inputValidation.errorBorder': '#D21F28',
565
+ 'inputValidation.errorForeground': '#D7DBDE',
566
+ 'inputValidation.errorText': '#D21F28',
567
+ 'inputValidation.warningBackground': '#332510',
568
+ 'inputValidation.warningBorder': '#DBA936',
569
+ 'inputValidation.warningText': '#DBA936',
570
+ 'inputValidation.warningForeground': '#d7dbde',
571
+ 'keybinding.background': '#5F656B33',
572
+ 'kt.accentForeground': '#FFFFFF',
573
+ 'kt.actionbar.disableForeground': '#5F656B',
574
+ 'kt.actionbar.foreground': '#D7DBDE',
575
+ 'kt.actionbar.selectionBackground': '#1B2F44',
576
+ 'kt.actionbar.selectionBorder': '#1A66AC',
577
+ 'kt.actionbar.separatorBackground': '#5F656B40',
578
+ 'kt.activityBar.dropUpBackground': '#1F507D',
579
+ 'kt.button.disableBackground': '#5F656B40',
580
+ 'kt.button.disableBorder': '#5F656B80',
581
+ 'kt.button.disableForeground': '#5F656B',
582
+ 'kt.checkbox.disableBackground': '#5F656B40',
583
+ 'kt.checkbox.disableForeground': '#5F656B',
584
+ 'kt.checkbox.hoverBorder': '#167CDB',
585
+ 'kt.checkbox.selectionBackground': '#167CDB',
586
+ 'kt.checkbox.selectionForeground': '#FFFFFF',
587
+ 'kt.dangerButton.background': '#DB4345',
588
+ 'kt.dangerButton.clickBackground': '#D21F28',
589
+ 'kt.dangerButton.foreground': '#FFFFFF',
590
+ 'kt.dangerButton.hoverBackground': '#F37370',
591
+ 'kt.dangerGhostButton.border': '#DB4345',
592
+ 'kt.dangerGhostButton.clickBorder': '#D21F28',
593
+ 'kt.dangerGhostButton.clickForeground': '#D21F28',
594
+ 'kt.dangerGhostButton.foreground': '#DB4345',
595
+ 'kt.dangerGhostButton.hoverBorder': '#F37370',
596
+ 'kt.dangerGhostButton.hoverForeground': '#F37370',
597
+ 'kt.defaultButton.background': '#ffffff14',
598
+ 'kt.defaultButton.border': '#00000000',
599
+ 'kt.defaultButton.clickBackground': '#ffffff14',
600
+ 'kt.defaultButton.clickBorder': '#00000000',
601
+ 'kt.defaultButton.disableBackground': '#ffffff14',
602
+ 'kt.defaultButton.disableBorder': '#00000000',
603
+ 'kt.defaultButton.disableForeground': '#ffffff40',
604
+ 'kt.defaultButton.foreground': '#D7DBDE',
605
+ 'kt.defaultButton.hoverBackground': '#ffffff29',
606
+ 'kt.defaultButton.hoverBorder': '#00000000',
607
+ 'kt.defaultButton.selectionBackground': '#ffffff29',
608
+ 'kt.defaultButton.selectionForeground': '#fff',
609
+ 'kt.dirtyDot.foreground': '#868C91',
610
+ 'kt.disableForeground': '#5F656B',
611
+ 'kt.editorBreadcrumb.borderDown': '#e9e9e914',
612
+ 'kt.errorBackground': '#D21F2840',
613
+ 'kt.errorIconForeground': '#DB4345',
614
+ 'kt.hintBackground': '#5F656B40',
615
+ 'kt.hintIconForeground': '#868C91',
616
+ 'kt.icon.clickForeground': '#D7DBDE',
617
+ 'kt.icon.disableForeground': '#5F656B',
618
+ 'kt.icon.foreground': '#ffffff73',
619
+ 'kt.icon.hoverBackground': '#ffffff14',
620
+ 'kt.icon.hoverForeground': '#D7DBDE',
621
+ 'kt.icon.secondaryForeground': '#868C91',
622
+ 'kt.infoBackground': '#167CDB40',
623
+ 'kt.infoIconForeground': '#3895EB',
624
+ 'kt.input.border': '#00000000',
625
+ 'kt.input.disableBackground': '#5F656B40',
626
+ 'kt.input.disableForeground': '#ffffff40',
627
+ 'kt.input.selectionBackground': '#1A66AC',
628
+ 'kt.linkButton.clickForeground': '#167CDB',
629
+ 'kt.linkButton.disableForeground': '#5F656B',
630
+ 'kt.linkButton.foreground': '#3895EB',
631
+ 'kt.linkButton.hoverForeground': '#67ABEB',
632
+ 'kt.menu.descriptionForeground': '#868C91',
633
+ 'kt.menu.disableForeground': '#5F656B',
634
+ 'kt.menubar.background': '#00000000',
635
+ 'kt.menubar.border': '#252729',
636
+ 'kt.menubar.foreground': '#D7DBDE',
637
+ 'kt.menubar.separatorBackground': '#5F656B40',
638
+ 'kt.modal.background': '#222830',
639
+ 'kt.modal.foreground': '#D7DBDE',
640
+ 'kt.modal.separatorBackground': '#2C3033',
641
+ 'kt.modalErrorIcon.foreground': '#DB4345',
642
+ 'kt.modalInfoIcon.foreground': '#3895EB',
643
+ 'kt.modalSuccessIcon.foreground': '#64B436',
644
+ 'kt.modalWarningIcon.foreground': '#DBA936',
645
+ 'kt.panel.secondaryForeground': '#868C91',
646
+ 'kt.panelTab.activeBackground': '#151b21',
647
+ 'kt.panelTab.activeForeground': '#FFFFFF',
648
+ 'kt.panelTab.border': '#ffffff1f',
649
+ 'kt.panelTab.inactiveBackground': '#00000000',
650
+ 'kt.panelTab.inactiveForeground': '#D7DBDE',
651
+ 'kt.panelTitle.background': '#222830',
652
+ 'kt.popover.background': '#2b333d',
653
+ 'kt.popover.border': '#363940',
654
+ 'kt.popover.foreground': '#fffffff2',
655
+ 'kt.popover.prominentBackground': '#2C3033',
656
+ 'kt.primaryButton.background': '#3c8dff',
657
+ 'kt.primaryButton.clickBackground': '#3c8dffa6',
658
+ 'kt.primaryButton.foreground': '#fff',
659
+ 'kt.primaryButton.hoverBackground': '#3c8dffa6',
660
+ 'kt.primaryButton.border': '#00000000',
661
+ 'kt.primaryGhostButton.clickBorder': '#3c8dff',
662
+ 'kt.primaryGhostButton.clickForeground': '#167CDB',
663
+ 'kt.primaryGhostButton.clickBackground': '#00000000',
664
+ 'kt.primaryGhostButton.foreground': '#3895EB',
665
+ 'kt.primaryGhostButton.border': '#3c8dff',
666
+ 'kt.primaryGhostButton.background': '#00000000',
667
+ 'kt.secondaryButton.border': '#5F656B',
668
+ 'kt.secondaryButton.clickBorder': '#167CDB',
669
+ 'kt.secondaryButton.clickForeground': '#167CDB',
670
+ 'kt.secondaryButton.foreground': '#D7DBDE',
671
+ 'kt.secondaryButton.hoverBorder': '#3895EB',
672
+ 'kt.secondaryButton.hoverForeground': '#3895EB',
673
+ 'kt.secondaryButton.background': '#00000000',
674
+ 'kt.select.background': '#ffffff14',
675
+ 'kt.select.border': '#00000000',
676
+ 'kt.select.disableBackground': '#5F656B40',
677
+ 'kt.select.disableForeground': '#5F656B',
678
+ 'kt.select.foreground': '#D7DBDE',
679
+ 'kt.select.placeholderForeground': '#5F656B',
680
+ 'kt.selectDropdown.background': '#222830',
681
+ 'kt.selectDropdown.foreground': '#D7DBDE',
682
+ 'kt.selectDropdown.hoverBackground': '#ffffff14',
683
+ 'kt.selectDropdown.selectionBackground': '#ffffff14',
684
+ 'kt.selectOption.activeBorder': '#167CDB',
685
+ 'kt.statusbar.offline.background': '#DB4345',
686
+ 'kt.successBackground': '#48A91840',
687
+ 'kt.successIconForeground': '#64B436',
688
+ 'kt.tab.activeBorder': '#167CDB',
689
+ 'kt.tab.activeForeground': '#FFFFFF',
690
+ 'kt.tab.borderDown': '#5F656B40',
691
+ 'kt.tab.inactiveForeground': '#D7DBDE',
692
+ 'kt.tree.activeSelectionBackground': '#1A66AC',
693
+ 'kt.tree.activeSelectionForeground': '#FFFFFF',
694
+ 'kt.tree.hoverBackground': '#5F656B40',
695
+ 'kt.tree.hoverForeground': '#D7DBDE',
696
+ 'kt.tree.inactiveSelectionBackground': '#ffffff1f',
697
+ 'kt.tree.inactiveSelectionForeground': '#fff',
698
+ 'kt.warningBackground': '#D7951340',
699
+ 'kt.warningIconForeground': '#DBA936',
700
+ 'kt.whiteGhostButton.border': '#FFFFFF',
701
+ 'kt.whiteGhostButton.clickBorder': '#FFFFFFA6',
702
+ 'kt.whiteGhostButton.clickForeground': '#FFFFFFA6',
703
+ 'kt.whiteGhostButton.disableBackground': '#FFFFFF03',
704
+ 'kt.whiteGhostButton.disableBorder': '#FFFFFF40',
705
+ 'kt.whiteGhostButton.disableForeground': '#FFFFFF40',
706
+ 'kt.whiteGhostButton.foreground': '#FFFFFF',
707
+ 'list.activeSelectionBackground': '#1A66AC',
708
+ 'list.activeSelectionForeground': '#e1e4e8',
709
+ 'list.evenItemBackground': '#5F656B14',
710
+ 'list.headerBackground': '#5F656B1F',
711
+ 'list.hoverBackground': '#5F656B40',
712
+ 'menu.background': '#222830d9',
713
+ 'menu.foreground': '#D7DBDE',
714
+ 'menu.selectionBackground': '#5F656B40',
715
+ 'menu.selectionForeground': '#FFFFFF',
716
+ 'menu.separatorBackground': '#43484D',
717
+ 'menubar.selectionBackground': '#5f656b40',
718
+ 'menubar.selectionForeground': '#FFFFFF',
719
+ 'message.background': '#222830',
720
+ 'message.foreground': '#D7DBDE',
721
+ 'messageErrorIcon.foreground': '#DB4345',
722
+ 'messageInfoIcon.foreground': '#3895EB',
723
+ 'messageSuccessIcon.foreground': '#64B436',
724
+ 'messageWarningIcon.foreground': '#DBA936',
725
+ 'notifications.background': '#222830',
726
+ 'notifications.foreground': '#D7DBDE',
727
+ 'notificationsErrorIcon.foreground': '#DB4345',
728
+ 'notificationsInfoIcon.foreground': '#3895EB',
729
+ 'notificationsWarningIcon.foreground': '#DBA936',
730
+ 'panel.background': '#151b21',
731
+ 'panel.border': '#43484D',
732
+ 'panel.foreground': '#D7DBDE',
733
+ 'panel.selectionBackground': '#5F656B40',
734
+ 'panel.separatorBackground': '#2C3033',
735
+ 'panelMenuBadge.background': '#00000040',
736
+ 'panelMenuBar.background': '#2C3033',
737
+ 'panelMenuBarBadge.foreground': '#5F656B40',
738
+ 'panelTabBarActionIcon.Background': '#868C91',
739
+ 'panelTabBarError.foreground': '#DB4345',
740
+ 'panelTitle.activeBorder': '#167CDB',
741
+ 'panelTitle.activeForeground': '#FFFFFF',
742
+ 'panelTitle.hoverForeground': '#FFFFFF',
743
+ 'panelTitle.inactiveForeground': '#ffffff73',
744
+ 'selectDropdown.descriptionForeground': '#868C91',
745
+ 'selectDropdown.teamForeground': '#868C91',
746
+ 'sideBar.background': '#00000000',
747
+ 'sideBar.border': '#ffffff1f',
748
+ 'sideBar.dropBackground': '#43484D',
749
+ 'sideBar.dropUpBackground': '#1F507D',
750
+ 'sideBarSectionHeader.background': '#00000000',
751
+ 'sideBarSectionHeader.foreground': '#ffffffa6',
752
+ 'sideBarTitle.foreground': '#FFFFFF',
753
+ 'statusBar.background': '#00000000',
754
+ 'statusBar.debuggingBackground': '#D77915',
755
+ 'statusBar.foreground': '#ffffff73',
756
+ 'statusBar.noFolderBackground': '#43484D',
757
+ 'statusBarItem.activeBackground': '#FFFFFF40',
758
+ 'statusBarItem.hoverBackground': '#FFFFFF03',
759
+ 'statusBarItem.remoteBackground': '#6329B4',
760
+ 'tab.activeBackground': '#151b21',
761
+ 'tab.activeForeground': '#FFFFFF',
762
+ 'tab.border': '#e9e9e914',
763
+ 'tab.inactiveBackground': '#00000000',
764
+ 'tab.inactiveForeground': '#ffffff73',
765
+ 'tab.hoverBackground': '#00000000',
766
+ 'tab.unfocusedActiveBackground': '#202224',
767
+ 'tab.unfocusedActiveForeground': '#868C91',
768
+ 'tab.unfocusedInactiveForeground': '#868C91',
769
+ 'terminal.background': '#151b21',
770
+ 'terminal.border': '#252729',
771
+ 'terminal.foreground': '#D7DBDE',
772
+ 'terminal.offlineBackground': '#D21F2840',
773
+ 'terminal.offlineForeground': '#868C91',
774
+ 'terminal.offlineLinkForeground': '#3895EB',
775
+ 'terminal.selectionBackground': '#5F656B40',
776
+ 'tooltip.background': '#35393D',
777
+ 'tooltip.foreground': '#D7DBDE',
778
+ 'widget.shadow': '#00000099',
779
+ 'list.focusOutline': '#00000000',
780
+ 'editorInlayHint.parameterBackground': '#00000000',
781
+ 'button.background': '#ffffff14',
782
+ 'scrollbarSlider.background': '#ffffff14',
783
+ 'editor.background': '#00000026',
784
+ 'quickInput.background': '#222830',
785
+ 'list.focusBackground': '#ffffff1f',
786
+ 'textLink.foreground': '#3c8dff',
787
+ },
788
+ semanticHighlighting: true,
789
+ semanticTokenColors: {
790
+ newOperator: '#d4d4d4',
791
+ stringLiteral: '#ce9178',
792
+ customLiteral: '#D4D4D4',
793
+ numberLiteral: '#b5cea8',
794
+ },
795
+ encodedTokensColors: [],
796
+ rules: [],
797
+ base: 'vs-dark' as BuiltinTheme,
798
+ designThemeType: 'design-dark',
799
+ inherit: true,
800
+ hasDefaultTokens: false,
801
+ id: 'opensumi-design-dark-theme',
802
+ name: 'OpenSumi Design Dark+ (default dark)',
803
+ };