@codingame/monaco-vscode-theme-defaults-default-extension 1.85.1 → 1.85.3

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 (33) hide show
  1. package/index.js +21 -20
  2. package/package.json +2 -2
  3. package/resources/dark_modern.json +1 -0
  4. package/resources/dark_plus.json +1 -0
  5. package/resources/dark_vs.json +1 -0
  6. package/resources/hc_black.json +1 -0
  7. package/resources/hc_light.json +1 -0
  8. package/resources/light_modern.json +1 -0
  9. package/resources/light_plus.json +1 -0
  10. package/resources/light_vs.json +1 -0
  11. package/resources/package.json +1 -0
  12. package/resources/package.nls.json +1 -0
  13. package/resources/vs_minimal-icon-theme.json +1 -0
  14. package/dark_modern.json +0 -128
  15. package/dark_plus.json +0 -204
  16. package/dark_vs.json +0 -406
  17. package/hc_black.json +0 -466
  18. package/hc_light.json +0 -574
  19. package/light_modern.json +0 -145
  20. package/light_plus.json +0 -206
  21. package/light_vs.json +0 -435
  22. package/package.nls.json +0 -13
  23. package/vs_minimal-icon-theme.json +0 -68
  24. /package/{document-dark.svg → resources/document-dark.svg} +0 -0
  25. /package/{document-light.svg → resources/document-light.svg} +0 -0
  26. /package/{folder-dark.svg → resources/folder-dark.svg} +0 -0
  27. /package/{folder-light.svg → resources/folder-light.svg} +0 -0
  28. /package/{folder-open-dark.svg → resources/folder-open-dark.svg} +0 -0
  29. /package/{folder-open-light.svg → resources/folder-open-light.svg} +0 -0
  30. /package/{root-folder-dark.svg → resources/root-folder-dark.svg} +0 -0
  31. /package/{root-folder-light.svg → resources/root-folder-light.svg} +0 -0
  32. /package/{root-folder-open-dark.svg → resources/root-folder-open-dark.svg} +0 -0
  33. /package/{root-folder-open-light.svg → resources/root-folder-open-light.svg} +0 -0
package/index.js CHANGED
@@ -3,25 +3,26 @@ import { registerExtension } from 'vscode/extensions';
3
3
  var manifest = {name:"theme-defaults",displayName:"%displayName%",description:"%description%",categories:["Themes"],version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Default Dark+",label:"%darkPlusColorThemeLabel%",uiTheme:"vs-dark",path:"./themes/dark_plus.json"},{id:"Default Dark Modern",label:"%darkModernThemeLabel%",uiTheme:"vs-dark",path:"./themes/dark_modern.json"},{id:"Default Light+",label:"%lightPlusColorThemeLabel%",uiTheme:"vs",path:"./themes/light_plus.json"},{id:"Default Light Modern",label:"%lightModernThemeLabel%",uiTheme:"vs",path:"./themes/light_modern.json"},{id:"Visual Studio Dark",label:"%darkColorThemeLabel%",uiTheme:"vs-dark",path:"./themes/dark_vs.json"},{id:"Visual Studio Light",label:"%lightColorThemeLabel%",uiTheme:"vs",path:"./themes/light_vs.json"},{id:"Default High Contrast",label:"%hcColorThemeLabel%",uiTheme:"hc-black",path:"./themes/hc_black.json"},{id:"Default High Contrast Light",label:"%lightHcColorThemeLabel%",uiTheme:"hc-light",path:"./themes/hc_light.json"}],iconThemes:[{id:"vs-minimal",label:"%minimalIconThemeLabel%",path:"./fileicons/vs_minimal-icon-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
4
4
 
5
5
  const { registerFileUrl, whenReady } = registerExtension(manifest);
6
- registerFileUrl('./themes/dark_plus.json', new URL('./dark_plus.json', import.meta.url).toString(), 'application/json');
7
- registerFileUrl('./themes/dark_modern.json', new URL('./dark_modern.json', import.meta.url).toString(), 'application/json');
8
- registerFileUrl('./themes/light_plus.json', new URL('./light_plus.json', import.meta.url).toString(), 'application/json');
9
- registerFileUrl('./themes/light_modern.json', new URL('./light_modern.json', import.meta.url).toString(), 'application/json');
10
- registerFileUrl('./themes/dark_vs.json', new URL('./dark_vs.json', import.meta.url).toString(), 'application/json');
11
- registerFileUrl('./themes/light_vs.json', new URL('./light_vs.json', import.meta.url).toString(), 'application/json');
12
- registerFileUrl('./themes/hc_black.json', new URL('./hc_black.json', import.meta.url).toString(), 'application/json');
13
- registerFileUrl('./themes/hc_light.json', new URL('./hc_light.json', import.meta.url).toString(), 'application/json');
14
- registerFileUrl('./fileicons/vs_minimal-icon-theme.json', new URL('./vs_minimal-icon-theme.json', import.meta.url).toString(), 'application/json');
15
- registerFileUrl('fileicons/images/root-folder-dark.svg', new URL('./root-folder-dark.svg', import.meta.url).toString(), 'image/svg+xml');
16
- registerFileUrl('fileicons/images/root-folder-open-dark.svg', new URL('./root-folder-open-dark.svg', import.meta.url).toString(), 'image/svg+xml');
17
- registerFileUrl('fileicons/images/folder-dark.svg', new URL('./folder-dark.svg', import.meta.url).toString(), 'image/svg+xml');
18
- registerFileUrl('fileicons/images/folder-open-dark.svg', new URL('./folder-open-dark.svg', import.meta.url).toString(), 'image/svg+xml');
19
- registerFileUrl('fileicons/images/document-dark.svg', new URL('./document-dark.svg', import.meta.url).toString(), 'image/svg+xml');
20
- registerFileUrl('fileicons/images/root-folder-light.svg', new URL('./root-folder-light.svg', import.meta.url).toString(), 'image/svg+xml');
21
- registerFileUrl('fileicons/images/root-folder-open-light.svg', new URL('./root-folder-open-light.svg', import.meta.url).toString(), 'image/svg+xml');
22
- registerFileUrl('fileicons/images/folder-light.svg', new URL('./folder-light.svg', import.meta.url).toString(), 'image/svg+xml');
23
- registerFileUrl('fileicons/images/folder-open-light.svg', new URL('./folder-open-light.svg', import.meta.url).toString(), 'image/svg+xml');
24
- registerFileUrl('fileicons/images/document-light.svg', new URL('./document-light.svg', import.meta.url).toString(), 'image/svg+xml');
25
- registerFileUrl('package.nls.json', new URL('./package.nls.json', import.meta.url).toString(), 'application/json');
6
+ registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), 'application/json');
7
+ registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(), 'application/json');
8
+ registerFileUrl('fileicons/vs_minimal-icon-theme.json', new URL('./resources/vs_minimal-icon-theme.json', import.meta.url).toString(), 'application/json');
9
+ registerFileUrl('themes/dark_modern.json', new URL('./resources/dark_modern.json', import.meta.url).toString(), 'application/json');
10
+ registerFileUrl('themes/dark_plus.json', new URL('./resources/dark_plus.json', import.meta.url).toString(), 'application/json');
11
+ registerFileUrl('themes/dark_vs.json', new URL('./resources/dark_vs.json', import.meta.url).toString(), 'application/json');
12
+ registerFileUrl('themes/hc_black.json', new URL('./resources/hc_black.json', import.meta.url).toString(), 'application/json');
13
+ registerFileUrl('themes/hc_light.json', new URL('./resources/hc_light.json', import.meta.url).toString(), 'application/json');
14
+ registerFileUrl('themes/light_modern.json', new URL('./resources/light_modern.json', import.meta.url).toString(), 'application/json');
15
+ registerFileUrl('themes/light_plus.json', new URL('./resources/light_plus.json', import.meta.url).toString(), 'application/json');
16
+ registerFileUrl('themes/light_vs.json', new URL('./resources/light_vs.json', import.meta.url).toString(), 'application/json');
17
+ registerFileUrl('fileicons/images/document-dark.svg', new URL('./resources/document-dark.svg', import.meta.url).toString(), 'image/svg+xml');
18
+ registerFileUrl('fileicons/images/document-light.svg', new URL('./resources/document-light.svg', import.meta.url).toString(), 'image/svg+xml');
19
+ registerFileUrl('fileicons/images/folder-dark.svg', new URL('./resources/folder-dark.svg', import.meta.url).toString(), 'image/svg+xml');
20
+ registerFileUrl('fileicons/images/folder-light.svg', new URL('./resources/folder-light.svg', import.meta.url).toString(), 'image/svg+xml');
21
+ registerFileUrl('fileicons/images/folder-open-dark.svg', new URL('./resources/folder-open-dark.svg', import.meta.url).toString(), 'image/svg+xml');
22
+ registerFileUrl('fileicons/images/folder-open-light.svg', new URL('./resources/folder-open-light.svg', import.meta.url).toString(), 'image/svg+xml');
23
+ registerFileUrl('fileicons/images/root-folder-dark.svg', new URL('./resources/root-folder-dark.svg', import.meta.url).toString(), 'image/svg+xml');
24
+ registerFileUrl('fileicons/images/root-folder-light.svg', new URL('./resources/root-folder-light.svg', import.meta.url).toString(), 'image/svg+xml');
25
+ registerFileUrl('fileicons/images/root-folder-open-dark.svg', new URL('./resources/root-folder-open-dark.svg', import.meta.url).toString(), 'image/svg+xml');
26
+ registerFileUrl('fileicons/images/root-folder-open-light.svg', new URL('./resources/root-folder-open-light.svg', import.meta.url).toString(), 'image/svg+xml');
26
27
 
