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