@pierre/diffs 1.1.0-beta.8 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -18
- package/dist/components/AdvancedVirtualizedFileDiff.js +2 -7
- package/dist/components/AdvancedVirtualizedFileDiff.js.map +1 -1
- package/dist/components/AdvancedVirtualizer.js +1 -1
- package/dist/components/AdvancedVirtualizer.js.map +1 -1
- package/dist/components/File.d.ts +17 -7
- package/dist/components/File.d.ts.map +1 -1
- package/dist/components/File.js +111 -54
- package/dist/components/File.js.map +1 -1
- package/dist/components/FileDiff.d.ts +32 -14
- package/dist/components/FileDiff.d.ts.map +1 -1
- package/dist/components/FileDiff.js +156 -81
- package/dist/components/FileDiff.js.map +1 -1
- package/dist/components/UnresolvedFile.d.ts +60 -0
- package/dist/components/UnresolvedFile.d.ts.map +1 -0
- package/dist/components/UnresolvedFile.js +280 -0
- package/dist/components/UnresolvedFile.js.map +1 -0
- package/dist/components/VirtualizedFile.js +8 -5
- package/dist/components/VirtualizedFile.js.map +1 -1
- package/dist/components/VirtualizedFileDiff.d.ts +1 -1
- package/dist/components/VirtualizedFileDiff.d.ts.map +1 -1
- package/dist/components/VirtualizedFileDiff.js +15 -11
- package/dist/components/VirtualizedFileDiff.js.map +1 -1
- package/dist/components/Virtualizer.d.ts +3 -1
- package/dist/components/Virtualizer.d.ts.map +1 -1
- package/dist/components/Virtualizer.js +50 -24
- package/dist/components/Virtualizer.js.map +1 -1
- package/dist/constants.d.ts +3 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +8 -1
- package/dist/constants.js.map +1 -1
- package/dist/highlighter/shared_highlighter.d.ts +4 -2
- package/dist/highlighter/shared_highlighter.d.ts.map +1 -1
- package/dist/highlighter/shared_highlighter.js +15 -7
- package/dist/highlighter/shared_highlighter.js.map +1 -1
- package/dist/index.d.ts +9 -7
- package/dist/index.js +8 -6
- package/dist/managers/InteractionManager.d.ts +146 -0
- package/dist/managers/InteractionManager.d.ts.map +1 -0
- package/dist/managers/InteractionManager.js +813 -0
- package/dist/managers/InteractionManager.js.map +1 -0
- package/dist/managers/ResizeManager.d.ts +0 -2
- package/dist/managers/ResizeManager.d.ts.map +1 -1
- package/dist/managers/ResizeManager.js +43 -32
- package/dist/managers/ResizeManager.js.map +1 -1
- package/dist/react/File.d.ts +2 -0
- package/dist/react/File.d.ts.map +1 -1
- package/dist/react/File.js +3 -1
- package/dist/react/File.js.map +1 -1
- package/dist/react/FileDiff.d.ts +2 -0
- package/dist/react/FileDiff.d.ts.map +1 -1
- package/dist/react/FileDiff.js +3 -1
- package/dist/react/FileDiff.js.map +1 -1
- package/dist/react/MultiFileDiff.d.ts +2 -0
- package/dist/react/MultiFileDiff.d.ts.map +1 -1
- package/dist/react/MultiFileDiff.js +3 -1
- package/dist/react/MultiFileDiff.js.map +1 -1
- package/dist/react/PatchDiff.d.ts +2 -0
- package/dist/react/PatchDiff.d.ts.map +1 -1
- package/dist/react/PatchDiff.js +3 -1
- package/dist/react/PatchDiff.js.map +1 -1
- package/dist/react/UnresolvedFile.d.ts +36 -0
- package/dist/react/UnresolvedFile.d.ts.map +1 -0
- package/dist/react/UnresolvedFile.js +42 -0
- package/dist/react/UnresolvedFile.js.map +1 -0
- package/dist/react/constants.d.ts +3 -2
- package/dist/react/constants.d.ts.map +1 -1
- package/dist/react/constants.js +3 -2
- package/dist/react/constants.js.map +1 -1
- package/dist/react/index.d.ts +4 -3
- package/dist/react/index.js +3 -2
- package/dist/react/types.d.ts +11 -2
- package/dist/react/types.d.ts.map +1 -1
- package/dist/react/utils/renderDiffChildren.d.ts +16 -5
- package/dist/react/utils/renderDiffChildren.d.ts.map +1 -1
- package/dist/react/utils/renderDiffChildren.js +34 -7
- package/dist/react/utils/renderDiffChildren.js.map +1 -1
- package/dist/react/utils/renderFileChildren.d.ts +5 -1
- package/dist/react/utils/renderFileChildren.d.ts.map +1 -1
- package/dist/react/utils/renderFileChildren.js +13 -7
- package/dist/react/utils/renderFileChildren.js.map +1 -1
- package/dist/react/utils/useFileDiffInstance.d.ts +1 -2
- package/dist/react/utils/useFileDiffInstance.d.ts.map +1 -1
- package/dist/react/utils/useFileDiffInstance.js +2 -2
- package/dist/react/utils/useFileDiffInstance.js.map +1 -1
- package/dist/react/utils/useFileInstance.d.ts +1 -2
- package/dist/react/utils/useFileInstance.d.ts.map +1 -1
- package/dist/react/utils/useFileInstance.js.map +1 -1
- package/dist/react/utils/useUnresolvedFileInstance.d.ts +33 -0
- package/dist/react/utils/useUnresolvedFileInstance.d.ts.map +1 -0
- package/dist/react/utils/useUnresolvedFileInstance.js +87 -0
- package/dist/react/utils/useUnresolvedFileInstance.js.map +1 -0
- package/dist/renderers/DiffHunksRenderer.d.ts +50 -6
- package/dist/renderers/DiffHunksRenderer.d.ts.map +1 -1
- package/dist/renderers/DiffHunksRenderer.js +146 -45
- package/dist/renderers/DiffHunksRenderer.js.map +1 -1
- package/dist/renderers/FileRenderer.js +1 -1
- package/dist/renderers/UnresolvedFileHunksRenderer.d.ts +46 -0
- package/dist/renderers/UnresolvedFileHunksRenderer.d.ts.map +1 -0
- package/dist/renderers/UnresolvedFileHunksRenderer.js +207 -0
- package/dist/renderers/UnresolvedFileHunksRenderer.js.map +1 -0
- package/dist/shiki-stream/stream.d.ts +1 -1
- package/dist/shiki-stream/stream.d.ts.map +1 -1
- package/dist/shiki-stream/stream.js.map +1 -1
- package/dist/shiki-stream/tokenizer.d.ts +1 -1
- package/dist/shiki-stream/tokenizer.d.ts.map +1 -1
- package/dist/shiki-stream/tokenizer.js.map +1 -1
- package/dist/shiki-stream/types.d.ts +1 -1
- package/dist/shiki-stream/types.d.ts.map +1 -1
- package/dist/sprite.d.ts +2 -2
- package/dist/sprite.d.ts.map +1 -1
- package/dist/sprite.js +3 -0
- package/dist/sprite.js.map +1 -1
- package/dist/ssr/index.d.ts +3 -3
- package/dist/ssr/index.js +2 -2
- package/dist/ssr/preloadDiffs.d.ts +23 -14
- package/dist/ssr/preloadDiffs.d.ts.map +1 -1
- package/dist/ssr/preloadDiffs.js +40 -14
- package/dist/ssr/preloadDiffs.js.map +1 -1
- package/dist/style.js +1 -1
- package/dist/style.js.map +1 -1
- package/dist/types.d.ts +29 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/areMergeConflictActionsEqual.d.ts +7 -0
- package/dist/utils/areMergeConflictActionsEqual.d.ts.map +1 -0
- package/dist/utils/areMergeConflictActionsEqual.js +11 -0
- package/dist/utils/areMergeConflictActionsEqual.js.map +1 -0
- package/dist/utils/arePrePropertiesEqual.js +10 -1
- package/dist/utils/arePrePropertiesEqual.js.map +1 -1
- package/dist/utils/areSelectionPointsEqual.d.ts +7 -0
- package/dist/utils/areSelectionPointsEqual.d.ts.map +1 -0
- package/dist/utils/areSelectionPointsEqual.js +8 -0
- package/dist/utils/areSelectionPointsEqual.js.map +1 -0
- package/dist/utils/areSelectionsEqual.d.ts +1 -1
- package/dist/utils/areSelectionsEqual.d.ts.map +1 -1
- package/dist/utils/areSelectionsEqual.js.map +1 -1
- package/dist/utils/createFileHeaderElement.js +5 -2
- package/dist/utils/createFileHeaderElement.js.map +1 -1
- package/dist/utils/createGutterUtilityContentNode.d.ts +5 -0
- package/dist/utils/createGutterUtilityContentNode.d.ts.map +1 -0
- package/dist/utils/createGutterUtilityContentNode.js +15 -0
- package/dist/utils/createGutterUtilityContentNode.js.map +1 -0
- package/dist/utils/createGutterUtilityElement.d.ts +7 -0
- package/dist/utils/createGutterUtilityElement.d.ts.map +1 -0
- package/dist/utils/createGutterUtilityElement.js +20 -0
- package/dist/utils/createGutterUtilityElement.js.map +1 -0
- package/dist/utils/createPreElement.d.ts +2 -1
- package/dist/utils/createPreElement.d.ts.map +1 -1
- package/dist/utils/createPreElement.js +2 -1
- package/dist/utils/createPreElement.js.map +1 -1
- package/dist/utils/createSeparator.js +1 -1
- package/dist/utils/createSeparator.js.map +1 -1
- package/dist/utils/createWindowFromScrollPosition.js +12 -11
- package/dist/utils/createWindowFromScrollPosition.js.map +1 -1
- package/dist/utils/getHighlighterOptions.d.ts +7 -2
- package/dist/utils/getHighlighterOptions.d.ts.map +1 -1
- package/dist/utils/getHighlighterOptions.js +3 -2
- package/dist/utils/getHighlighterOptions.js.map +1 -1
- package/dist/utils/getMergeConflictActionSlotName.d.ts +16 -0
- package/dist/utils/getMergeConflictActionSlotName.d.ts.map +1 -0
- package/dist/utils/getMergeConflictActionSlotName.js +8 -0
- package/dist/utils/getMergeConflictActionSlotName.js.map +1 -0
- package/dist/utils/getMergeConflictLineTypes.d.ts +15 -0
- package/dist/utils/getMergeConflictLineTypes.d.ts.map +1 -0
- package/dist/utils/getMergeConflictLineTypes.js +81 -0
- package/dist/utils/getMergeConflictLineTypes.js.map +1 -0
- package/dist/utils/getOrCreateCodeNode.d.ts +3 -1
- package/dist/utils/getOrCreateCodeNode.d.ts.map +1 -1
- package/dist/utils/getOrCreateCodeNode.js +5 -3
- package/dist/utils/getOrCreateCodeNode.js.map +1 -1
- package/dist/utils/hast_utils.d.ts +2 -2
- package/dist/utils/hast_utils.d.ts.map +1 -1
- package/dist/utils/hast_utils.js +3 -2
- package/dist/utils/hast_utils.js.map +1 -1
- package/dist/utils/parseMergeConflictDiffFromFile.d.ts +26 -0
- package/dist/utils/parseMergeConflictDiffFromFile.d.ts.map +1 -0
- package/dist/utils/parseMergeConflictDiffFromFile.js +143 -0
- package/dist/utils/parseMergeConflictDiffFromFile.js.map +1 -0
- package/dist/utils/resolveMergeConflict.d.ts +7 -0
- package/dist/utils/resolveMergeConflict.d.ts.map +1 -0
- package/dist/utils/resolveMergeConflict.js +30 -0
- package/dist/utils/resolveMergeConflict.js.map +1 -0
- package/dist/utils/resolveVirtualFileMetrics.js +1 -0
- package/dist/utils/resolveVirtualFileMetrics.js.map +1 -1
- package/dist/utils/setWrapperNodeProps.d.ts +2 -1
- package/dist/utils/setWrapperNodeProps.d.ts.map +1 -1
- package/dist/utils/setWrapperNodeProps.js +5 -1
- package/dist/utils/setWrapperNodeProps.js.map +1 -1
- package/dist/worker/WorkerPoolManager.d.ts +4 -2
- package/dist/worker/WorkerPoolManager.d.ts.map +1 -1
- package/dist/worker/WorkerPoolManager.js +16 -9
- package/dist/worker/WorkerPoolManager.js.map +1 -1
- package/dist/worker/types.d.ts +3 -1
- package/dist/worker/types.d.ts.map +1 -1
- package/dist/worker/wasm-BlUZCxHM.js +10 -0
- package/dist/worker/wasm-BlUZCxHM.js.map +1 -0
- package/dist/worker/worker-portable.js +10546 -10106
- package/dist/worker/worker-portable.js.map +1 -1
- package/dist/worker/worker.js +27 -19
- package/dist/worker/worker.js.map +1 -1
- package/package.json +3 -7
- package/dist/managers/LineSelectionManager.d.ts +0 -64
- package/dist/managers/LineSelectionManager.d.ts.map +0 -1
- package/dist/managers/LineSelectionManager.js +0 -270
- package/dist/managers/LineSelectionManager.js.map +0 -1
- package/dist/managers/MouseEventManager.d.ts +0 -71
- package/dist/managers/MouseEventManager.d.ts.map +0 -1
- package/dist/managers/MouseEventManager.js +0 -358
- package/dist/managers/MouseEventManager.js.map +0 -1
- package/dist/themes/pierre-dark.js +0 -1328
- package/dist/themes/pierre-dark.js.map +0 -1
- package/dist/themes/pierre-light.js +0 -1328
- package/dist/themes/pierre-light.js.map +0 -1
- package/dist/utils/createHoverContentNode.d.ts +0 -5
- package/dist/utils/createHoverContentNode.d.ts.map +0 -1
- package/dist/utils/createHoverContentNode.js +0 -15
- package/dist/utils/createHoverContentNode.js.map +0 -1
|
@@ -1,1328 +0,0 @@
|
|
|
1
|
-
//#region src/themes/pierre-light.json
|
|
2
|
-
var name = "pierre-light";
|
|
3
|
-
var type = "light";
|
|
4
|
-
var colors = {
|
|
5
|
-
"editor.background": "#ffffff",
|
|
6
|
-
"editor.foreground": "#070707",
|
|
7
|
-
"foreground": "#070707",
|
|
8
|
-
"focusBorder": "#009fff",
|
|
9
|
-
"selection.background": "#dfebff",
|
|
10
|
-
"editor.selectionBackground": "#009fff2e",
|
|
11
|
-
"editor.lineHighlightBackground": "#dfebff8c",
|
|
12
|
-
"editorCursor.foreground": "#009fff",
|
|
13
|
-
"editorLineNumber.foreground": "#84848A",
|
|
14
|
-
"editorLineNumber.activeForeground": "#6C6C71",
|
|
15
|
-
"editorIndentGuide.background": "#eeeeef",
|
|
16
|
-
"editorIndentGuide.activeBackground": "#dbdbdd",
|
|
17
|
-
"diffEditor.insertedTextBackground": "#00cab133",
|
|
18
|
-
"diffEditor.deletedTextBackground": "#ff2e3f33",
|
|
19
|
-
"sideBar.background": "#f8f8f8",
|
|
20
|
-
"sideBar.foreground": "#6C6C71",
|
|
21
|
-
"sideBar.border": "#eeeeef",
|
|
22
|
-
"sideBarTitle.foreground": "#070707",
|
|
23
|
-
"sideBarSectionHeader.background": "#f8f8f8",
|
|
24
|
-
"sideBarSectionHeader.foreground": "#6C6C71",
|
|
25
|
-
"sideBarSectionHeader.border": "#eeeeef",
|
|
26
|
-
"activityBar.background": "#f8f8f8",
|
|
27
|
-
"activityBar.foreground": "#070707",
|
|
28
|
-
"activityBar.border": "#eeeeef",
|
|
29
|
-
"activityBar.activeBorder": "#009fff",
|
|
30
|
-
"activityBarBadge.background": "#009fff",
|
|
31
|
-
"activityBarBadge.foreground": "#ffffff",
|
|
32
|
-
"titleBar.activeBackground": "#f8f8f8",
|
|
33
|
-
"titleBar.activeForeground": "#070707",
|
|
34
|
-
"titleBar.inactiveBackground": "#f8f8f8",
|
|
35
|
-
"titleBar.inactiveForeground": "#84848A",
|
|
36
|
-
"titleBar.border": "#eeeeef",
|
|
37
|
-
"list.activeSelectionBackground": "#dfebffcc",
|
|
38
|
-
"list.activeSelectionForeground": "#070707",
|
|
39
|
-
"list.inactiveSelectionBackground": "#dfebff73",
|
|
40
|
-
"list.hoverBackground": "#dfebff59",
|
|
41
|
-
"list.focusOutline": "#009fff",
|
|
42
|
-
"tab.activeBackground": "#ffffff",
|
|
43
|
-
"tab.activeForeground": "#070707",
|
|
44
|
-
"tab.activeBorderTop": "#009fff",
|
|
45
|
-
"tab.inactiveBackground": "#f8f8f8",
|
|
46
|
-
"tab.inactiveForeground": "#84848A",
|
|
47
|
-
"tab.border": "#eeeeef",
|
|
48
|
-
"editorGroupHeader.tabsBackground": "#f8f8f8",
|
|
49
|
-
"editorGroupHeader.tabsBorder": "#eeeeef",
|
|
50
|
-
"panel.background": "#f8f8f8",
|
|
51
|
-
"panel.border": "#eeeeef",
|
|
52
|
-
"panelTitle.activeBorder": "#009fff",
|
|
53
|
-
"panelTitle.activeForeground": "#070707",
|
|
54
|
-
"panelTitle.inactiveForeground": "#84848A",
|
|
55
|
-
"statusBar.background": "#f8f8f8",
|
|
56
|
-
"statusBar.foreground": "#6C6C71",
|
|
57
|
-
"statusBar.border": "#eeeeef",
|
|
58
|
-
"statusBar.noFolderBackground": "#f8f8f8",
|
|
59
|
-
"statusBar.debuggingBackground": "#ffca00",
|
|
60
|
-
"statusBar.debuggingForeground": "#ffffff",
|
|
61
|
-
"statusBarItem.remoteBackground": "#f8f8f8",
|
|
62
|
-
"statusBarItem.remoteForeground": "#6C6C71",
|
|
63
|
-
"input.background": "#f2f2f3",
|
|
64
|
-
"input.border": "#dbdbdd",
|
|
65
|
-
"input.foreground": "#070707",
|
|
66
|
-
"input.placeholderForeground": "#8E8E95",
|
|
67
|
-
"dropdown.background": "#f2f2f3",
|
|
68
|
-
"dropdown.border": "#dbdbdd",
|
|
69
|
-
"dropdown.foreground": "#070707",
|
|
70
|
-
"button.background": "#009fff",
|
|
71
|
-
"button.foreground": "#ffffff",
|
|
72
|
-
"button.hoverBackground": "#1aa9ff",
|
|
73
|
-
"textLink.foreground": "#009fff",
|
|
74
|
-
"textLink.activeForeground": "#009fff",
|
|
75
|
-
"gitDecoration.addedResourceForeground": "#00cab1",
|
|
76
|
-
"gitDecoration.conflictingResourceForeground": "#ffca00",
|
|
77
|
-
"gitDecoration.modifiedResourceForeground": "#009fff",
|
|
78
|
-
"gitDecoration.deletedResourceForeground": "#ff2e3f",
|
|
79
|
-
"gitDecoration.untrackedResourceForeground": "#00cab1",
|
|
80
|
-
"gitDecoration.ignoredResourceForeground": "#84848A",
|
|
81
|
-
"terminal.titleForeground": "#6C6C71",
|
|
82
|
-
"terminal.titleInactiveForeground": "#84848A",
|
|
83
|
-
"terminal.background": "#f8f8f8",
|
|
84
|
-
"terminal.foreground": "#6C6C71",
|
|
85
|
-
"terminal.ansiBlack": "#1F1F21",
|
|
86
|
-
"terminal.ansiRed": "#ff2e3f",
|
|
87
|
-
"terminal.ansiGreen": "#0dbe4e",
|
|
88
|
-
"terminal.ansiYellow": "#ffca00",
|
|
89
|
-
"terminal.ansiBlue": "#009fff",
|
|
90
|
-
"terminal.ansiMagenta": "#c635e4",
|
|
91
|
-
"terminal.ansiCyan": "#08c0ef",
|
|
92
|
-
"terminal.ansiWhite": "#c6c6c8",
|
|
93
|
-
"terminal.ansiBrightBlack": "#1F1F21",
|
|
94
|
-
"terminal.ansiBrightRed": "#ff2e3f",
|
|
95
|
-
"terminal.ansiBrightGreen": "#0dbe4e",
|
|
96
|
-
"terminal.ansiBrightYellow": "#ffca00",
|
|
97
|
-
"terminal.ansiBrightBlue": "#009fff",
|
|
98
|
-
"terminal.ansiBrightMagenta": "#c635e4",
|
|
99
|
-
"terminal.ansiBrightCyan": "#08c0ef",
|
|
100
|
-
"terminal.ansiBrightWhite": "#c6c6c8"
|
|
101
|
-
};
|
|
102
|
-
var tokenColors = [
|
|
103
|
-
{
|
|
104
|
-
"scope": ["comment", "punctuation.definition.comment"],
|
|
105
|
-
"settings": { "foreground": "#84848A" }
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"scope": "comment markup.link",
|
|
109
|
-
"settings": { "foreground": "#84848A" }
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"scope": ["string", "constant.other.symbol"],
|
|
113
|
-
"settings": { "foreground": "#199f43" }
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"scope": ["punctuation.definition.string.begin", "punctuation.definition.string.end"],
|
|
117
|
-
"settings": { "foreground": "#199f43" }
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"scope": ["constant.numeric", "constant.language.boolean"],
|
|
121
|
-
"settings": { "foreground": "#1ca1c7" }
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"scope": "constant",
|
|
125
|
-
"settings": { "foreground": "#d5a910" }
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"scope": "punctuation.definition.constant",
|
|
129
|
-
"settings": { "foreground": "#d5a910" }
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"scope": "constant.language",
|
|
133
|
-
"settings": { "foreground": "#1ca1c7" }
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"scope": "variable.other.constant",
|
|
137
|
-
"settings": { "foreground": "#d5a910" }
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"scope": "keyword",
|
|
141
|
-
"settings": { "foreground": "#fc2b73" }
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"scope": "keyword.control",
|
|
145
|
-
"settings": { "foreground": "#fc2b73" }
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"scope": [
|
|
149
|
-
"storage",
|
|
150
|
-
"storage.type",
|
|
151
|
-
"storage.modifier"
|
|
152
|
-
],
|
|
153
|
-
"settings": { "foreground": "#fc2b73" }
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"scope": "token.storage",
|
|
157
|
-
"settings": { "foreground": "#fc2b73" }
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"scope": [
|
|
161
|
-
"keyword.operator.new",
|
|
162
|
-
"keyword.operator.expression.instanceof",
|
|
163
|
-
"keyword.operator.expression.typeof",
|
|
164
|
-
"keyword.operator.expression.void",
|
|
165
|
-
"keyword.operator.expression.delete",
|
|
166
|
-
"keyword.operator.expression.in",
|
|
167
|
-
"keyword.operator.expression.of",
|
|
168
|
-
"keyword.operator.expression.keyof"
|
|
169
|
-
],
|
|
170
|
-
"settings": { "foreground": "#fc2b73" }
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"scope": "keyword.operator.delete",
|
|
174
|
-
"settings": { "foreground": "#fc2b73" }
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"scope": [
|
|
178
|
-
"variable",
|
|
179
|
-
"identifier",
|
|
180
|
-
"meta.definition.variable"
|
|
181
|
-
],
|
|
182
|
-
"settings": { "foreground": "#d47628" }
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"scope": [
|
|
186
|
-
"variable.other.readwrite",
|
|
187
|
-
"meta.object-literal.key",
|
|
188
|
-
"support.variable.property",
|
|
189
|
-
"support.variable.object.process",
|
|
190
|
-
"support.variable.object.node"
|
|
191
|
-
],
|
|
192
|
-
"settings": { "foreground": "#d47628" }
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"scope": "variable.language",
|
|
196
|
-
"settings": { "foreground": "#d5a910" }
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"scope": "variable.parameter.function",
|
|
200
|
-
"settings": { "foreground": "#79797F" }
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"scope": "function.parameter",
|
|
204
|
-
"settings": { "foreground": "#79797F" }
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"scope": "variable.parameter",
|
|
208
|
-
"settings": { "foreground": "#79797F" }
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"scope": "variable.parameter.function.language.python",
|
|
212
|
-
"settings": { "foreground": "#d5a910" }
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"scope": "variable.parameter.function.python",
|
|
216
|
-
"settings": { "foreground": "#d5a910" }
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"scope": [
|
|
220
|
-
"support.function",
|
|
221
|
-
"entity.name.function",
|
|
222
|
-
"meta.function-call",
|
|
223
|
-
"meta.require",
|
|
224
|
-
"support.function.any-method",
|
|
225
|
-
"variable.function"
|
|
226
|
-
],
|
|
227
|
-
"settings": { "foreground": "#7b43f8" }
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"scope": "keyword.other.special-method",
|
|
231
|
-
"settings": { "foreground": "#7b43f8" }
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
"scope": "entity.name.function",
|
|
235
|
-
"settings": { "foreground": "#7b43f8" }
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"scope": "support.function.console",
|
|
239
|
-
"settings": { "foreground": "#7b43f8" }
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"scope": [
|
|
243
|
-
"support.type",
|
|
244
|
-
"entity.name.type",
|
|
245
|
-
"entity.name.class",
|
|
246
|
-
"storage.type"
|
|
247
|
-
],
|
|
248
|
-
"settings": { "foreground": "#c635e4" }
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"scope": ["support.class", "entity.name.type.class"],
|
|
252
|
-
"settings": { "foreground": "#c635e4" }
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
"scope": [
|
|
256
|
-
"entity.name.class",
|
|
257
|
-
"variable.other.class.js",
|
|
258
|
-
"variable.other.class.ts"
|
|
259
|
-
],
|
|
260
|
-
"settings": { "foreground": "#c635e4" }
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"scope": "entity.name.class.identifier.namespace.type",
|
|
264
|
-
"settings": { "foreground": "#c635e4" }
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
"scope": "entity.name.type.namespace",
|
|
268
|
-
"settings": { "foreground": "#d5a910" }
|
|
269
|
-
},
|
|
270
|
-
{
|
|
271
|
-
"scope": "entity.other.inherited-class",
|
|
272
|
-
"settings": { "foreground": "#c635e4" }
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"scope": "entity.name.namespace",
|
|
276
|
-
"settings": { "foreground": "#d5a910" }
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
"scope": "keyword.operator",
|
|
280
|
-
"settings": { "foreground": "#79797F" }
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"scope": [
|
|
284
|
-
"keyword.operator.logical",
|
|
285
|
-
"keyword.operator.bitwise",
|
|
286
|
-
"keyword.operator.channel"
|
|
287
|
-
],
|
|
288
|
-
"settings": { "foreground": "#08c0ef" }
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"scope": [
|
|
292
|
-
"keyword.operator.arithmetic",
|
|
293
|
-
"keyword.operator.comparison",
|
|
294
|
-
"keyword.operator.relational",
|
|
295
|
-
"keyword.operator.increment",
|
|
296
|
-
"keyword.operator.decrement"
|
|
297
|
-
],
|
|
298
|
-
"settings": { "foreground": "#08c0ef" }
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"scope": "keyword.operator.assignment",
|
|
302
|
-
"settings": { "foreground": "#08c0ef" }
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
"scope": "keyword.operator.assignment.compound",
|
|
306
|
-
"settings": { "foreground": "#fc2b73" }
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"scope": ["keyword.operator.assignment.compound.js", "keyword.operator.assignment.compound.ts"],
|
|
310
|
-
"settings": { "foreground": "#08c0ef" }
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"scope": "keyword.operator.ternary",
|
|
314
|
-
"settings": { "foreground": "#fc2b73" }
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
"scope": "keyword.operator.optional",
|
|
318
|
-
"settings": { "foreground": "#fc2b73" }
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"scope": "punctuation",
|
|
322
|
-
"settings": { "foreground": "#79797F" }
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
"scope": "punctuation.separator.delimiter",
|
|
326
|
-
"settings": { "foreground": "#79797F" }
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
"scope": "punctuation.separator.key-value",
|
|
330
|
-
"settings": { "foreground": "#79797F" }
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"scope": "punctuation.terminator",
|
|
334
|
-
"settings": { "foreground": "#79797F" }
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"scope": "meta.brace",
|
|
338
|
-
"settings": { "foreground": "#79797F" }
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
"scope": "meta.brace.square",
|
|
342
|
-
"settings": { "foreground": "#79797F" }
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
"scope": "meta.brace.round",
|
|
346
|
-
"settings": { "foreground": "#79797F" }
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"scope": "function.brace",
|
|
350
|
-
"settings": { "foreground": "#79797F" }
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"scope": ["punctuation.definition.parameters", "punctuation.definition.typeparameters"],
|
|
354
|
-
"settings": { "foreground": "#79797F" }
|
|
355
|
-
},
|
|
356
|
-
{
|
|
357
|
-
"scope": ["punctuation.definition.block", "punctuation.definition.tag"],
|
|
358
|
-
"settings": { "foreground": "#79797F" }
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"scope": [
|
|
362
|
-
"meta.tag.tsx",
|
|
363
|
-
"meta.tag.jsx",
|
|
364
|
-
"meta.tag.js",
|
|
365
|
-
"meta.tag.ts"
|
|
366
|
-
],
|
|
367
|
-
"settings": { "foreground": "#79797F" }
|
|
368
|
-
},
|
|
369
|
-
{
|
|
370
|
-
"scope": "keyword.operator.expression.import",
|
|
371
|
-
"settings": { "foreground": "#7b43f8" }
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
"scope": "keyword.operator.module",
|
|
375
|
-
"settings": { "foreground": "#fc2b73" }
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"scope": "support.type.object.console",
|
|
379
|
-
"settings": { "foreground": "#d47628" }
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"scope": [
|
|
383
|
-
"support.module.node",
|
|
384
|
-
"support.type.object.module",
|
|
385
|
-
"entity.name.type.module"
|
|
386
|
-
],
|
|
387
|
-
"settings": { "foreground": "#d5a910" }
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
"scope": "support.constant.math",
|
|
391
|
-
"settings": { "foreground": "#d5a910" }
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
"scope": "support.constant.property.math",
|
|
395
|
-
"settings": { "foreground": "#d5a910" }
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"scope": "support.constant.json",
|
|
399
|
-
"settings": { "foreground": "#d5a910" }
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"scope": "support.type.object.dom",
|
|
403
|
-
"settings": { "foreground": "#08c0ef" }
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"scope": ["support.variable.dom", "support.variable.property.dom"],
|
|
407
|
-
"settings": { "foreground": "#d47628" }
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"scope": "support.variable.property.process",
|
|
411
|
-
"settings": { "foreground": "#d5a910" }
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"scope": "meta.property.object",
|
|
415
|
-
"settings": { "foreground": "#d47628" }
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"scope": "variable.parameter.function.js",
|
|
419
|
-
"settings": { "foreground": "#d47628" }
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"scope": ["keyword.other.template.begin", "keyword.other.template.end"],
|
|
423
|
-
"settings": { "foreground": "#199f43" }
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"scope": ["keyword.other.substitution.begin", "keyword.other.substitution.end"],
|
|
427
|
-
"settings": { "foreground": "#199f43" }
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"scope": ["punctuation.definition.template-expression.begin", "punctuation.definition.template-expression.end"],
|
|
431
|
-
"settings": { "foreground": "#fc2b73" }
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
"scope": "meta.template.expression",
|
|
435
|
-
"settings": { "foreground": "#79797F" }
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"scope": "punctuation.section.embedded",
|
|
439
|
-
"settings": { "foreground": "#d47628" }
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"scope": "variable.interpolation",
|
|
443
|
-
"settings": { "foreground": "#d47628" }
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"scope": ["punctuation.section.embedded.begin", "punctuation.section.embedded.end"],
|
|
447
|
-
"settings": { "foreground": "#fc2b73" }
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"scope": "punctuation.quasi.element",
|
|
451
|
-
"settings": { "foreground": "#fc2b73" }
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"scope": [
|
|
455
|
-
"support.type.primitive.ts",
|
|
456
|
-
"support.type.builtin.ts",
|
|
457
|
-
"support.type.primitive.tsx",
|
|
458
|
-
"support.type.builtin.tsx"
|
|
459
|
-
],
|
|
460
|
-
"settings": { "foreground": "#c635e4" }
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
"scope": "support.type.type.flowtype",
|
|
464
|
-
"settings": { "foreground": "#7b43f8" }
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
"scope": "support.type.primitive",
|
|
468
|
-
"settings": { "foreground": "#c635e4" }
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"scope": "support.variable.magic.python",
|
|
472
|
-
"settings": { "foreground": "#d52c36" }
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
"scope": "variable.parameter.function.language.special.self.python",
|
|
476
|
-
"settings": { "foreground": "#d5a910" }
|
|
477
|
-
},
|
|
478
|
-
{
|
|
479
|
-
"scope": [
|
|
480
|
-
"punctuation.separator.period.python",
|
|
481
|
-
"punctuation.separator.element.python",
|
|
482
|
-
"punctuation.parenthesis.begin.python",
|
|
483
|
-
"punctuation.parenthesis.end.python"
|
|
484
|
-
],
|
|
485
|
-
"settings": { "foreground": "#79797F" }
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"scope": [
|
|
489
|
-
"punctuation.definition.arguments.begin.python",
|
|
490
|
-
"punctuation.definition.arguments.end.python",
|
|
491
|
-
"punctuation.separator.arguments.python",
|
|
492
|
-
"punctuation.definition.list.begin.python",
|
|
493
|
-
"punctuation.definition.list.end.python"
|
|
494
|
-
],
|
|
495
|
-
"settings": { "foreground": "#79797F" }
|
|
496
|
-
},
|
|
497
|
-
{
|
|
498
|
-
"scope": "support.type.python",
|
|
499
|
-
"settings": { "foreground": "#08c0ef" }
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
"scope": "keyword.operator.logical.python",
|
|
503
|
-
"settings": { "foreground": "#fc2b73" }
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"scope": "meta.function-call.generic.python",
|
|
507
|
-
"settings": { "foreground": "#7b43f8" }
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"scope": "constant.character.format.placeholder.other.python",
|
|
511
|
-
"settings": { "foreground": "#d5a910" }
|
|
512
|
-
},
|
|
513
|
-
{
|
|
514
|
-
"scope": "meta.function.decorator.python",
|
|
515
|
-
"settings": { "foreground": "#7b43f8" }
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
"scope": ["support.token.decorator.python", "meta.function.decorator.identifier.python"],
|
|
519
|
-
"settings": { "foreground": "#08c0ef" }
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
"scope": "storage.modifier.lifetime.rust",
|
|
523
|
-
"settings": { "foreground": "#79797F" }
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"scope": "support.function.std.rust",
|
|
527
|
-
"settings": { "foreground": "#7b43f8" }
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"scope": "entity.name.lifetime.rust",
|
|
531
|
-
"settings": { "foreground": "#d5a910" }
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"scope": "variable.language.rust",
|
|
535
|
-
"settings": { "foreground": "#d52c36" }
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
"scope": "keyword.operator.misc.rust",
|
|
539
|
-
"settings": { "foreground": "#79797F" }
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
"scope": "keyword.operator.sigil.rust",
|
|
543
|
-
"settings": { "foreground": "#fc2b73" }
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
"scope": "support.constant.core.rust",
|
|
547
|
-
"settings": { "foreground": "#d5a910" }
|
|
548
|
-
},
|
|
549
|
-
{
|
|
550
|
-
"scope": ["meta.function.c", "meta.function.cpp"],
|
|
551
|
-
"settings": { "foreground": "#d52c36" }
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
"scope": [
|
|
555
|
-
"punctuation.section.block.begin.bracket.curly.cpp",
|
|
556
|
-
"punctuation.section.block.end.bracket.curly.cpp",
|
|
557
|
-
"punctuation.terminator.statement.c",
|
|
558
|
-
"punctuation.section.block.begin.bracket.curly.c",
|
|
559
|
-
"punctuation.section.block.end.bracket.curly.c",
|
|
560
|
-
"punctuation.section.parens.begin.bracket.round.c",
|
|
561
|
-
"punctuation.section.parens.end.bracket.round.c",
|
|
562
|
-
"punctuation.section.parameters.begin.bracket.round.c",
|
|
563
|
-
"punctuation.section.parameters.end.bracket.round.c"
|
|
564
|
-
],
|
|
565
|
-
"settings": { "foreground": "#79797F" }
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
"scope": [
|
|
569
|
-
"keyword.operator.assignment.c",
|
|
570
|
-
"keyword.operator.comparison.c",
|
|
571
|
-
"keyword.operator.c",
|
|
572
|
-
"keyword.operator.increment.c",
|
|
573
|
-
"keyword.operator.decrement.c",
|
|
574
|
-
"keyword.operator.bitwise.shift.c"
|
|
575
|
-
],
|
|
576
|
-
"settings": { "foreground": "#fc2b73" }
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
"scope": [
|
|
580
|
-
"keyword.operator.assignment.cpp",
|
|
581
|
-
"keyword.operator.comparison.cpp",
|
|
582
|
-
"keyword.operator.cpp",
|
|
583
|
-
"keyword.operator.increment.cpp",
|
|
584
|
-
"keyword.operator.decrement.cpp",
|
|
585
|
-
"keyword.operator.bitwise.shift.cpp"
|
|
586
|
-
],
|
|
587
|
-
"settings": { "foreground": "#fc2b73" }
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"scope": ["punctuation.separator.c", "punctuation.separator.cpp"],
|
|
591
|
-
"settings": { "foreground": "#fc2b73" }
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"scope": ["support.type.posix-reserved.c", "support.type.posix-reserved.cpp"],
|
|
595
|
-
"settings": { "foreground": "#08c0ef" }
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
"scope": ["keyword.operator.sizeof.c", "keyword.operator.sizeof.cpp"],
|
|
599
|
-
"settings": { "foreground": "#fc2b73" }
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
"scope": "variable.c",
|
|
603
|
-
"settings": { "foreground": "#79797F" }
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"scope": ["storage.type.annotation.java", "storage.type.object.array.java"],
|
|
607
|
-
"settings": { "foreground": "#d5a910" }
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"scope": "source.java",
|
|
611
|
-
"settings": { "foreground": "#d52c36" }
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
"scope": [
|
|
615
|
-
"punctuation.section.block.begin.java",
|
|
616
|
-
"punctuation.section.block.end.java",
|
|
617
|
-
"punctuation.definition.method-parameters.begin.java",
|
|
618
|
-
"punctuation.definition.method-parameters.end.java",
|
|
619
|
-
"meta.method.identifier.java",
|
|
620
|
-
"punctuation.section.method.begin.java",
|
|
621
|
-
"punctuation.section.method.end.java",
|
|
622
|
-
"punctuation.terminator.java",
|
|
623
|
-
"punctuation.section.class.begin.java",
|
|
624
|
-
"punctuation.section.class.end.java",
|
|
625
|
-
"punctuation.section.inner-class.begin.java",
|
|
626
|
-
"punctuation.section.inner-class.end.java",
|
|
627
|
-
"meta.method-call.java",
|
|
628
|
-
"punctuation.section.class.begin.bracket.curly.java",
|
|
629
|
-
"punctuation.section.class.end.bracket.curly.java",
|
|
630
|
-
"punctuation.section.method.begin.bracket.curly.java",
|
|
631
|
-
"punctuation.section.method.end.bracket.curly.java",
|
|
632
|
-
"punctuation.separator.period.java",
|
|
633
|
-
"punctuation.bracket.angle.java",
|
|
634
|
-
"punctuation.definition.annotation.java",
|
|
635
|
-
"meta.method.body.java"
|
|
636
|
-
],
|
|
637
|
-
"settings": { "foreground": "#79797F" }
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
"scope": "meta.method.java",
|
|
641
|
-
"settings": { "foreground": "#7b43f8" }
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"scope": [
|
|
645
|
-
"storage.modifier.import.java",
|
|
646
|
-
"storage.type.java",
|
|
647
|
-
"storage.type.generic.java"
|
|
648
|
-
],
|
|
649
|
-
"settings": { "foreground": "#d5a910" }
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"scope": "keyword.operator.instanceof.java",
|
|
653
|
-
"settings": { "foreground": "#fc2b73" }
|
|
654
|
-
},
|
|
655
|
-
{
|
|
656
|
-
"scope": "meta.definition.variable.name.java",
|
|
657
|
-
"settings": { "foreground": "#d52c36" }
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"scope": "token.variable.parameter.java",
|
|
661
|
-
"settings": { "foreground": "#79797F" }
|
|
662
|
-
},
|
|
663
|
-
{
|
|
664
|
-
"scope": "import.storage.java",
|
|
665
|
-
"settings": { "foreground": "#d5a910" }
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"scope": "token.package.keyword",
|
|
669
|
-
"settings": { "foreground": "#fc2b73" }
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"scope": "token.package",
|
|
673
|
-
"settings": { "foreground": "#79797F" }
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"scope": "token.storage.type.java",
|
|
677
|
-
"settings": { "foreground": "#d5a910" }
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
"scope": "keyword.operator.assignment.go",
|
|
681
|
-
"settings": { "foreground": "#d5a910" }
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"scope": ["keyword.operator.arithmetic.go", "keyword.operator.address.go"],
|
|
685
|
-
"settings": { "foreground": "#fc2b73" }
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"scope": "entity.name.package.go",
|
|
689
|
-
"settings": { "foreground": "#d5a910" }
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
"scope": [
|
|
693
|
-
"support.other.namespace.use.php",
|
|
694
|
-
"support.other.namespace.use-as.php",
|
|
695
|
-
"support.other.namespace.php",
|
|
696
|
-
"entity.other.alias.php",
|
|
697
|
-
"meta.interface.php"
|
|
698
|
-
],
|
|
699
|
-
"settings": { "foreground": "#d5a910" }
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
"scope": "keyword.operator.error-control.php",
|
|
703
|
-
"settings": { "foreground": "#fc2b73" }
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"scope": "keyword.operator.type.php",
|
|
707
|
-
"settings": { "foreground": "#fc2b73" }
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"scope": ["punctuation.section.array.begin.php", "punctuation.section.array.end.php"],
|
|
711
|
-
"settings": { "foreground": "#79797F" }
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
"scope": [
|
|
715
|
-
"storage.type.php",
|
|
716
|
-
"meta.other.type.phpdoc.php",
|
|
717
|
-
"keyword.other.type.php",
|
|
718
|
-
"keyword.other.array.phpdoc.php"
|
|
719
|
-
],
|
|
720
|
-
"settings": { "foreground": "#d5a910" }
|
|
721
|
-
},
|
|
722
|
-
{
|
|
723
|
-
"scope": [
|
|
724
|
-
"meta.function-call.php",
|
|
725
|
-
"meta.function-call.object.php",
|
|
726
|
-
"meta.function-call.static.php"
|
|
727
|
-
],
|
|
728
|
-
"settings": { "foreground": "#7b43f8" }
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"scope": [
|
|
732
|
-
"punctuation.definition.parameters.begin.bracket.round.php",
|
|
733
|
-
"punctuation.definition.parameters.end.bracket.round.php",
|
|
734
|
-
"punctuation.separator.delimiter.php",
|
|
735
|
-
"punctuation.section.scope.begin.php",
|
|
736
|
-
"punctuation.section.scope.end.php",
|
|
737
|
-
"punctuation.terminator.expression.php",
|
|
738
|
-
"punctuation.definition.arguments.begin.bracket.round.php",
|
|
739
|
-
"punctuation.definition.arguments.end.bracket.round.php",
|
|
740
|
-
"punctuation.definition.storage-type.begin.bracket.round.php",
|
|
741
|
-
"punctuation.definition.storage-type.end.bracket.round.php",
|
|
742
|
-
"punctuation.definition.array.begin.bracket.round.php",
|
|
743
|
-
"punctuation.definition.array.end.bracket.round.php",
|
|
744
|
-
"punctuation.definition.begin.bracket.round.php",
|
|
745
|
-
"punctuation.definition.end.bracket.round.php",
|
|
746
|
-
"punctuation.definition.begin.bracket.curly.php",
|
|
747
|
-
"punctuation.definition.end.bracket.curly.php",
|
|
748
|
-
"punctuation.definition.section.switch-block.end.bracket.curly.php",
|
|
749
|
-
"punctuation.definition.section.switch-block.start.bracket.curly.php",
|
|
750
|
-
"punctuation.definition.section.switch-block.begin.bracket.curly.php",
|
|
751
|
-
"punctuation.definition.section.switch-block.end.bracket.curly.php"
|
|
752
|
-
],
|
|
753
|
-
"settings": { "foreground": "#79797F" }
|
|
754
|
-
},
|
|
755
|
-
{
|
|
756
|
-
"scope": [
|
|
757
|
-
"support.constant.ext.php",
|
|
758
|
-
"support.constant.std.php",
|
|
759
|
-
"support.constant.core.php",
|
|
760
|
-
"support.constant.parser-token.php"
|
|
761
|
-
],
|
|
762
|
-
"settings": { "foreground": "#d5a910" }
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
"scope": ["entity.name.goto-label.php", "support.other.php"],
|
|
766
|
-
"settings": { "foreground": "#7b43f8" }
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
"scope": [
|
|
770
|
-
"keyword.operator.logical.php",
|
|
771
|
-
"keyword.operator.bitwise.php",
|
|
772
|
-
"keyword.operator.arithmetic.php"
|
|
773
|
-
],
|
|
774
|
-
"settings": { "foreground": "#08c0ef" }
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
"scope": "keyword.operator.regexp.php",
|
|
778
|
-
"settings": { "foreground": "#fc2b73" }
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
"scope": "keyword.operator.comparison.php",
|
|
782
|
-
"settings": { "foreground": "#08c0ef" }
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
"scope": ["keyword.operator.heredoc.php", "keyword.operator.nowdoc.php"],
|
|
786
|
-
"settings": { "foreground": "#fc2b73" }
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
"scope": "variable.other.class.php",
|
|
790
|
-
"settings": { "foreground": "#d52c36" }
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
"scope": "invalid.illegal.non-null-typehinted.php",
|
|
794
|
-
"settings": { "foreground": "#f44747" }
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
"scope": "variable.other.generic-type.haskell",
|
|
798
|
-
"settings": { "foreground": "#fc2b73" }
|
|
799
|
-
},
|
|
800
|
-
{
|
|
801
|
-
"scope": "storage.type.haskell",
|
|
802
|
-
"settings": { "foreground": "#d5a910" }
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"scope": "storage.type.cs",
|
|
806
|
-
"settings": { "foreground": "#d5a910" }
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"scope": "entity.name.variable.local.cs",
|
|
810
|
-
"settings": { "foreground": "#d52c36" }
|
|
811
|
-
},
|
|
812
|
-
{
|
|
813
|
-
"scope": "entity.name.label.cs",
|
|
814
|
-
"settings": { "foreground": "#d5a910" }
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
"scope": ["entity.name.scope-resolution.function.call", "entity.name.scope-resolution.function.definition"],
|
|
818
|
-
"settings": { "foreground": "#d5a910" }
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"scope": [
|
|
822
|
-
"punctuation.definition.delayed.unison",
|
|
823
|
-
"punctuation.definition.list.begin.unison",
|
|
824
|
-
"punctuation.definition.list.end.unison",
|
|
825
|
-
"punctuation.definition.ability.begin.unison",
|
|
826
|
-
"punctuation.definition.ability.end.unison",
|
|
827
|
-
"punctuation.operator.assignment.as.unison",
|
|
828
|
-
"punctuation.separator.pipe.unison",
|
|
829
|
-
"punctuation.separator.delimiter.unison",
|
|
830
|
-
"punctuation.definition.hash.unison"
|
|
831
|
-
],
|
|
832
|
-
"settings": { "foreground": "#d52c36" }
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
"scope": "support.constant.edge",
|
|
836
|
-
"settings": { "foreground": "#fc2b73" }
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
"scope": "support.type.prelude.elm",
|
|
840
|
-
"settings": { "foreground": "#08c0ef" }
|
|
841
|
-
},
|
|
842
|
-
{
|
|
843
|
-
"scope": "support.constant.elm",
|
|
844
|
-
"settings": { "foreground": "#d5a910" }
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
"scope": "entity.global.clojure",
|
|
848
|
-
"settings": { "foreground": "#d5a910" }
|
|
849
|
-
},
|
|
850
|
-
{
|
|
851
|
-
"scope": "meta.symbol.clojure",
|
|
852
|
-
"settings": { "foreground": "#d52c36" }
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
"scope": "constant.keyword.clojure",
|
|
856
|
-
"settings": { "foreground": "#08c0ef" }
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"scope": ["meta.arguments.coffee", "variable.parameter.function.coffee"],
|
|
860
|
-
"settings": { "foreground": "#d52c36" }
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
"scope": "storage.modifier.import.groovy",
|
|
864
|
-
"settings": { "foreground": "#d5a910" }
|
|
865
|
-
},
|
|
866
|
-
{
|
|
867
|
-
"scope": "meta.method.groovy",
|
|
868
|
-
"settings": { "foreground": "#7b43f8" }
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
"scope": "meta.definition.variable.name.groovy",
|
|
872
|
-
"settings": { "foreground": "#d52c36" }
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"scope": "meta.definition.class.inherited.classes.groovy",
|
|
876
|
-
"settings": { "foreground": "#199f43" }
|
|
877
|
-
},
|
|
878
|
-
{
|
|
879
|
-
"scope": "support.variable.semantic.hlsl",
|
|
880
|
-
"settings": { "foreground": "#d5a910" }
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"scope": [
|
|
884
|
-
"support.type.texture.hlsl",
|
|
885
|
-
"support.type.sampler.hlsl",
|
|
886
|
-
"support.type.object.hlsl",
|
|
887
|
-
"support.type.object.rw.hlsl",
|
|
888
|
-
"support.type.fx.hlsl",
|
|
889
|
-
"support.type.object.hlsl"
|
|
890
|
-
],
|
|
891
|
-
"settings": { "foreground": "#fc2b73" }
|
|
892
|
-
},
|
|
893
|
-
{
|
|
894
|
-
"scope": ["text.variable", "text.bracketed"],
|
|
895
|
-
"settings": { "foreground": "#d52c36" }
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
"scope": ["support.type.swift", "support.type.vb.asp"],
|
|
899
|
-
"settings": { "foreground": "#d5a910" }
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
"scope": "meta.scope.prerequisites.makefile",
|
|
903
|
-
"settings": { "foreground": "#d52c36" }
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
"scope": "source.makefile",
|
|
907
|
-
"settings": { "foreground": "#d5a910" }
|
|
908
|
-
},
|
|
909
|
-
{
|
|
910
|
-
"scope": "source.ini",
|
|
911
|
-
"settings": { "foreground": "#199f43" }
|
|
912
|
-
},
|
|
913
|
-
{
|
|
914
|
-
"scope": "constant.language.symbol.ruby",
|
|
915
|
-
"settings": { "foreground": "#08c0ef" }
|
|
916
|
-
},
|
|
917
|
-
{
|
|
918
|
-
"scope": ["function.parameter.ruby", "function.parameter.cs"],
|
|
919
|
-
"settings": { "foreground": "#79797F" }
|
|
920
|
-
},
|
|
921
|
-
{
|
|
922
|
-
"scope": "constant.language.symbol.elixir",
|
|
923
|
-
"settings": { "foreground": "#08c0ef" }
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
"scope": "text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade",
|
|
927
|
-
"settings": { "foreground": "#fc2b73" }
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
"scope": "text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade",
|
|
931
|
-
"settings": { "foreground": "#fc2b73" }
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
"scope": "entity.name.function.xi",
|
|
935
|
-
"settings": { "foreground": "#d5a910" }
|
|
936
|
-
},
|
|
937
|
-
{
|
|
938
|
-
"scope": "entity.name.class.xi",
|
|
939
|
-
"settings": { "foreground": "#08c0ef" }
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
"scope": "constant.character.character-class.regexp.xi",
|
|
943
|
-
"settings": { "foreground": "#d52c36" }
|
|
944
|
-
},
|
|
945
|
-
{
|
|
946
|
-
"scope": "constant.regexp.xi",
|
|
947
|
-
"settings": { "foreground": "#fc2b73" }
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
"scope": "keyword.control.xi",
|
|
951
|
-
"settings": { "foreground": "#08c0ef" }
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
"scope": "invalid.xi",
|
|
955
|
-
"settings": { "foreground": "#79797F" }
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"scope": "beginning.punctuation.definition.quote.markdown.xi",
|
|
959
|
-
"settings": { "foreground": "#199f43" }
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
"scope": "beginning.punctuation.definition.list.markdown.xi",
|
|
963
|
-
"settings": { "foreground": "#84848A" }
|
|
964
|
-
},
|
|
965
|
-
{
|
|
966
|
-
"scope": "constant.character.xi",
|
|
967
|
-
"settings": { "foreground": "#7b43f8" }
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"scope": "accent.xi",
|
|
971
|
-
"settings": { "foreground": "#7b43f8" }
|
|
972
|
-
},
|
|
973
|
-
{
|
|
974
|
-
"scope": "wikiword.xi",
|
|
975
|
-
"settings": { "foreground": "#d5a910" }
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"scope": "constant.other.color.rgb-value.xi",
|
|
979
|
-
"settings": { "foreground": "#ffffff" }
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
"scope": "punctuation.definition.tag.xi",
|
|
983
|
-
"settings": { "foreground": "#84848A" }
|
|
984
|
-
},
|
|
985
|
-
{
|
|
986
|
-
"scope": ["support.constant.property-value.scss", "support.constant.property-value.css"],
|
|
987
|
-
"settings": { "foreground": "#d5a910" }
|
|
988
|
-
},
|
|
989
|
-
{
|
|
990
|
-
"scope": [
|
|
991
|
-
"keyword.operator.css",
|
|
992
|
-
"keyword.operator.scss",
|
|
993
|
-
"keyword.operator.less"
|
|
994
|
-
],
|
|
995
|
-
"settings": { "foreground": "#08c0ef" }
|
|
996
|
-
},
|
|
997
|
-
{
|
|
998
|
-
"scope": ["support.constant.color.w3c-standard-color-name.css", "support.constant.color.w3c-standard-color-name.scss"],
|
|
999
|
-
"settings": { "foreground": "#d5a910" }
|
|
1000
|
-
},
|
|
1001
|
-
{
|
|
1002
|
-
"scope": "punctuation.separator.list.comma.css",
|
|
1003
|
-
"settings": { "foreground": "#79797F" }
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
"scope": "support.type.vendored.property-name.css",
|
|
1007
|
-
"settings": { "foreground": "#08c0ef" }
|
|
1008
|
-
},
|
|
1009
|
-
{
|
|
1010
|
-
"scope": "support.type.property-name.css",
|
|
1011
|
-
"settings": { "foreground": "#08c0ef" }
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
"scope": "support.type.property-name",
|
|
1015
|
-
"settings": { "foreground": "#79797F" }
|
|
1016
|
-
},
|
|
1017
|
-
{
|
|
1018
|
-
"scope": "support.constant.property-value",
|
|
1019
|
-
"settings": { "foreground": "#79797F" }
|
|
1020
|
-
},
|
|
1021
|
-
{
|
|
1022
|
-
"scope": "support.constant.font-name",
|
|
1023
|
-
"settings": { "foreground": "#d5a910" }
|
|
1024
|
-
},
|
|
1025
|
-
{
|
|
1026
|
-
"scope": "entity.other.attribute-name.class.css",
|
|
1027
|
-
"settings": {
|
|
1028
|
-
"foreground": "#16a994",
|
|
1029
|
-
"fontStyle": "normal"
|
|
1030
|
-
}
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
"scope": "entity.other.attribute-name.id",
|
|
1034
|
-
"settings": {
|
|
1035
|
-
"foreground": "#7b43f8",
|
|
1036
|
-
"fontStyle": "normal"
|
|
1037
|
-
}
|
|
1038
|
-
},
|
|
1039
|
-
{
|
|
1040
|
-
"scope": ["entity.other.attribute-name.pseudo-element", "entity.other.attribute-name.pseudo-class"],
|
|
1041
|
-
"settings": { "foreground": "#08c0ef" }
|
|
1042
|
-
},
|
|
1043
|
-
{
|
|
1044
|
-
"scope": "meta.selector",
|
|
1045
|
-
"settings": { "foreground": "#fc2b73" }
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
"scope": "selector.sass",
|
|
1049
|
-
"settings": { "foreground": "#d52c36" }
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
"scope": "rgb-value",
|
|
1053
|
-
"settings": { "foreground": "#08c0ef" }
|
|
1054
|
-
},
|
|
1055
|
-
{
|
|
1056
|
-
"scope": "inline-color-decoration rgb-value",
|
|
1057
|
-
"settings": { "foreground": "#d5a910" }
|
|
1058
|
-
},
|
|
1059
|
-
{
|
|
1060
|
-
"scope": "less rgb-value",
|
|
1061
|
-
"settings": { "foreground": "#d5a910" }
|
|
1062
|
-
},
|
|
1063
|
-
{
|
|
1064
|
-
"scope": "control.elements",
|
|
1065
|
-
"settings": { "foreground": "#d5a910" }
|
|
1066
|
-
},
|
|
1067
|
-
{
|
|
1068
|
-
"scope": "keyword.operator.less",
|
|
1069
|
-
"settings": { "foreground": "#d5a910" }
|
|
1070
|
-
},
|
|
1071
|
-
{
|
|
1072
|
-
"scope": "entity.name.tag",
|
|
1073
|
-
"settings": { "foreground": "#d52c36" }
|
|
1074
|
-
},
|
|
1075
|
-
{
|
|
1076
|
-
"scope": "entity.other.attribute-name",
|
|
1077
|
-
"settings": {
|
|
1078
|
-
"foreground": "#16a994",
|
|
1079
|
-
"fontStyle": "normal"
|
|
1080
|
-
}
|
|
1081
|
-
},
|
|
1082
|
-
{
|
|
1083
|
-
"scope": "constant.character.entity",
|
|
1084
|
-
"settings": { "foreground": "#d52c36" }
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
"scope": "meta.tag",
|
|
1088
|
-
"settings": { "foreground": "#79797F" }
|
|
1089
|
-
},
|
|
1090
|
-
{
|
|
1091
|
-
"scope": "invalid.illegal.bad-ampersand.html",
|
|
1092
|
-
"settings": { "foreground": "#79797F" }
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
"scope": "markup.heading",
|
|
1096
|
-
"settings": { "foreground": "#d52c36" }
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
"scope": ["markup.heading punctuation.definition.heading", "entity.name.section"],
|
|
1100
|
-
"settings": { "foreground": "#7b43f8" }
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"scope": "entity.name.section.markdown",
|
|
1104
|
-
"settings": { "foreground": "#d52c36" }
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
"scope": "punctuation.definition.heading.markdown",
|
|
1108
|
-
"settings": { "foreground": "#d52c36" }
|
|
1109
|
-
},
|
|
1110
|
-
{
|
|
1111
|
-
"scope": "markup.heading.setext",
|
|
1112
|
-
"settings": { "foreground": "#79797F" }
|
|
1113
|
-
},
|
|
1114
|
-
{
|
|
1115
|
-
"scope": ["markup.heading.setext.1.markdown", "markup.heading.setext.2.markdown"],
|
|
1116
|
-
"settings": { "foreground": "#d52c36" }
|
|
1117
|
-
},
|
|
1118
|
-
{
|
|
1119
|
-
"scope": ["markup.bold", "todo.bold"],
|
|
1120
|
-
"settings": { "foreground": "#d5a910" }
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"scope": "punctuation.definition.bold",
|
|
1124
|
-
"settings": { "foreground": "#d5a910" }
|
|
1125
|
-
},
|
|
1126
|
-
{
|
|
1127
|
-
"scope": "punctuation.definition.bold.markdown",
|
|
1128
|
-
"settings": { "foreground": "#d5a910" }
|
|
1129
|
-
},
|
|
1130
|
-
{
|
|
1131
|
-
"scope": [
|
|
1132
|
-
"markup.italic",
|
|
1133
|
-
"punctuation.definition.italic",
|
|
1134
|
-
"todo.emphasis"
|
|
1135
|
-
],
|
|
1136
|
-
"settings": {
|
|
1137
|
-
"foreground": "#fc2b73",
|
|
1138
|
-
"fontStyle": "italic"
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
{
|
|
1142
|
-
"scope": "emphasis md",
|
|
1143
|
-
"settings": { "foreground": "#fc2b73" }
|
|
1144
|
-
},
|
|
1145
|
-
{
|
|
1146
|
-
"scope": "markup.italic.markdown",
|
|
1147
|
-
"settings": { "fontStyle": "italic" }
|
|
1148
|
-
},
|
|
1149
|
-
{
|
|
1150
|
-
"scope": ["markup.underline.link.markdown", "markup.underline.link.image.markdown"],
|
|
1151
|
-
"settings": { "foreground": "#fc2b73" }
|
|
1152
|
-
},
|
|
1153
|
-
{
|
|
1154
|
-
"scope": ["string.other.link.title.markdown", "string.other.link.description.markdown"],
|
|
1155
|
-
"settings": { "foreground": "#7b43f8" }
|
|
1156
|
-
},
|
|
1157
|
-
{
|
|
1158
|
-
"scope": "punctuation.definition.metadata.markdown",
|
|
1159
|
-
"settings": { "foreground": "#d52c36" }
|
|
1160
|
-
},
|
|
1161
|
-
{
|
|
1162
|
-
"scope": ["markup.inline.raw.markdown", "markup.inline.raw.string.markdown"],
|
|
1163
|
-
"settings": { "foreground": "#199f43" }
|
|
1164
|
-
},
|
|
1165
|
-
{
|
|
1166
|
-
"scope": "punctuation.definition.list.begin.markdown",
|
|
1167
|
-
"settings": { "foreground": "#d52c36" }
|
|
1168
|
-
},
|
|
1169
|
-
{
|
|
1170
|
-
"scope": "punctuation.definition.list.markdown",
|
|
1171
|
-
"settings": { "foreground": "#d52c36" }
|
|
1172
|
-
},
|
|
1173
|
-
{
|
|
1174
|
-
"scope": "beginning.punctuation.definition.list.markdown",
|
|
1175
|
-
"settings": { "foreground": "#d52c36" }
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"scope": ["punctuation.definition.string.begin.markdown", "punctuation.definition.string.end.markdown"],
|
|
1179
|
-
"settings": { "foreground": "#d52c36" }
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"scope": "markup.quote.markdown",
|
|
1183
|
-
"settings": { "foreground": "#84848A" }
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
1186
|
-
"scope": "keyword.other.unit",
|
|
1187
|
-
"settings": { "foreground": "#d52c36" }
|
|
1188
|
-
},
|
|
1189
|
-
{
|
|
1190
|
-
"scope": "markup.changed.diff",
|
|
1191
|
-
"settings": { "foreground": "#d5a910" }
|
|
1192
|
-
},
|
|
1193
|
-
{
|
|
1194
|
-
"scope": [
|
|
1195
|
-
"meta.diff.header.from-file",
|
|
1196
|
-
"meta.diff.header.to-file",
|
|
1197
|
-
"punctuation.definition.from-file.diff",
|
|
1198
|
-
"punctuation.definition.to-file.diff"
|
|
1199
|
-
],
|
|
1200
|
-
"settings": { "foreground": "#7b43f8" }
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"scope": "markup.inserted.diff",
|
|
1204
|
-
"settings": { "foreground": "#199f43" }
|
|
1205
|
-
},
|
|
1206
|
-
{
|
|
1207
|
-
"scope": "markup.deleted.diff",
|
|
1208
|
-
"settings": { "foreground": "#d52c36" }
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
"scope": "string.regexp",
|
|
1212
|
-
"settings": { "foreground": "#17a5af" }
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"scope": "constant.other.character-class.regexp",
|
|
1216
|
-
"settings": { "foreground": "#d52c36" }
|
|
1217
|
-
},
|
|
1218
|
-
{
|
|
1219
|
-
"scope": "keyword.operator.quantifier.regexp",
|
|
1220
|
-
"settings": { "foreground": "#d5a910" }
|
|
1221
|
-
},
|
|
1222
|
-
{
|
|
1223
|
-
"scope": "constant.character.escape",
|
|
1224
|
-
"settings": { "foreground": "#1ca1c7" }
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"scope": "source.json meta.structure.dictionary.json > string.quoted.json",
|
|
1228
|
-
"settings": { "foreground": "#d52c36" }
|
|
1229
|
-
},
|
|
1230
|
-
{
|
|
1231
|
-
"scope": "source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string",
|
|
1232
|
-
"settings": { "foreground": "#d52c36" }
|
|
1233
|
-
},
|
|
1234
|
-
{
|
|
1235
|
-
"scope": [
|
|
1236
|
-
"source.json meta.structure.dictionary.json > value.json > string.quoted.json",
|
|
1237
|
-
"source.json meta.structure.array.json > value.json > string.quoted.json",
|
|
1238
|
-
"source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation",
|
|
1239
|
-
"source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"
|
|
1240
|
-
],
|
|
1241
|
-
"settings": { "foreground": "#199f43" }
|
|
1242
|
-
},
|
|
1243
|
-
{
|
|
1244
|
-
"scope": ["source.json meta.structure.dictionary.json > constant.language.json", "source.json meta.structure.array.json > constant.language.json"],
|
|
1245
|
-
"settings": { "foreground": "#08c0ef" }
|
|
1246
|
-
},
|
|
1247
|
-
{
|
|
1248
|
-
"scope": "support.type.property-name.json",
|
|
1249
|
-
"settings": { "foreground": "#d52c36" }
|
|
1250
|
-
},
|
|
1251
|
-
{
|
|
1252
|
-
"scope": "support.type.property-name.json punctuation",
|
|
1253
|
-
"settings": { "foreground": "#d52c36" }
|
|
1254
|
-
},
|
|
1255
|
-
{
|
|
1256
|
-
"scope": "punctuation.definition.block.sequence.item.yaml",
|
|
1257
|
-
"settings": { "foreground": "#79797F" }
|
|
1258
|
-
},
|
|
1259
|
-
{
|
|
1260
|
-
"scope": "block.scope.end",
|
|
1261
|
-
"settings": { "foreground": "#79797F" }
|
|
1262
|
-
},
|
|
1263
|
-
{
|
|
1264
|
-
"scope": "block.scope.begin",
|
|
1265
|
-
"settings": { "foreground": "#79797F" }
|
|
1266
|
-
},
|
|
1267
|
-
{
|
|
1268
|
-
"scope": "token.info-token",
|
|
1269
|
-
"settings": { "foreground": "#7b43f8" }
|
|
1270
|
-
},
|
|
1271
|
-
{
|
|
1272
|
-
"scope": "token.warn-token",
|
|
1273
|
-
"settings": { "foreground": "#d5a910" }
|
|
1274
|
-
},
|
|
1275
|
-
{
|
|
1276
|
-
"scope": "token.error-token",
|
|
1277
|
-
"settings": { "foreground": "#f44747" }
|
|
1278
|
-
},
|
|
1279
|
-
{
|
|
1280
|
-
"scope": "token.debug-token",
|
|
1281
|
-
"settings": { "foreground": "#fc2b73" }
|
|
1282
|
-
},
|
|
1283
|
-
{
|
|
1284
|
-
"scope": "invalid.illegal",
|
|
1285
|
-
"settings": { "foreground": "#ffffff" }
|
|
1286
|
-
},
|
|
1287
|
-
{
|
|
1288
|
-
"scope": "invalid.broken",
|
|
1289
|
-
"settings": { "foreground": "#ffffff" }
|
|
1290
|
-
},
|
|
1291
|
-
{
|
|
1292
|
-
"scope": "invalid.deprecated",
|
|
1293
|
-
"settings": { "foreground": "#ffffff" }
|
|
1294
|
-
},
|
|
1295
|
-
{
|
|
1296
|
-
"scope": "invalid.unimplemented",
|
|
1297
|
-
"settings": { "foreground": "#ffffff" }
|
|
1298
|
-
}
|
|
1299
|
-
];
|
|
1300
|
-
var semanticTokenColors = {
|
|
1301
|
-
"comment": "#84848A",
|
|
1302
|
-
"string": "#199f43",
|
|
1303
|
-
"number": "#1ca1c7",
|
|
1304
|
-
"regexp": "#17a5af",
|
|
1305
|
-
"keyword": "#fc2b73",
|
|
1306
|
-
"variable": "#d47628",
|
|
1307
|
-
"parameter": "#79797F",
|
|
1308
|
-
"property": "#d47628",
|
|
1309
|
-
"function": "#7b43f8",
|
|
1310
|
-
"method": "#7b43f8",
|
|
1311
|
-
"type": "#c635e4",
|
|
1312
|
-
"class": "#c635e4",
|
|
1313
|
-
"namespace": "#d5a910",
|
|
1314
|
-
"enumMember": "#08c0ef",
|
|
1315
|
-
"variable.constant": "#d5a910",
|
|
1316
|
-
"variable.defaultLibrary": "#d5a910"
|
|
1317
|
-
};
|
|
1318
|
-
var pierre_light_default = {
|
|
1319
|
-
name,
|
|
1320
|
-
type,
|
|
1321
|
-
colors,
|
|
1322
|
-
tokenColors,
|
|
1323
|
-
semanticTokenColors
|
|
1324
|
-
};
|
|
1325
|
-
|
|
1326
|
-
//#endregion
|
|
1327
|
-
export { colors, pierre_light_default as default, name, semanticTokenColors, tokenColors, type };
|
|
1328
|
-
//# sourceMappingURL=pierre-light.js.map
|