27
28
  export { whenReady };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-theme-defaults-default-extension",
3
- "version": "1.85.1",
3
+ "version": "1.85.3",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,6 +18,6 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@1.85.1"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@1.85.3"
22
22
  }
23
23
  }
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Default Dark Modern","include":"./dark_plus.json","colors":{"activityBar.activeBorder":"#0078D4","activityBar.background":"#181818","activityBar.border":"#2B2B2B","activityBar.foreground":"#D7D7D7","activityBar.inactiveForeground":"#868686","activityBarBadge.background":"#0078D4","activityBarBadge.foreground":"#FFFFFF","badge.background":"#616161","badge.foreground":"#F8F8F8","button.background":"#0078D4","button.border":"#FFFFFF12","button.foreground":"#FFFFFF","button.hoverBackground":"#026EC1","button.secondaryBackground":"#313131","button.secondaryForeground":"#CCCCCC","button.secondaryHoverBackground":"#3C3C3C","chat.slashCommandBackground":"#34414B","chat.slashCommandForeground":"#40A6FF","checkbox.background":"#313131","checkbox.border":"#3C3C3C","debugToolBar.background":"#181818","descriptionForeground":"#9D9D9D","dropdown.background":"#313131","dropdown.border":"#3C3C3C","dropdown.foreground":"#CCCCCC","dropdown.listBackground":"#1F1F1F","editor.background":"#1F1F1F","editor.findMatchBackground":"#9E6A03","editor.foreground":"#CCCCCC","editorGroup.border":"#FFFFFF17","editorGroupHeader.tabsBackground":"#181818","editorGroupHeader.tabsBorder":"#2B2B2B","editorGutter.addedBackground":"#2EA043","editorGutter.deletedBackground":"#F85149","editorGutter.modifiedBackground":"#0078D4","editorLineNumber.activeForeground":"#CCCCCC","editorLineNumber.foreground":"#6E7681","editorOverviewRuler.border":"#010409","editorWidget.background":"#202020","errorForeground":"#F85149","focusBorder":"#0078D4","foreground":"#CCCCCC","icon.foreground":"#CCCCCC","input.background":"#313131","input.border":"#3C3C3C","input.foreground":"#CCCCCC","input.placeholderForeground":"#818181","inputOption.activeBackground":"#2489DB82","inputOption.activeBorder":"#2488DB","keybindingLabel.foreground":"#CCCCCC","menu.background":"#1F1F1F","notificationCenterHeader.background":"#1F1F1F","notificationCenterHeader.foreground":"#CCCCCC","notifications.background":"#1F1F1F","notifications.border":"#2B2B2B","notifications.foreground":"#CCCCCC","panel.background":"#181818","panel.border":"#2B2B2B","panelInput.border":"#2B2B2B","panelTitle.activeBorder":"#0078D4","panelTitle.activeForeground":"#CCCCCC","panelTitle.inactiveForeground":"#9D9D9D","peekViewEditor.background":"#1F1F1F","peekViewEditor.matchHighlightBackground":"#BB800966","peekViewResult.background":"#1F1F1F","peekViewResult.matchHighlightBackground":"#BB800966","pickerGroup.border":"#3C3C3C","progressBar.background":"#0078D4","quickInput.background":"#222222","quickInput.foreground":"#CCCCCC","settings.dropdownBackground":"#313131","settings.dropdownBorder":"#3C3C3C","settings.headerForeground":"#FFFFFF","settings.modifiedItemIndicator":"#BB800966","sideBar.background":"#181818","sideBar.border":"#2B2B2B","sideBar.foreground":"#CCCCCC","sideBarSectionHeader.background":"#181818","sideBarSectionHeader.border":"#2B2B2B","sideBarSectionHeader.foreground":"#CCCCCC","sideBarTitle.foreground":"#CCCCCC","statusBar.background":"#181818","statusBar.border":"#2B2B2B","statusBar.debuggingBackground":"#0078D4","statusBar.debuggingForeground":"#FFFFFF","statusBar.focusBorder":"#0078D4","statusBar.foreground":"#CCCCCC","statusBar.noFolderBackground":"#1F1F1F","statusBarItem.focusBorder":"#0078D4","statusBarItem.prominentBackground":"#6E768166","statusBarItem.remoteBackground":"#0078D4","statusBarItem.remoteForeground":"#FFFFFF","tab.activeBackground":"#1F1F1F","tab.activeBorder":"#1F1F1F","tab.activeBorderTop":"#0078D4","tab.activeForeground":"#FFFFFF","tab.border":"#2B2B2B","tab.hoverBackground":"#1F1F1F","tab.inactiveBackground":"#181818","tab.inactiveForeground":"#9D9D9D","tab.unfocusedActiveBorder":"#1F1F1F","tab.unfocusedActiveBorderTop":"#2B2B2B","tab.unfocusedHoverBackground":"#1F1F1F","terminal.foreground":"#CCCCCC","terminal.tab.activeBorder":"#0078D4","textBlockQuote.background":"#2B2B2B","textBlockQuote.border":"#616161","textCodeBlock.background":"#2B2B2B","textLink.activeForeground":"#4daafc","textLink.foreground":"#4daafc","textPreformat.foreground":"#D0D0D0","textPreformat.background":"#3C3C3C","textSeparator.foreground":"#21262D","titleBar.activeBackground":"#181818","titleBar.activeForeground":"#CCCCCC","titleBar.border":"#2B2B2B","titleBar.inactiveBackground":"#1F1F1F","titleBar.inactiveForeground":"#9D9D9D","welcomePage.tileBackground":"#2B2B2B","welcomePage.progress.foreground":"#0078D4","widget.border":"#313131"}}
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Dark+","include":"./dark_vs.json","tokenColors":[{"name":"Function declarations","scope":["entity.name.function","support.function","support.constant.handlebars","source.powershell variable.other.member","entity.name.operator.custom-literal"],"settings":{"foreground":"#DCDCAA"}},{"name":"Types declaration and references","scope":["support.class","support.type","entity.name.type","entity.name.namespace","entity.other.attribute","entity.name.scope-resolution","entity.name.class","storage.type.numeric.go","storage.type.byte.go","storage.type.boolean.go","storage.type.string.go","storage.type.uintptr.go","storage.type.error.go","storage.type.rune.go","storage.type.cs","storage.type.generic.cs","storage.type.modifier.cs","storage.type.variable.cs","storage.type.annotation.java","storage.type.generic.java","storage.type.java","storage.type.object.array.java","storage.type.primitive.array.java","storage.type.primitive.java","storage.type.token.java","storage.type.groovy","storage.type.annotation.groovy","storage.type.parameters.groovy","storage.type.generic.groovy","storage.type.object.array.groovy","storage.type.primitive.array.groovy","storage.type.primitive.groovy"],"settings":{"foreground":"#4EC9B0"}},{"name":"Types declaration and references, TS grammar specific","scope":["meta.type.cast.expr","meta.type.new.expr","support.constant.math","support.constant.dom","support.constant.json","entity.other.inherited-class"],"settings":{"foreground":"#4EC9B0"}},{"name":"Control flow / Special keywords","scope":["keyword.control","source.cpp keyword.operator.new","keyword.operator.delete","keyword.other.using","keyword.other.directive.using","keyword.other.operator","entity.name.operator"],"settings":{"foreground":"#C586C0"}},{"name":"Variable and parameter name","scope":["variable","meta.definition.variable.name","support.variable","entity.name.variable","constant.other.placeholder"],"settings":{"foreground":"#9CDCFE"}},{"name":"Constants and enums","scope":["variable.other.constant","variable.other.enummember"],"settings":{"foreground":"#4FC1FF"}},{"name":"Object keys, TS grammar specific","scope":["meta.object-literal.key"],"settings":{"foreground":"#9CDCFE"}},{"name":"CSS property value","scope":["support.constant.property-value","support.constant.font-name","support.constant.media-type","support.constant.media","constant.other.color.rgb-value","constant.other.rgb-value","support.constant.color"],"settings":{"foreground":"#CE9178"}},{"name":"Regular expression groups","scope":["punctuation.definition.group.regexp","punctuation.definition.group.assertion.regexp","punctuation.definition.character-class.regexp","punctuation.character.set.begin.regexp","punctuation.character.set.end.regexp","keyword.operator.negation.regexp","support.other.parenthesis.regexp"],"settings":{"foreground":"#CE9178"}},{"scope":["constant.character.character-class.regexp","constant.other.character-class.set.regexp","constant.other.character-class.regexp","constant.character.set.regexp"],"settings":{"foreground":"#d16969"}},{"scope":["keyword.operator.or.regexp","keyword.control.anchor.regexp"],"settings":{"foreground":"#DCDCAA"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#d7ba7d"}},{"scope":["constant.character","constant.other.option"],"settings":{"foreground":"#569cd6"}},{"scope":"constant.character.escape","settings":{"foreground":"#d7ba7d"}},{"scope":"entity.name.label","settings":{"foreground":"#C8C8C8"}}],"semanticTokenColors":{"newOperator":"#C586C0","stringLiteral":"#ce9178","customLiteral":"#DCDCAA","numberLiteral":"#b5cea8"}}
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Dark (Visual Studio)","colors":{"checkbox.border":"#6B6B6B","editor.background":"#1E1E1E","editor.foreground":"#D4D4D4","editor.inactiveSelectionBackground":"#3A3D41","editorIndentGuide.background1":"#404040","editorIndentGuide.activeBackground1":"#707070","editor.selectionHighlightBackground":"#ADD6FF26","list.dropBackground":"#383B3D","activityBarBadge.background":"#007ACC","sideBarTitle.foreground":"#BBBBBB","input.placeholderForeground":"#A6A6A6","menu.background":"#252526","menu.foreground":"#CCCCCC","menu.separatorBackground":"#454545","menu.border":"#454545","statusBarItem.remoteForeground":"#FFF","statusBarItem.remoteBackground":"#16825D","ports.iconRunningProcessForeground":"#369432","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.border":"#ccc3","tab.lastPinnedBorder":"#ccc3","list.activeSelectionIconForeground":"#FFF","terminal.inactiveSelectionBackground":"#3A3D41","widget.border":"#303031","actionBar.toggledBackground":"#383a49"},"tokenColors":[{"scope":["meta.embedded","source.groovy.embedded","string meta.image.inline.markdown","variable.legacy.builtin.python"],"settings":{"foreground":"#D4D4D4"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"header","settings":{"foreground":"#000080"}},{"scope":"comment","settings":{"foreground":"#6A9955"}},{"scope":"constant.language","settings":{"foreground":"#569cd6"}},{"scope":["constant.numeric","variable.other.enummember","keyword.operator.plus.exponent","keyword.operator.minus.exponent"],"settings":{"foreground":"#b5cea8"}},{"scope":"constant.regexp","settings":{"foreground":"#646695"}},{"scope":"entity.name.tag","settings":{"foreground":"#569cd6"}},{"scope":"entity.name.tag.css","settings":{"foreground":"#d7ba7d"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#9cdcfe"}},{"scope":["entity.other.attribute-name.class.css","entity.other.attribute-name.class.mixin.css","entity.other.attribute-name.id.css","entity.other.attribute-name.parent-selector.css","entity.other.attribute-name.pseudo-class.css","entity.other.attribute-name.pseudo-element.css","source.css.less entity.other.attribute-name.id","entity.other.attribute-name.scss"],"settings":{"foreground":"#d7ba7d"}},{"scope":"invalid","settings":{"foreground":"#f44747"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#569cd6"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#569cd6"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.strikethrough","settings":{"fontStyle":"strikethrough"}},{"scope":"markup.inserted","settings":{"foreground":"#b5cea8"}},{"scope":"markup.deleted","settings":{"foreground":"#ce9178"}},{"scope":"markup.changed","settings":{"foreground":"#569cd6"}},{"scope":"punctuation.definition.quote.begin.markdown","settings":{"foreground":"#6A9955"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#6796e6"}},{"scope":"markup.inline.raw","settings":{"foreground":"#ce9178"}},{"name":"brackets of XML/HTML tags","scope":"punctuation.definition.tag","settings":{"foreground":"#808080"}},{"scope":["meta.preprocessor","entity.name.function.preprocessor"],"settings":{"foreground":"#569cd6"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#ce9178"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#b5cea8"}},{"scope":"meta.structure.dictionary.key.python","settings":{"foreground":"#9cdcfe"}},{"scope":"meta.diff.header","settings":{"foreground":"#569cd6"}},{"scope":"storage","settings":{"foreground":"#569cd6"}},{"scope":"storage.type","settings":{"foreground":"#569cd6"}},{"scope":["storage.modifier","keyword.operator.noexcept"],"settings":{"foreground":"#569cd6"}},{"scope":["string","meta.embedded.assembly"],"settings":{"foreground":"#ce9178"}},{"scope":"string.tag","settings":{"foreground":"#ce9178"}},{"scope":"string.value","settings":{"foreground":"#ce9178"}},{"scope":"string.regexp","settings":{"foreground":"#d16969"}},{"name":"String interpolation","scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end","punctuation.section.embedded"],"settings":{"foreground":"#569cd6"}},{"name":"Reset JavaScript string interpolation expression","scope":["meta.template.expression"],"settings":{"foreground":"#d4d4d4"}},{"scope":["support.type.vendored.property-name","support.type.property-name","variable.css","variable.scss","variable.other.less","source.coffee.embedded"],"settings":{"foreground":"#9cdcfe"}},{"scope":"keyword","settings":{"foreground":"#569cd6"}},{"scope":"keyword.control","settings":{"foreground":"#569cd6"}},{"scope":"keyword.operator","settings":{"foreground":"#d4d4d4"}},{"scope":["keyword.operator.new","keyword.operator.expression","keyword.operator.cast","keyword.operator.sizeof","keyword.operator.alignof","keyword.operator.typeid","keyword.operator.alignas","keyword.operator.instanceof","keyword.operator.logical.python","keyword.operator.wordlike"],"settings":{"foreground":"#569cd6"}},{"scope":"keyword.other.unit","settings":{"foreground":"#b5cea8"}},{"scope":["punctuation.section.embedded.begin.php","punctuation.section.embedded.end.php"],"settings":{"foreground":"#569cd6"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#9cdcfe"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#b5cea8"}},{"name":"coloring of the Java import and package identifiers","scope":["storage.modifier.import.java","variable.language.wildcard.java","storage.modifier.package.java"],"settings":{"foreground":"#d4d4d4"}},{"name":"this.self","scope":"variable.language","settings":{"foreground":"#569cd6"}}],"semanticHighlighting":true,"semanticTokenColors":{"newOperator":"#d4d4d4","stringLiteral":"#ce9178","customLiteral":"#D4D4D4","numberLiteral":"#b5cea8"}}
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Dark High Contrast","colors":{"editor.background":"#000000","editor.foreground":"#FFFFFF","editorIndentGuide.background1":"#FFFFFF","editorIndentGuide.activeBackground1":"#FFFFFF","sideBarTitle.foreground":"#FFFFFF","selection.background":"#008000","editor.selectionBackground":"#FFFFFF","statusBarItem.remoteBackground":"#00000000","ports.iconRunningProcessForeground":"#FFFFFF","editorWhitespace.foreground":"#7c7c7c","actionBar.toggledBackground":"#383a49"},"tokenColors":[{"scope":["meta.embedded","source.groovy.embedded","string meta.image.inline.markdown","variable.legacy.builtin.python"],"settings":{"foreground":"#FFFFFF"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"meta.diff.header","settings":{"foreground":"#000080"}},{"scope":"comment","settings":{"foreground":"#7ca668"}},{"scope":"constant.language","settings":{"foreground":"#569cd6"}},{"scope":["constant.numeric","constant.other.color.rgb-value","constant.other.rgb-value","support.constant.color"],"settings":{"foreground":"#b5cea8"}},{"scope":"constant.regexp","settings":{"foreground":"#b46695"}},{"scope":"constant.character","settings":{"foreground":"#569cd6"}},{"scope":"entity.name.tag","settings":{"foreground":"#569cd6"}},{"scope":"entity.name.tag.css","settings":{"foreground":"#d7ba7d"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#9cdcfe"}},{"scope":["entity.other.attribute-name.class.css","entity.other.attribute-name.class.mixin.css","entity.other.attribute-name.id.css","entity.other.attribute-name.parent-selector.css","entity.other.attribute-name.pseudo-class.css","entity.other.attribute-name.pseudo-element.css","source.css.less entity.other.attribute-name.id","entity.other.attribute-name.scss"],"settings":{"foreground":"#d7ba7d"}},{"scope":"invalid","settings":{"foreground":"#f44747"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"markup.bold","settings":{"fontStyle":"bold"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#6796e6"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.strikethrough","settings":{"fontStyle":"strikethrough"}},{"scope":"markup.inserted","settings":{"foreground":"#b5cea8"}},{"scope":"markup.deleted","settings":{"foreground":"#ce9178"}},{"scope":"markup.changed","settings":{"foreground":"#569cd6"}},{"name":"brackets of XML/HTML tags","scope":["punctuation.definition.tag"],"settings":{"foreground":"#808080"}},{"scope":"meta.preprocessor","settings":{"foreground":"#569cd6"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#ce9178"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#b5cea8"}},{"scope":"meta.structure.dictionary.key.python","settings":{"foreground":"#9cdcfe"}},{"scope":"storage","settings":{"foreground":"#569cd6"}},{"scope":"storage.type","settings":{"foreground":"#569cd6"}},{"scope":"storage.modifier","settings":{"foreground":"#569cd6"}},{"scope":"string","settings":{"foreground":"#ce9178"}},{"scope":"string.tag","settings":{"foreground":"#ce9178"}},{"scope":"string.value","settings":{"foreground":"#ce9178"}},{"scope":"string.regexp","settings":{"foreground":"#d16969"}},{"name":"String interpolation","scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end","punctuation.section.embedded"],"settings":{"foreground":"#569cd6"}},{"name":"Reset JavaScript string interpolation expression","scope":["meta.template.expression"],"settings":{"foreground":"#ffffff"}},{"scope":["support.type.vendored.property-name","support.type.property-name","variable.css","variable.scss","variable.other.less","source.coffee.embedded"],"settings":{"foreground":"#d4d4d4"}},{"scope":"keyword","settings":{"foreground":"#569cd6"}},{"scope":"keyword.control","settings":{"foreground":"#569cd6"}},{"scope":"keyword.operator","settings":{"foreground":"#d4d4d4"}},{"scope":["keyword.operator.new","keyword.operator.expression","keyword.operator.cast","keyword.operator.sizeof","keyword.operator.logical.python"],"settings":{"foreground":"#569cd6"}},{"scope":"keyword.other.unit","settings":{"foreground":"#b5cea8"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#d4d4d4"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#b5cea8"}},{"name":"coloring of the Java import and package identifiers","scope":["storage.modifier.import.java","variable.language.wildcard.java","storage.modifier.package.java"],"settings":{"foreground":"#d4d4d4"}},{"name":"coloring of the TS this","scope":"variable.language.this","settings":{"foreground":"#569cd6"}},{"name":"Function declarations","scope":["entity.name.function","support.function","support.constant.handlebars","source.powershell variable.other.member"],"settings":{"foreground":"#DCDCAA"}},{"name":"Types declaration and references","scope":["support.class","support.type","entity.name.type","entity.name.namespace","entity.name.scope-resolution","entity.name.class","storage.type.cs","storage.type.generic.cs","storage.type.modifier.cs","storage.type.variable.cs","storage.type.annotation.java","storage.type.generic.java","storage.type.java","storage.type.object.array.java","storage.type.primitive.array.java","storage.type.primitive.java","storage.type.token.java","storage.type.groovy","storage.type.annotation.groovy","storage.type.parameters.groovy","storage.type.generic.groovy","storage.type.object.array.groovy","storage.type.primitive.array.groovy","storage.type.primitive.groovy"],"settings":{"foreground":"#4EC9B0"}},{"name":"Types declaration and references, TS grammar specific","scope":["meta.type.cast.expr","meta.type.new.expr","support.constant.math","support.constant.dom","support.constant.json","entity.other.inherited-class"],"settings":{"foreground":"#4EC9B0"}},{"name":"Control flow / Special keywords","scope":["keyword.control","source.cpp keyword.operator.new","source.cpp keyword.operator.delete","keyword.other.using","keyword.other.directive.using","keyword.other.operator"],"settings":{"foreground":"#C586C0"}},{"name":"Variable and parameter name","scope":["variable","meta.definition.variable.name","support.variable"],"settings":{"foreground":"#9CDCFE"}},{"name":"Object keys, TS grammar specific","scope":["meta.object-literal.key"],"settings":{"foreground":"#9CDCFE"}},{"name":"CSS property value","scope":["support.constant.property-value","support.constant.font-name","support.constant.media-type","support.constant.media","constant.other.color.rgb-value","constant.other.rgb-value","support.constant.color"],"settings":{"foreground":"#CE9178"}},{"name":"HC Search Editor context line override","scope":"meta.resultLinePrefix.contextLinePrefix.search","settings":{"foreground":"#CBEDCB"}}],"semanticHighlighting":true,"semanticTokenColors":{"newOperator":"#FFFFFF","stringLiteral":"#ce9178","customLiteral":"#DCDCAA","numberLiteral":"#b5cea8"}}
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Light High Contrast","tokenColors":[{"scope":["meta.embedded","source.groovy.embedded","variable.legacy.builtin.python"],"settings":{"foreground":"#292929"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"meta.diff.header","settings":{"foreground":"#062F4A"}},{"scope":"comment","settings":{"foreground":"#515151"}},{"scope":"constant.language","settings":{"foreground":"#0F4A85"}},{"scope":["constant.numeric","variable.other.enummember","keyword.operator.plus.exponent","keyword.operator.minus.exponent"],"settings":{"foreground":"#096d48"}},{"scope":"constant.regexp","settings":{"foreground":"#811F3F"}},{"scope":"entity.name.tag","settings":{"foreground":"#0F4A85"}},{"scope":"entity.name.selector","settings":{"foreground":"#0F4A85"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#264F78"}},{"scope":["entity.other.attribute-name.class.css","entity.other.attribute-name.class.mixin.css","entity.other.attribute-name.id.css","entity.other.attribute-name.parent-selector.css","entity.other.attribute-name.pseudo-class.css","entity.other.attribute-name.pseudo-element.css","source.css.less entity.other.attribute-name.id","entity.other.attribute-name.scss"],"settings":{"foreground":"#0F4A85"}},{"scope":"invalid","settings":{"foreground":"#B5200D"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"markup.bold","settings":{"foreground":"#000080","fontStyle":"bold"}},{"scope":"markup.heading","settings":{"foreground":"#0F4A85","fontStyle":"bold"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.strikethrough","settings":{"fontStyle":"strikethrough"}},{"scope":"markup.inserted","settings":{"foreground":"#096d48"}},{"scope":"markup.deleted","settings":{"foreground":"#5A5A5A"}},{"scope":"markup.changed","settings":{"foreground":"#0451A5"}},{"scope":["punctuation.definition.quote.begin.markdown","punctuation.definition.list.begin.markdown"],"settings":{"foreground":"#0451A5"}},{"scope":"markup.inline.raw","settings":{"foreground":"#0F4A85"}},{"scope":"punctuation.definition.tag","settings":{"foreground":"#0F4A85"}},{"scope":["meta.preprocessor","entity.name.function.preprocessor"],"settings":{"foreground":"#0F4A85"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#b5200d"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#096d48"}},{"scope":"meta.structure.dictionary.key.python","settings":{"foreground":"#0451A5"}},{"scope":"storage","settings":{"foreground":"#0F4A85"}},{"scope":"storage.type","settings":{"foreground":"#0F4A85"}},{"scope":["storage.modifier","keyword.operator.noexcept"],"settings":{"foreground":"#0F4A85"}},{"scope":["string","meta.embedded.assembly"],"settings":{"foreground":"#0F4A85"}},{"scope":["string.comment.buffered.block.pug","string.quoted.pug","string.interpolated.pug","string.unquoted.plain.in.yaml","string.unquoted.plain.out.yaml","string.unquoted.block.yaml","string.quoted.single.yaml","string.quoted.double.xml","string.quoted.single.xml","string.unquoted.cdata.xml","string.quoted.double.html","string.quoted.single.html","string.unquoted.html","string.quoted.single.handlebars","string.quoted.double.handlebars"],"settings":{"foreground":"#0F4A85"}},{"scope":"string.regexp","settings":{"foreground":"#811F3F"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end","punctuation.section.embedded"],"settings":{"foreground":"#0F4A85"}},{"scope":["meta.template.expression"],"settings":{"foreground":"#000000"}},{"scope":["support.constant.property-value","support.constant.font-name","support.constant.media-type","support.constant.media","constant.other.color.rgb-value","constant.other.rgb-value","support.constant.color"],"settings":{"foreground":"#0451A5"}},{"scope":["support.type.vendored.property-name","support.type.property-name","variable.css","variable.scss","variable.other.less","source.coffee.embedded"],"settings":{"foreground":"#264F78"}},{"scope":["support.type.property-name.json"],"settings":{"foreground":"#0451A5"}},{"scope":"keyword","settings":{"foreground":"#0F4A85"}},{"scope":"keyword.control","settings":{"foreground":"#0F4A85"}},{"scope":"keyword.operator","settings":{"foreground":"#000000"}},{"scope":["keyword.operator.new","keyword.operator.expression","keyword.operator.cast","keyword.operator.sizeof","keyword.operator.alignof","keyword.operator.typeid","keyword.operator.alignas","keyword.operator.instanceof","keyword.operator.logical.python","keyword.operator.wordlike"],"settings":{"foreground":"#0F4A85"}},{"scope":"keyword.other.unit","settings":{"foreground":"#096d48"}},{"scope":["punctuation.section.embedded.begin.php","punctuation.section.embedded.end.php"],"settings":{"foreground":"#0F4A85"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#0451A5"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#096d48"}},{"scope":["storage.modifier.import.java","variable.language.wildcard.java","storage.modifier.package.java"],"settings":{"foreground":"#000000"}},{"scope":"variable.language","settings":{"foreground":"#0F4A85"}},{"scope":["entity.name.function","support.function","support.constant.handlebars","source.powershell variable.other.member","entity.name.operator.custom-literal"],"settings":{"foreground":"#5e2cbc"}},{"scope":["support.class","support.type","entity.name.type","entity.name.namespace","entity.other.attribute","entity.name.scope-resolution","entity.name.class","storage.type.numeric.go","storage.type.byte.go","storage.type.boolean.go","storage.type.string.go","storage.type.uintptr.go","storage.type.error.go","storage.type.rune.go","storage.type.cs","storage.type.generic.cs","storage.type.modifier.cs","storage.type.variable.cs","storage.type.annotation.java","storage.type.generic.java","storage.type.java","storage.type.object.array.java","storage.type.primitive.array.java","storage.type.primitive.java","storage.type.token.java","storage.type.groovy","storage.type.annotation.groovy","storage.type.parameters.groovy","storage.type.generic.groovy","storage.type.object.array.groovy","storage.type.primitive.array.groovy","storage.type.primitive.groovy"],"settings":{"foreground":"#185E73"}},{"scope":["meta.type.cast.expr","meta.type.new.expr","support.constant.math","support.constant.dom","support.constant.json","entity.other.inherited-class"],"settings":{"foreground":"#185E73"}},{"scope":["keyword.control","source.cpp keyword.operator.new","source.cpp keyword.operator.delete","keyword.other.using","keyword.other.directive.using","keyword.other.operator","entity.name.operator"],"settings":{"foreground":"#b5200d"}},{"scope":["variable","meta.definition.variable.name","support.variable","entity.name.variable","constant.other.placeholder"],"settings":{"foreground":"#001080"}},{"scope":["variable.other.constant","variable.other.enummember"],"settings":{"foreground":"#02715D"}},{"scope":["meta.object-literal.key"],"settings":{"foreground":"#001080"}},{"scope":["support.constant.property-value","support.constant.font-name","support.constant.media-type","support.constant.media","constant.other.color.rgb-value","constant.other.rgb-value","support.constant.color"],"settings":{"foreground":"#0451A5"}},{"scope":["punctuation.definition.group.regexp","punctuation.definition.group.assertion.regexp","punctuation.definition.character-class.regexp","punctuation.character.set.begin.regexp","punctuation.character.set.end.regexp","keyword.operator.negation.regexp","support.other.parenthesis.regexp"],"settings":{"foreground":"#D16969"}},{"scope":["constant.character.character-class.regexp","constant.other.character-class.set.regexp","constant.other.character-class.regexp","constant.character.set.regexp"],"settings":{"foreground":"#811F3F"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#000000"}},{"scope":["keyword.operator.or.regexp","keyword.control.anchor.regexp"],"settings":{"foreground":"#EE0000"}},{"scope":"constant.character","settings":{"foreground":"#0F4A85"}},{"scope":"constant.character.escape","settings":{"foreground":"#EE0000"}},{"scope":"entity.name.label","settings":{"foreground":"#000000"}},{"scope":"token.info-token","settings":{"foreground":"#316BCD"}},{"scope":"token.warn-token","settings":{"foreground":"#CD9731"}},{"scope":"token.error-token","settings":{"foreground":"#CD3131"}},{"scope":"token.debug-token","settings":{"foreground":"#800080"}}],"colors":{"actionBar.toggledBackground":"#dddddd"}}
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Default Light Modern","include":"./light_plus.json","colors":{"activityBar.activeBorder":"#005FB8","activityBar.background":"#F8F8F8","activityBar.border":"#E5E5E5","activityBar.foreground":"#1F1F1F","activityBar.inactiveForeground":"#616161","activityBarBadge.background":"#005FB8","activityBarBadge.foreground":"#FFFFFF","badge.background":"#CCCCCC","badge.foreground":"#3B3B3B","button.background":"#005FB8","button.border":"#0000001a","button.foreground":"#FFFFFF","button.hoverBackground":"#0258A8","button.secondaryBackground":"#E5E5E5","button.secondaryForeground":"#3B3B3B","button.secondaryHoverBackground":"#CCCCCC","chat.slashCommandBackground":"#D2ECFF","chat.slashCommandForeground":"#306CA2","checkbox.background":"#F8F8F8","checkbox.border":"#CECECE","descriptionForeground":"#3B3B3B","dropdown.background":"#FFFFFF","dropdown.border":"#CECECE","dropdown.foreground":"#3B3B3B","dropdown.listBackground":"#FFFFFF","editor.background":"#FFFFFF","editor.foreground":"#3B3B3B","editor.inactiveSelectionBackground":"#E5EBF1","editor.selectionHighlightBackground":"#ADD6FF80","editorGroup.border":"#E5E5E5","editorGroupHeader.tabsBackground":"#F8F8F8","editorGroupHeader.tabsBorder":"#E5E5E5","editorGutter.addedBackground":"#2EA043","editorGutter.deletedBackground":"#F85149","editorGutter.modifiedBackground":"#005FB8","editorIndentGuide.background1":"#D3D3D3","editorLineNumber.activeForeground":"#171184","editorLineNumber.foreground":"#6E7681","editorOverviewRuler.border":"#E5E5E5","editorSuggestWidget.background":"#F8F8F8","editorWidget.background":"#F8F8F8","errorForeground":"#F85149","focusBorder":"#005FB8","foreground":"#3B3B3B","icon.foreground":"#3B3B3B","input.background":"#FFFFFF","input.border":"#CECECE","input.foreground":"#3B3B3B","input.placeholderForeground":"#868686","inputOption.activeBackground":"#BED6ED","inputOption.activeBorder":"#005FB8","inputOption.activeForeground":"#000000","keybindingLabel.foreground":"#3B3B3B","list.activeSelectionBackground":"#E8E8E8","list.activeSelectionForeground":"#000000","list.activeSelectionIconForeground":"#000000","list.hoverBackground":"#F2F2F2","list.focusAndSelectionOutline":"#005FB8","menu.border":"#CECECE","notebook.cellBorderColor":"#E5E5E5","notebook.selectedCellBackground":"#C8DDF150","notificationCenterHeader.background":"#FFFFFF","notificationCenterHeader.foreground":"#3B3B3B","notifications.background":"#FFFFFF","notifications.border":"#E5E5E5","notifications.foreground":"#3B3B3B","panel.background":"#F8F8F8","panel.border":"#E5E5E5","panelInput.border":"#E5E5E5","panelTitle.activeBorder":"#005FB8","panelTitle.activeForeground":"#3B3B3B","panelTitle.inactiveForeground":"#3B3B3B","peekViewEditor.matchHighlightBackground":"#BB800966","peekViewResult.background":"#FFFFFF","peekViewResult.matchHighlightBackground":"#BB800966","pickerGroup.border":"#E5E5E5","pickerGroup.foreground":"#8B949E","ports.iconRunningProcessForeground":"#369432","progressBar.background":"#005FB8","quickInput.background":"#F8F8F8","quickInput.foreground":"#3B3B3B","searchEditor.textInputBorder":"#CECECE","settings.dropdownBackground":"#FFFFFF","settings.dropdownBorder":"#CECECE","settings.headerForeground":"#1F1F1F","settings.modifiedItemIndicator":"#BB800966","settings.numberInputBorder":"#CECECE","settings.textInputBorder":"#CECECE","sideBar.background":"#F8F8F8","sideBar.border":"#E5E5E5","sideBar.foreground":"#3B3B3B","sideBarSectionHeader.background":"#F8F8F8","sideBarSectionHeader.border":"#E5E5E5","sideBarSectionHeader.foreground":"#3B3B3B","sideBarTitle.foreground":"#3B3B3B","statusBar.background":"#F8F8F8","statusBar.foreground":"#3B3B3B","statusBar.border":"#E5E5E5","statusBar.debuggingBackground":"#FD716C","statusBar.debuggingForeground":"#000000","statusBar.focusBorder":"#005FB8","statusBar.noFolderBackground":"#F8F8F8","statusBarItem.errorBackground":"#C72E0F","statusBarItem.focusBorder":"#005FB8","statusBarItem.prominentBackground":"#6E768166","statusBarItem.remoteBackground":"#005FB8","statusBarItem.remoteForeground":"#FFFFFF","tab.activeBackground":"#FFFFFF","tab.activeBorder":"#F8F8F8","tab.activeBorderTop":"#005FB8","tab.activeForeground":"#3B3B3B","tab.border":"#E5E5E5","tab.hoverBackground":"#FFFFFF","tab.inactiveBackground":"#F8F8F8","tab.inactiveForeground":"#868686","tab.lastPinnedBorder":"#D4D4D4","tab.unfocusedActiveBorder":"#F8F8F8","tab.unfocusedActiveBorderTop":"#E5E5E5","tab.unfocusedHoverBackground":"#F8F8F8","terminalCursor.foreground":"#005FB8","terminal.foreground":"#3B3B3B","terminal.inactiveSelectionBackground":"#E5EBF1","terminal.tab.activeBorder":"#005FB8","textBlockQuote.background":"#F8F8F8","textBlockQuote.border":"#E5E5E5","textCodeBlock.background":"#F8F8F8","textLink.activeForeground":"#005FB8","textLink.foreground":"#005FB8","textPreformat.foreground":"#3B3B3B","textPreformat.background":"#0000001F","textSeparator.foreground":"#21262D","titleBar.activeBackground":"#F8F8F8","titleBar.activeForeground":"#1E1E1E","titleBar.border":"#E5E5E5","titleBar.inactiveBackground":"#F8F8F8","titleBar.inactiveForeground":"#8B949E","welcomePage.tileBackground":"#F3F3F3","widget.border":"#E5E5E5"}}
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Light+","include":"./light_vs.json","tokenColors":[{"name":"Function declarations","scope":["entity.name.function","support.function","support.constant.handlebars","source.powershell variable.other.member","entity.name.operator.custom-literal"],"settings":{"foreground":"#795E26"}},{"name":"Types declaration and references","scope":["support.class","support.type","entity.name.type","entity.name.namespace","entity.other.attribute","entity.name.scope-resolution","entity.name.class","storage.type.numeric.go","storage.type.byte.go","storage.type.boolean.go","storage.type.string.go","storage.type.uintptr.go","storage.type.error.go","storage.type.rune.go","storage.type.cs","storage.type.generic.cs","storage.type.modifier.cs","storage.type.variable.cs","storage.type.annotation.java","storage.type.generic.java","storage.type.java","storage.type.object.array.java","storage.type.primitive.array.java","storage.type.primitive.java","storage.type.token.java","storage.type.groovy","storage.type.annotation.groovy","storage.type.parameters.groovy","storage.type.generic.groovy","storage.type.object.array.groovy","storage.type.primitive.array.groovy","storage.type.primitive.groovy"],"settings":{"foreground":"#267f99"}},{"name":"Types declaration and references, TS grammar specific","scope":["meta.type.cast.expr","meta.type.new.expr","support.constant.math","support.constant.dom","support.constant.json","entity.other.inherited-class"],"settings":{"foreground":"#267f99"}},{"name":"Control flow / Special keywords","scope":["keyword.control","source.cpp keyword.operator.new","source.cpp keyword.operator.delete","keyword.other.using","keyword.other.directive.using","keyword.other.operator","entity.name.operator"],"settings":{"foreground":"#AF00DB"}},{"name":"Variable and parameter name","scope":["variable","meta.definition.variable.name","support.variable","entity.name.variable","constant.other.placeholder"],"settings":{"foreground":"#001080"}},{"name":"Constants and enums","scope":["variable.other.constant","variable.other.enummember"],"settings":{"foreground":"#0070C1"}},{"name":"Object keys, TS grammar specific","scope":["meta.object-literal.key"],"settings":{"foreground":"#001080"}},{"name":"CSS property value","scope":["support.constant.property-value","support.constant.font-name","support.constant.media-type","support.constant.media","constant.other.color.rgb-value","constant.other.rgb-value","support.constant.color"],"settings":{"foreground":"#0451a5"}},{"name":"Regular expression groups","scope":["punctuation.definition.group.regexp","punctuation.definition.group.assertion.regexp","punctuation.definition.character-class.regexp","punctuation.character.set.begin.regexp","punctuation.character.set.end.regexp","keyword.operator.negation.regexp","support.other.parenthesis.regexp"],"settings":{"foreground":"#d16969"}},{"scope":["constant.character.character-class.regexp","constant.other.character-class.set.regexp","constant.other.character-class.regexp","constant.character.set.regexp"],"settings":{"foreground":"#811f3f"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#000000"}},{"scope":["keyword.operator.or.regexp","keyword.control.anchor.regexp"],"settings":{"foreground":"#EE0000"}},{"scope":["constant.character","constant.other.option"],"settings":{"foreground":"#0000ff"}},{"scope":"constant.character.escape","settings":{"foreground":"#EE0000"}},{"scope":"entity.name.label","settings":{"foreground":"#000000"}}],"semanticHighlighting":true,"semanticTokenColors":{"newOperator":"#AF00DB","stringLiteral":"#a31515","customLiteral":"#795E26","numberLiteral":"#098658"}}
@@ -0,0 +1 @@
1
+ {"$schema":"vscode://schemas/color-theme","name":"Light (Visual Studio)","colors":{"checkbox.border":"#919191","editor.background":"#FFFFFF","editor.foreground":"#000000","editor.inactiveSelectionBackground":"#E5EBF1","editorIndentGuide.background1":"#D3D3D3","editorIndentGuide.activeBackground1":"#939393","editor.selectionHighlightBackground":"#ADD6FF80","editorSuggestWidget.background":"#F3F3F3","activityBarBadge.background":"#007ACC","sideBarTitle.foreground":"#6F6F6F","list.hoverBackground":"#E8E8E8","menu.border":"#D4D4D4","input.placeholderForeground":"#767676","searchEditor.textInputBorder":"#CECECE","settings.textInputBorder":"#CECECE","settings.numberInputBorder":"#CECECE","statusBarItem.remoteForeground":"#FFF","statusBarItem.remoteBackground":"#16825D","ports.iconRunningProcessForeground":"#369432","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.border":"#61616130","tab.lastPinnedBorder":"#61616130","notebook.cellBorderColor":"#E8E8E8","notebook.selectedCellBackground":"#c8ddf150","statusBarItem.errorBackground":"#c72e0f","list.activeSelectionIconForeground":"#FFF","list.focusAndSelectionOutline":"#90C2F9","terminal.inactiveSelectionBackground":"#E5EBF1","widget.border":"#d4d4d4","actionBar.toggledBackground":"#dddddd"},"tokenColors":[{"scope":["meta.embedded","source.groovy.embedded","string meta.image.inline.markdown","variable.legacy.builtin.python"],"settings":{"foreground":"#000000ff"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"meta.diff.header","settings":{"foreground":"#000080"}},{"scope":"comment","settings":{"foreground":"#008000"}},{"scope":"constant.language","settings":{"foreground":"#0000ff"}},{"scope":["constant.numeric","variable.other.enummember","keyword.operator.plus.exponent","keyword.operator.minus.exponent"],"settings":{"foreground":"#098658"}},{"scope":"constant.regexp","settings":{"foreground":"#811f3f"}},{"name":"css tags in selectors, xml tags","scope":"entity.name.tag","settings":{"foreground":"#800000"}},{"scope":"entity.name.selector","settings":{"foreground":"#800000"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#e50000"}},{"scope":["entity.other.attribute-name.class.css","entity.other.attribute-name.class.mixin.css","entity.other.attribute-name.id.css","entity.other.attribute-name.parent-selector.css","entity.other.attribute-name.pseudo-class.css","entity.other.attribute-name.pseudo-element.css","source.css.less entity.other.attribute-name.id","entity.other.attribute-name.scss"],"settings":{"foreground":"#800000"}},{"scope":"invalid","settings":{"foreground":"#cd3131"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#000080"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#800000"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.strikethrough","settings":{"fontStyle":"strikethrough"}},{"scope":"markup.inserted","settings":{"foreground":"#098658"}},{"scope":"markup.deleted","settings":{"foreground":"#a31515"}},{"scope":"markup.changed","settings":{"foreground":"#0451a5"}},{"scope":["punctuation.definition.quote.begin.markdown","punctuation.definition.list.begin.markdown"],"settings":{"foreground":"#0451a5"}},{"scope":"markup.inline.raw","settings":{"foreground":"#800000"}},{"name":"brackets of XML/HTML tags","scope":"punctuation.definition.tag","settings":{"foreground":"#800000"}},{"scope":["meta.preprocessor","entity.name.function.preprocessor"],"settings":{"foreground":"#0000ff"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#a31515"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#098658"}},{"scope":"meta.structure.dictionary.key.python","settings":{"foreground":"#0451a5"}},{"scope":"storage","settings":{"foreground":"#0000ff"}},{"scope":"storage.type","settings":{"foreground":"#0000ff"}},{"scope":["storage.modifier","keyword.operator.noexcept"],"settings":{"foreground":"#0000ff"}},{"scope":["string","meta.embedded.assembly"],"settings":{"foreground":"#a31515"}},{"scope":["string.comment.buffered.block.pug","string.quoted.pug","string.interpolated.pug","string.unquoted.plain.in.yaml","string.unquoted.plain.out.yaml","string.unquoted.block.yaml","string.quoted.single.yaml","string.quoted.double.xml","string.quoted.single.xml","string.unquoted.cdata.xml","string.quoted.double.html","string.quoted.single.html","string.unquoted.html","string.quoted.single.handlebars","string.quoted.double.handlebars"],"settings":{"foreground":"#0000ff"}},{"scope":"string.regexp","settings":{"foreground":"#811f3f"}},{"name":"String interpolation","scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end","punctuation.section.embedded"],"settings":{"foreground":"#0000ff"}},{"name":"Reset JavaScript string interpolation expression","scope":["meta.template.expression"],"settings":{"foreground":"#000000"}},{"scope":["support.constant.property-value","support.constant.font-name","support.constant.media-type","support.constant.media","constant.other.color.rgb-value","constant.other.rgb-value","support.constant.color"],"settings":{"foreground":"#0451a5"}},{"scope":["support.type.vendored.property-name","support.type.property-name","variable.css","variable.scss","variable.other.less","source.coffee.embedded"],"settings":{"foreground":"#e50000"}},{"scope":["support.type.property-name.json"],"settings":{"foreground":"#0451a5"}},{"scope":"keyword","settings":{"foreground":"#0000ff"}},{"scope":"keyword.control","settings":{"foreground":"#0000ff"}},{"scope":"keyword.operator","settings":{"foreground":"#000000"}},{"scope":["keyword.operator.new","keyword.operator.expression","keyword.operator.cast","keyword.operator.sizeof","keyword.operator.alignof","keyword.operator.typeid","keyword.operator.alignas","keyword.operator.instanceof","keyword.operator.logical.python","keyword.operator.wordlike"],"settings":{"foreground":"#0000ff"}},{"scope":"keyword.other.unit","settings":{"foreground":"#098658"}},{"scope":["punctuation.section.embedded.begin.php","punctuation.section.embedded.end.php"],"settings":{"foreground":"#800000"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#0451a5"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#098658"}},{"name":"coloring of the Java import and package identifiers","scope":["storage.modifier.import.java","variable.language.wildcard.java","storage.modifier.package.java"],"settings":{"foreground":"#000000"}},{"name":"this.self","scope":"variable.language","settings":{"foreground":"#0000ff"}}],"semanticHighlighting":true,"semanticTokenColors":{"newOperator":"#0000ff","stringLiteral":"#a31515","customLiteral":"#000000","numberLiteral":"#098658"}}
@@ -0,0 +1 @@
1
+ {"name":"theme-defaults","displayName":"%displayName%","description":"%description%","categories":["Themes"],"version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"id":"Default Dark+","label":"%darkPlusColorThemeLabel%","uiTheme":"vs-dark","path":"./themes/dark_plus.json"},{"id":"Default Dark Modern","label":"%darkModernThemeLabel%","uiTheme":"vs-dark","path":"./themes/dark_modern.json"},{"id":"Default Light+","label":"%lightPlusColorThemeLabel%","uiTheme":"vs","path":"./themes/light_plus.json"},{"id":"Default Light Modern","label":"%lightModernThemeLabel%","uiTheme":"vs","path":"./themes/light_modern.json"},{"id":"Visual Studio Dark","label":"%darkColorThemeLabel%","uiTheme":"vs-dark","path":"./themes/dark_vs.json"},{"id":"Visual Studio Light","label":"%lightColorThemeLabel%","uiTheme":"vs","path":"./themes/light_vs.json"},{"id":"Default High Contrast","label":"%hcColorThemeLabel%","uiTheme":"hc-black","path":"./themes/hc_black.json"},{"id":"Default High Contrast Light","label":"%lightHcColorThemeLabel%","uiTheme":"hc-light","path":"./themes/hc_light.json"}],"iconThemes":[{"id":"vs-minimal","label":"%minimalIconThemeLabel%","path":"./fileicons/vs_minimal-icon-theme.json"}]},"repository":{"type":"git","url":"https://github.com/microsoft/vscode.git"}}
@@ -0,0 +1 @@
1
+ {"displayName":"Default Themes","description":"The default Visual Studio light and dark themes","darkPlusColorThemeLabel":"Dark+","darkModernThemeLabel":"Dark Modern","lightPlusColorThemeLabel":"Light+","lightModernThemeLabel":"Light Modern","darkColorThemeLabel":"Dark (Visual Studio)","lightColorThemeLabel":"Light (Visual Studio)","hcColorThemeLabel":"Dark High Contrast","lightHcColorThemeLabel":"Light High Contrast","minimalIconThemeLabel":"Minimal (Visual Studio Code)"}
@@ -0,0 +1 @@
1
+ {"iconDefinitions":{"_root_folder_dark":{"iconPath":"./images/root-folder-dark.svg"},"_root_folder_open_dark":{"iconPath":"./images/root-folder-open-dark.svg"},"_folder_dark":{"iconPath":"./images/folder-dark.svg"},"_folder_open_dark":{"iconPath":"./images/folder-open-dark.svg"},"_file_dark":{"iconPath":"./images/document-dark.svg"},"_root_folder":{"iconPath":"./images/root-folder-light.svg"},"_root_folder_open":{"iconPath":"./images/root-folder-open-light.svg"},"_folder_light":{"iconPath":"./images/folder-light.svg"},"_folder_open_light":{"iconPath":"./images/folder-open-light.svg"},"_file_light":{"iconPath":"./images/document-light.svg"}},"folderExpanded":"_folder_open_dark","folder":"_folder_dark","file":"_file_dark","rootFolderExpanded":"_root_folder_open_dark","rootFolder":"_root_folder_dark","fileExtensions":{},"fileNames":{},"languageIds":{},"light":{"folderExpanded":"_folder_open_light","folder":"_folder_light","rootFolderExpanded":"_root_folder_open","rootFolder":"_root_folder","file":"_file_light","fileExtensions":{},"fileNames":{},"languageIds":{}},"highContrast":{}}
package/dark_modern.json DELETED
@@ -1,128 +0,0 @@
1
- {
2
- "$schema": "vscode://schemas/color-theme",
3
- "name": "Default Dark Modern",
4
- "include": "./dark_plus.json",
5
- "colors": {
6
- "activityBar.activeBorder": "#0078D4",
7
- "activityBar.background": "#181818",
8
- "activityBar.border": "#2B2B2B",
9
- "activityBar.foreground": "#D7D7D7",
10
- "activityBar.inactiveForeground": "#868686",
11
- "activityBarBadge.background": "#0078D4",
12
- "activityBarBadge.foreground": "#FFFFFF",
13
- "badge.background": "#616161",
14
- "badge.foreground": "#F8F8F8",
15
- "button.background": "#0078D4",
16
- "button.border": "#FFFFFF12",
17
- "button.foreground": "#FFFFFF",
18
- "button.hoverBackground": "#026EC1",
19
- "button.secondaryBackground": "#313131",
20
- "button.secondaryForeground": "#CCCCCC",
21
- "button.secondaryHoverBackground": "#3C3C3C",
22
- "chat.slashCommandBackground": "#34414B",
23
- "chat.slashCommandForeground": "#40A6FF",
24
- "checkbox.background": "#313131",
25
- "checkbox.border": "#3C3C3C",
26
- "debugToolBar.background": "#181818",
27
- "descriptionForeground": "#9D9D9D",
28
- "dropdown.background": "#313131",
29
- "dropdown.border": "#3C3C3C",
30
- "dropdown.foreground": "#CCCCCC",
31
- "dropdown.listBackground": "#1F1F1F",
32
- "editor.background": "#1F1F1F",
33
- "editor.findMatchBackground": "#9E6A03",
34
- "editor.foreground": "#CCCCCC",
35
- "editorGroup.border": "#FFFFFF17",
36
- "editorGroupHeader.tabsBackground": "#181818",
37
- "editorGroupHeader.tabsBorder": "#2B2B2B",
38
- "editorGutter.addedBackground": "#2EA043",
39
- "editorGutter.deletedBackground": "#F85149",
40
- "editorGutter.modifiedBackground": "#0078D4",
41
- "editorLineNumber.activeForeground": "#CCCCCC",
42
- "editorLineNumber.foreground": "#6E7681",
43
- "editorOverviewRuler.border": "#010409",
44
- "editorWidget.background": "#202020",
45
- "errorForeground": "#F85149",
46
- "focusBorder": "#0078D4",
47
- "foreground": "#CCCCCC",
48
- "icon.foreground": "#CCCCCC",
49
- "input.background": "#313131",
50
- "input.border": "#3C3C3C",
51
- "input.foreground": "#CCCCCC",
52
- "input.placeholderForeground": "#818181",
53
- "inputOption.activeBackground": "#2489DB82",
54
- "inputOption.activeBorder": "#2488DB",
55
- "keybindingLabel.foreground": "#CCCCCC",
56
- "menu.background": "#1F1F1F",
57
- "notificationCenterHeader.background": "#1F1F1F",
58
- "notificationCenterHeader.foreground": "#CCCCCC",
59
- "notifications.background": "#1F1F1F",
60
- "notifications.border": "#2B2B2B",
61
- "notifications.foreground": "#CCCCCC",
62
- "panel.background": "#181818",
63
- "panel.border": "#2B2B2B",
64
- "panelInput.border": "#2B2B2B",
65
- "panelTitle.activeBorder": "#0078D4",
66
- "panelTitle.activeForeground": "#CCCCCC",
67
- "panelTitle.inactiveForeground": "#9D9D9D",
68
- "peekViewEditor.background": "#1F1F1F",
69
- "peekViewEditor.matchHighlightBackground": "#BB800966",
70
- "peekViewResult.background": "#1F1F1F",
71
- "peekViewResult.matchHighlightBackground": "#BB800966",
72
- "pickerGroup.border": "#3C3C3C",
73
- "progressBar.background": "#0078D4",
74
- "quickInput.background": "#222222",
75
- "quickInput.foreground": "#CCCCCC",
76
- "settings.dropdownBackground": "#313131",
77
- "settings.dropdownBorder": "#3C3C3C",
78
- "settings.headerForeground": "#FFFFFF",
79
- "settings.modifiedItemIndicator": "#BB800966",
80
- "sideBar.background": "#181818",
81
- "sideBar.border": "#2B2B2B",
82
- "sideBar.foreground": "#CCCCCC",
83
- "sideBarSectionHeader.background": "#181818",
84
- "sideBarSectionHeader.border": "#2B2B2B",
85
- "sideBarSectionHeader.foreground": "#CCCCCC",
86
- "sideBarTitle.foreground": "#CCCCCC",
87
- "statusBar.background": "#181818",
88
- "statusBar.border": "#2B2B2B",
89
- "statusBar.debuggingBackground": "#0078D4",
90
- "statusBar.debuggingForeground": "#FFFFFF",
91
- "statusBar.focusBorder": "#0078D4",
92
- "statusBar.foreground": "#CCCCCC",
93
- "statusBar.noFolderBackground": "#1F1F1F",
94
- "statusBarItem.focusBorder": "#0078D4",
95
- "statusBarItem.prominentBackground": "#6E768166",
96
- "statusBarItem.remoteBackground": "#0078D4",
97
- "statusBarItem.remoteForeground": "#FFFFFF",
98
- "tab.activeBackground": "#1F1F1F",
99
- "tab.activeBorder": "#1F1F1F",
100
- "tab.activeBorderTop": "#0078D4",
101
- "tab.activeForeground": "#FFFFFF",
102
- "tab.border": "#2B2B2B",
103
- "tab.hoverBackground": "#1F1F1F",
104
- "tab.inactiveBackground": "#181818",
105
- "tab.inactiveForeground": "#9D9D9D",
106
- "tab.unfocusedActiveBorder": "#1F1F1F",
107
- "tab.unfocusedActiveBorderTop": "#2B2B2B",
108
- "tab.unfocusedHoverBackground": "#1F1F1F",
109
- "terminal.foreground": "#CCCCCC",
110
- "terminal.tab.activeBorder": "#0078D4",
111
- "textBlockQuote.background": "#2B2B2B",
112
- "textBlockQuote.border": "#616161",
113
- "textCodeBlock.background": "#2B2B2B",
114
- "textLink.activeForeground": "#4daafc",
115
- "textLink.foreground": "#4daafc",
116
- "textPreformat.foreground": "#D0D0D0",
117
- "textPreformat.background": "#3C3C3C",
118
- "textSeparator.foreground": "#21262D",
119
- "titleBar.activeBackground": "#181818",
120
- "titleBar.activeForeground": "#CCCCCC",
121
- "titleBar.border": "#2B2B2B",
122
- "titleBar.inactiveBackground": "#1F1F1F",
123
- "titleBar.inactiveForeground": "#9D9D9D",
124
- "welcomePage.tileBackground": "#2B2B2B",
125
- "welcomePage.progress.foreground": "#0078D4",
126
- "widget.border": "#313131",
127
- },
128
- }
package/dark_plus.json DELETED
@@ -1,204 +0,0 @@
1
- {
2
- "$schema": "vscode://schemas/color-theme",
3
- "name": "Dark+",
4
- "include": "./dark_vs.json",
5
- "tokenColors": [
6
- {
7
- "name": "Function declarations",
8
- "scope": [
9
- "entity.name.function",
10
- "support.function",
11
- "support.constant.handlebars",
12
- "source.powershell variable.other.member",
13
- "entity.name.operator.custom-literal" // See https://en.cppreference.com/w/cpp/language/user_literal
14
- ],
15
- "settings": {
16
- "foreground": "#DCDCAA"
17
- }
18
- },
19
- {
20
- "name": "Types declaration and references",
21
- "scope": [
22
- "support.class",
23
- "support.type",
24
- "entity.name.type",
25
- "entity.name.namespace",
26
- "entity.other.attribute",
27
- "entity.name.scope-resolution",
28
- "entity.name.class",
29
- "storage.type.numeric.go",
30
- "storage.type.byte.go",
31
- "storage.type.boolean.go",
32
- "storage.type.string.go",
33
- "storage.type.uintptr.go",
34
- "storage.type.error.go",
35
- "storage.type.rune.go",
36
- "storage.type.cs",
37
- "storage.type.generic.cs",
38
- "storage.type.modifier.cs",
39
- "storage.type.variable.cs",
40
- "storage.type.annotation.java",
41
- "storage.type.generic.java",
42
- "storage.type.java",
43
- "storage.type.object.array.java",
44
- "storage.type.primitive.array.java",
45
- "storage.type.primitive.java",
46
- "storage.type.token.java",
47
- "storage.type.groovy",
48
- "storage.type.annotation.groovy",
49
- "storage.type.parameters.groovy",
50
- "storage.type.generic.groovy",
51
- "storage.type.object.array.groovy",
52
- "storage.type.primitive.array.groovy",
53
- "storage.type.primitive.groovy"
54
- ],
55
- "settings": {
56
- "foreground": "#4EC9B0"
57
- }
58
- },
59
- {
60
- "name": "Types declaration and references, TS grammar specific",
61
- "scope": [
62
- "meta.type.cast.expr",
63
- "meta.type.new.expr",
64
- "support.constant.math",
65
- "support.constant.dom",
66
- "support.constant.json",
67
- "entity.other.inherited-class"
68
- ],
69
- "settings": {
70
- "foreground": "#4EC9B0"
71
- }
72
- },
73
- {
74
- "name": "Control flow / Special keywords",
75
- "scope": [
76
- "keyword.control",
77
- "source.cpp keyword.operator.new",
78
- "keyword.operator.delete",
79
- "keyword.other.using",
80
- "keyword.other.directive.using",
81
- "keyword.other.operator",
82
- "entity.name.operator"
83
- ],
84
- "settings": {
85
- "foreground": "#C586C0"
86
- }
87
- },
88
- {
89
- "name": "Variable and parameter name",
90
- "scope": [
91
- "variable",
92
- "meta.definition.variable.name",
93
- "support.variable",
94
- "entity.name.variable",
95
- "constant.other.placeholder", // placeholders in strings
96
- ],
97
- "settings": {
98
- "foreground": "#9CDCFE"
99
- }
100
- },
101
- {
102
- "name": "Constants and enums",
103
- "scope": [
104
- "variable.other.constant",
105
- "variable.other.enummember"
106
- ],
107
- "settings": {
108
- "foreground": "#4FC1FF",
109
- }
110
- },
111
- {
112
- "name": "Object keys, TS grammar specific",
113
- "scope": [
114
- "meta.object-literal.key"
115
- ],
116
- "settings": {
117
- "foreground": "#9CDCFE"
118
- }
119
- },
120
- {
121
- "name": "CSS property value",
122
- "scope": [
123
- "support.constant.property-value",
124
- "support.constant.font-name",
125
- "support.constant.media-type",
126
- "support.constant.media",
127
- "constant.other.color.rgb-value",
128
- "constant.other.rgb-value",
129
- "support.constant.color"
130
- ],
131
- "settings": {
132
- "foreground": "#CE9178"
133
- }
134
- },
135
- {
136
- "name": "Regular expression groups",
137
- "scope": [
138
- "punctuation.definition.group.regexp",
139
- "punctuation.definition.group.assertion.regexp",
140
- "punctuation.definition.character-class.regexp",
141
- "punctuation.character.set.begin.regexp",
142
- "punctuation.character.set.end.regexp",
143
- "keyword.operator.negation.regexp",
144
- "support.other.parenthesis.regexp"
145
- ],
146
- "settings": {
147
- "foreground": "#CE9178"
148
- }
149
- },
150
- {
151
- "scope": [
152
- "constant.character.character-class.regexp",
153
- "constant.other.character-class.set.regexp",
154
- "constant.other.character-class.regexp",
155
- "constant.character.set.regexp"
156
- ],
157
- "settings": {
158
- "foreground": "#d16969"
159
- }
160
- },
161
- {
162
- "scope": [
163
- "keyword.operator.or.regexp",
164
- "keyword.control.anchor.regexp"
165
- ],
166
- "settings": {
167
- "foreground": "#DCDCAA"
168
- }
169
- },
170
- {
171
- "scope": "keyword.operator.quantifier.regexp",
172
- "settings": {
173
- "foreground": "#d7ba7d"
174
- }
175
- },
176
- {
177
- "scope": [
178
- "constant.character",
179
- "constant.other.option"
180
- ],
181
- "settings": {
182
- "foreground": "#569cd6"
183
- }
184
- },
185
- {
186
- "scope": "constant.character.escape",
187
- "settings": {
188
- "foreground": "#d7ba7d"
189
- }
190
- },
191
- {
192
- "scope": "entity.name.label",
193
- "settings": {
194
- "foreground": "#C8C8C8"
195
- }
196
- }
197
- ],
198
- "semanticTokenColors": {
199
- "newOperator":"#C586C0",
200
- "stringLiteral":"#ce9178",
201
- "customLiteral": "#DCDCAA",
202
- "numberLiteral": "#b5cea8",
203
- }
204
- }