@kiberon-labs/behave-graph-flow 2.0.0 → 3.0.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/.storybook/manager.ts +6 -0
- package/.storybook/preview.ts +49 -1
- package/.storybook/styles.css +9 -3
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +368 -0
- package/dist/AnyControlImpl-Ds-CShIB.js +20 -0
- package/dist/AnyControlImpl-Ds-CShIB.js.map +1 -0
- package/dist/DocumentationBrowserPanelImpl-deZNzFX8.js +166 -0
- package/dist/DocumentationBrowserPanelImpl-deZNzFX8.js.map +1 -0
- package/dist/index.css +36 -33
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1865 -550
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14357 -11221
- package/dist/index.js.map +1 -1
- package/dist/noteImpl-KkrrWgJd.js +242 -0
- package/dist/noteImpl-KkrrWgJd.js.map +1 -0
- package/dist/styles.module-CvmpDkZj.css +3 -0
- package/dist/styles.module-CvmpDkZj.css.map +1 -0
- package/dist/styles.module-DZxg8aW9.js +271 -0
- package/dist/styles.module-DZxg8aW9.js.map +1 -0
- package/dist/useChangeNodeData-ChQGK7AI.js +23 -0
- package/dist/useChangeNodeData-ChQGK7AI.js.map +1 -0
- package/docs/protocol.md +43 -20
- package/package.json +5 -9
- package/src/components/FloatingToolbar/index.module.css +5 -13
- package/src/components/FloatingToolbar/index.tsx +9 -9
- package/src/components/Flow.tsx +34 -23
- package/src/components/contextMenus/DynamicContextMenu.tsx +85 -0
- package/src/components/contextMenus/NodePicker.module.css +13 -13
- package/src/components/contextMenus/edge.tsx +9 -95
- package/src/components/contextMenus/node.tsx +9 -149
- package/src/components/contextMenus/selection.tsx +5 -71
- package/src/components/controls/any/AnyControlImpl.tsx +14 -0
- package/src/components/controls/any/index.tsx +13 -2
- package/src/components/edges/index.tsx +75 -69
- package/src/components/layoutController/index.module.css +3 -0
- package/src/components/layoutController/index.tsx +24 -1
- package/src/components/layoutController/utils.ts +46 -3
- package/src/components/menubar/defaults.tsx +55 -19
- package/src/components/menubar/menuItem.module.css +18 -3
- package/src/components/menubar/menuItem.tsx +34 -1
- package/src/components/nodes/behave/NodeContainer.module.css +26 -25
- package/src/components/nodes/group/index.tsx +3 -3
- package/src/components/nodes/wrapper/styles.module.css +6 -32
- package/src/components/panels/alignment/index.module.css +0 -10
- package/src/components/panels/alignment/index.tsx +4 -4
- package/src/components/panels/base/styles.module.css +2 -2
- package/src/components/panels/common/PanelHeader.module.css +24 -0
- package/src/components/panels/common/PanelHeader.tsx +22 -0
- package/src/components/panels/common/SectionTitle.module.css +13 -0
- package/src/components/panels/common/SectionTitle.tsx +10 -0
- package/src/components/panels/events/EditEventPanel.tsx +14 -5
- package/src/components/panels/events/ManageEventsPanel.tsx +11 -8
- package/src/components/panels/events/styles.module.css +6 -64
- package/src/components/panels/graphProperties/index.tsx +125 -0
- package/src/components/panels/history/index.tsx +2 -2
- package/src/components/panels/history/styles.module.css +0 -9
- package/src/components/panels/keymaps/index.module.css +3 -13
- package/src/components/panels/keymaps/index.tsx +1 -2
- package/src/components/panels/layers/index.tsx +20 -15
- package/src/components/panels/layers/styles.module.css +9 -12
- package/src/components/panels/legend/index.tsx +1 -1
- package/src/components/panels/logs/index.module.css +25 -19
- package/src/components/panels/logs/index.tsx +7 -7
- package/src/components/panels/nodeInputs/InputsGroup.tsx +1 -0
- package/src/components/panels/nodeInputs/NodeSettings.tsx +2 -2
- package/src/components/panels/nodeInputs/NodeTitleEditor.tsx +1 -1
- package/src/components/panels/nodeInputs/OutputsGroup.tsx +2 -12
- package/src/components/panels/nodeInputs/index.module.css +99 -75
- package/src/components/panels/nodeInputs/index.tsx +21 -11
- package/src/components/panels/nodeInputs/useNodeHandlers.ts +2 -2
- package/src/components/panels/nodeInputs/useNodeInputsData.ts +23 -43
- package/src/components/panels/nodePicker/index.tsx +8 -8
- package/src/components/panels/panel/index.module.css +7 -7
- package/src/components/panels/search/index.module.css +0 -50
- package/src/components/panels/search/index.tsx +2 -2
- package/src/components/panels/systemSettings/ConversionsSettings.tsx +203 -0
- package/src/components/panels/systemSettings/index.tsx +221 -176
- package/src/components/panels/systemSettings/styles.module.css +135 -8
- package/src/components/panels/traces/GridLines.tsx +1 -1
- package/src/components/panels/traces/TimeGrid.tsx +3 -3
- package/src/components/panels/traces/TraceLane.tsx +1 -1
- package/src/components/panels/traces/index.module.css +1 -8
- package/src/components/panels/traces/index.tsx +8 -4
- package/src/components/panels/traces/useDerivedSpans.ts +241 -146
- package/src/components/panels/traces/utils.ts +8 -0
- package/src/components/panels/variables/CreateVariableScreen.tsx +3 -3
- package/src/components/panels/variables/ManageVariablesScreen.tsx +12 -9
- package/src/components/panels/variables/index.tsx +2 -2
- package/src/components/panels/variables/styles.module.css +4 -91
- package/src/components/primitives/icon.module.css +4 -4
- package/src/components/sockets/input/index.tsx +9 -2
- package/src/components/sockets/input/styles.module.css +2 -3
- package/src/components/sockets/output/index.tsx +10 -3
- package/src/components/sockets/output/styles.module.css +1 -6
- package/src/css/notes.css +135 -0
- package/src/css/prosemirror.css +3 -3
- package/src/css/rc-dock.css +143 -43
- package/src/css/rc-menu.css +56 -55
- package/src/css/themes/kiberon.css +127 -0
- package/src/css/vars.css +197 -13
- package/src/css/vscode-elements.css +124 -0
- package/src/generators/CallSubgraphGenerator.tsx +136 -0
- package/src/generators/CustomEventOnTriggeredGenerator.tsx +2 -2
- package/src/generators/GraphBoundaryGenerator.module.css +32 -0
- package/src/generators/GraphBoundaryGenerator.tsx +193 -0
- package/src/generators/SequenceGenerator.tsx +2 -2
- package/src/generators/SwitchOnIntegerGenerator.tsx +2 -2
- package/src/generators/SwitchOnStringGenerator.tsx +2 -2
- package/src/generators/callSubgraphSync.ts +126 -0
- package/src/generators/registerDefaultGenerators.ts +21 -0
- package/src/generators/registerDefaults.ts +26 -0
- package/src/hooks/useBehaveGraphFlow.ts +2 -2
- package/src/hooks/useFlowHandlers.ts +47 -9
- package/src/hooks/useWasdPan.ts +26 -4
- package/src/index.css +4 -16
- package/src/index.ts +17 -0
- package/src/manifest/contributionRegistry.ts +93 -0
- package/src/manifest/index.ts +4 -0
- package/src/manifest/loadManifest.ts +82 -0
- package/src/manifest/manifestPlugin.ts +29 -0
- package/src/manifest/passthroughValueType.ts +40 -0
- package/src/plugin/alignment/index.ts +22 -12
- package/src/plugin/autosave/controller.ts +366 -0
- package/src/plugin/autosave/index.tsx +114 -0
- package/src/plugin/autosave/panel/BackupPanel.tsx +141 -0
- package/src/plugin/autosave/panel/index.tsx +1 -0
- package/src/plugin/autosave/panel/styles.module.css +56 -0
- package/src/plugin/autosave/settings.ts +65 -0
- package/src/plugin/autosave/storage.ts +147 -0
- package/src/plugin/docs/index.tsx +2 -4
- package/src/plugin/docs/panel/DocumentationBrowserPanelImpl.tsx +200 -0
- package/src/plugin/docs/panel/index.tsx +15 -194
- package/src/plugin/docs/panel/styles.module.css +8 -8
- package/src/plugin/graphrunner/actions.ts +258 -185
- package/src/plugin/graphrunner/buttons.tsx +34 -26
- package/src/plugin/graphrunner/client.ts +4 -1
- package/src/plugin/graphrunner/index.tsx +29 -100
- package/src/plugin/graphrunner/panel.tsx +2 -2
- package/src/plugin/graphrunner/runController.ts +283 -0
- package/src/plugin/graphrunner/runner.ts +21 -192
- package/src/plugin/graphrunner/store.ts +14 -24
- package/src/plugin/graphrunner/styles.module.css +17 -57
- package/src/plugin/graphrunner/transport.ts +26 -0
- package/src/plugin/graphrunner/types.ts +21 -0
- package/src/plugin/graphrunner-local/execution-utils.ts +260 -80
- package/src/plugin/graphrunner-local/index.tsx +8 -2
- package/src/plugin/graphrunner-local/panel.tsx +131 -175
- package/src/plugin/graphrunner-local/styles.module.css +57 -76
- package/src/plugin/graphrunner-local/transport.ts +151 -184
- package/src/plugin/graphrunner-webworker/graph-executor.worker.ts +2 -0
- package/src/plugin/graphrunner-webworker/index.tsx +4 -10
- package/src/plugin/graphrunner-webworker/store.ts +9 -0
- package/src/plugin/kitchen-sink/index.ts +38 -0
- package/src/{layout/dagre.tsx → plugin/layout/dagre.ts} +17 -5
- package/src/{layout → plugin/layout}/elk.ts +22 -6
- package/src/plugin/layout/index.ts +80 -0
- package/src/plugin/notes/FormatToolbar.tsx +200 -0
- package/src/plugin/notes/index.tsx +191 -0
- package/src/plugin/notes/nodeActions.ts +100 -0
- package/src/plugin/notes/note.tsx +20 -0
- package/src/plugin/notes/noteImpl.tsx +89 -0
- package/src/plugin/realtime/realtimeRunner.ts +58 -4
- package/src/specifics/CustomEventOnTriggeredSpecific.tsx +2 -2
- package/src/specifics/CustomEventTriggerSpecific.tsx +2 -2
- package/src/specifics/VariableGetSpecific.tsx +2 -2
- package/src/specifics/VariableSetSpecific.tsx +2 -2
- package/src/store/actions.tsx +5 -5
- package/src/store/commands.ts +278 -0
- package/src/store/contextMenu.ts +192 -0
- package/src/store/conversions.ts +47 -0
- package/src/store/flow.tsx +23 -38
- package/src/store/graphMeta.ts +39 -0
- package/src/store/hotKeys.tsx +301 -260
- package/src/store/layers.ts +3 -3
- package/src/store/registry.ts +12 -4
- package/src/store/selection.ts +3 -3
- package/src/store/settings.ts +82 -82
- package/src/store/settingsSchema.ts +210 -0
- package/src/store/tabs.ts +5 -1
- package/src/store/traces.ts +3 -3
- package/src/system/graph.ts +11 -14
- package/src/system/graphSession.ts +172 -0
- package/src/system/index.ts +3 -0
- package/src/system/notifications.ts +13 -0
- package/src/system/persistence.ts +82 -0
- package/src/system/plugin.ts +28 -0
- package/src/system/provider.tsx +64 -0
- package/src/system/system.ts +518 -88
- package/src/system/tabLoader.tsx +70 -32
- package/src/system/undoRedo.ts +1 -1
- package/src/transformers/Uigraph.ts +5 -4
- package/src/transformers/contract.ts +87 -0
- package/src/transformers/flowToBehave.ts +13 -5
- package/src/types/nodes.ts +8 -3
- package/src/types.ts +2 -0
- package/src/util/autoConvert.ts +200 -0
- package/src/util/isValidConnection.ts +23 -2
- package/stories/defaults/defaultStoryProvider.tsx +17 -14
- package/stories/defaults/systemGenerator.ts +6 -1
- package/stories/{components/nodes/comment.stories.tsx → plugins/notes.stories.tsx} +24 -30
- package/tests/autoConvert.test.ts +329 -0
- package/tests/autosavePlugin.test.ts +204 -0
- package/tests/callSubgraphSync.test.ts +148 -0
- package/tests/commandRegistry.test.ts +137 -0
- package/tests/contract.test.ts +51 -0
- package/tests/contractSerialize.test.ts +62 -0
- package/tests/deriveSpans.test.ts +71 -0
- package/tests/flowToBehave.test.ts +2 -1
- package/tests/hotkeys.test.ts +79 -0
- package/tests/keepAliveLifecycle.test.ts +167 -0
- package/tests/loadManifest.test.ts +113 -0
- package/tests/noteMarkdown.test.ts +65 -0
- package/tests/notesPlugin.test.ts +162 -0
- package/tests/persistence.test.ts +51 -0
- package/tests/saveLoad.test.ts +7 -6
- package/tests/settings.test.ts +178 -0
- package/tests/traceStore.test.ts +46 -0
- package/tests/visual/README.md +2 -2
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-conversation-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-events-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-history-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-keymaps-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-layers-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-legend-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-localGraphRunner-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-logs-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-nodeInputs-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-nodePicker-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-panel-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-search-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-systemSettings-chromium-win32.png +0 -0
- package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-variables-chromium-win32.png +0 -0
- package/tests/visual/panels.visual.test.tsx +3 -3
- package/tests/wasdPan.test.ts +71 -0
- package/vitest.config.ts +1 -1
- package/vitest.visual.config.ts +7 -0
- package/.storybook/vscode.css +0 -814
- package/src/components/nodes/comment/FormatToolbar.tsx +0 -118
- package/src/components/nodes/comment/comment.tsx +0 -103
- package/src/components/nodes/comment/styles.module.css +0 -150
- package/src/components/panels/conversation/index.module.css +0 -151
- package/src/components/panels/conversation/index.tsx +0 -162
- package/src/components/panels/events/CustomEventsEditor.tsx +0 -384
- package/src/css/vscode.css +0 -13
- package/src/hooks/useDetachNodes.ts +0 -39
- package/src/plugin/graphrunner-webworker/types.ts +0 -17
- package/src/specifics/registerDefaultSpecifics.ts +0 -5
- package/src/store/chat.ts +0 -73
- package/src/store/graphRunnerClient.ts +0 -110
package/.storybook/vscode.css
DELETED
|
@@ -1,814 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--vscode-editor-font-family: "Consolas", "Courier New", monospace;
|
|
3
|
-
--vscode-editor-font-weight: normal;
|
|
4
|
-
--vscode-editor-font-size: 14px;
|
|
5
|
-
--vscode-editor-line-height: 22px;
|
|
6
|
-
--vscode-foreground: #cccccc;
|
|
7
|
-
--vscode-disabledForeground: rgba(204, 204, 204, 0.5);
|
|
8
|
-
--vscode-errorForeground: #f85149;
|
|
9
|
-
--vscode-descriptionForeground: #9d9d9d;
|
|
10
|
-
--vscode-icon-foreground: #cccccc;
|
|
11
|
-
--vscode-focusBorder: #0078d4;
|
|
12
|
-
--vscode-textLink-foreground: #4daafc;
|
|
13
|
-
--vscode-textLink-activeForeground: #4daafc;
|
|
14
|
-
--vscode-textSeparator-foreground: #21262d;
|
|
15
|
-
--vscode-textPreformat-foreground: #d0d0d0;
|
|
16
|
-
--vscode-textPreformat-background: #3c3c3c;
|
|
17
|
-
--vscode-textBlockQuote-background: #2b2b2b;
|
|
18
|
-
--vscode-textBlockQuote-border: #616161;
|
|
19
|
-
--vscode-textCodeBlock-background: #2b2b2b;
|
|
20
|
-
--vscode-sash-hoverBorder: #0078d4;
|
|
21
|
-
--vscode-badge-background: #616161;
|
|
22
|
-
--vscode-badge-foreground: #f8f8f8;
|
|
23
|
-
--vscode-activityWarningBadge-foreground: #ffffff;
|
|
24
|
-
--vscode-activityWarningBadge-background: #b27c00;
|
|
25
|
-
--vscode-activityErrorBadge-foreground: #000000;
|
|
26
|
-
--vscode-activityErrorBadge-background: #f14c4c;
|
|
27
|
-
--vscode-scrollbar-shadow: #000000;
|
|
28
|
-
--vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
|
|
29
|
-
--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
30
|
-
--vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
|
31
|
-
--vscode-progressBar-background: #0078d4;
|
|
32
|
-
--vscode-chart-line: #236b8e;
|
|
33
|
-
--vscode-chart-axis: rgba(191, 191, 191, 0.4);
|
|
34
|
-
--vscode-chart-guide: rgba(191, 191, 191, 0.2);
|
|
35
|
-
--vscode-editor-background: #1f1f1f;
|
|
36
|
-
--vscode-editor-foreground: #cccccc;
|
|
37
|
-
--vscode-editorStickyScroll-background: #1f1f1f;
|
|
38
|
-
--vscode-editorStickyScrollGutter-background: #1f1f1f;
|
|
39
|
-
--vscode-editorStickyScrollHover-background: #2a2d2e;
|
|
40
|
-
--vscode-editorStickyScroll-shadow: #000000;
|
|
41
|
-
--vscode-editorWidget-background: #202020;
|
|
42
|
-
--vscode-editorWidget-foreground: #cccccc;
|
|
43
|
-
--vscode-editorWidget-border: #454545;
|
|
44
|
-
--vscode-editorError-foreground: #f14c4c;
|
|
45
|
-
--vscode-editorWarning-foreground: #cca700;
|
|
46
|
-
--vscode-editorInfo-foreground: #59a4f9;
|
|
47
|
-
--vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
|
|
48
|
-
--vscode-editorLink-activeForeground: #4e94ce;
|
|
49
|
-
--vscode-editor-selectionBackground: #264f78;
|
|
50
|
-
--vscode-editor-inactiveSelectionBackground: #3a3d41;
|
|
51
|
-
--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
|
|
52
|
-
--vscode-editor-compositionBorder: #ffffff;
|
|
53
|
-
--vscode-editor-findMatchBackground: #9e6a03;
|
|
54
|
-
--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
55
|
-
--vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
|
|
56
|
-
--vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
|
|
57
|
-
--vscode-editorHoverWidget-background: #202020;
|
|
58
|
-
--vscode-editorHoverWidget-foreground: #cccccc;
|
|
59
|
-
--vscode-editorHoverWidget-border: #454545;
|
|
60
|
-
--vscode-editorHoverWidget-statusBarBackground: #262626;
|
|
61
|
-
--vscode-editorInlayHint-foreground: #969696;
|
|
62
|
-
--vscode-editorInlayHint-background: rgba(97, 97, 97, 0.1);
|
|
63
|
-
--vscode-editorInlayHint-typeForeground: #969696;
|
|
64
|
-
--vscode-editorInlayHint-typeBackground: rgba(97, 97, 97, 0.1);
|
|
65
|
-
--vscode-editorInlayHint-parameterForeground: #969696;
|
|
66
|
-
--vscode-editorInlayHint-parameterBackground: rgba(97, 97, 97, 0.1);
|
|
67
|
-
--vscode-editorLightBulb-foreground: #ffcc00;
|
|
68
|
-
--vscode-editorLightBulbAutoFix-foreground: #75beff;
|
|
69
|
-
--vscode-editorLightBulbAi-foreground: #ffcc00;
|
|
70
|
-
--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
|
|
71
|
-
--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
|
|
72
|
-
--vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.2);
|
|
73
|
-
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
|
74
|
-
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
|
75
|
-
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
|
76
|
-
--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
|
|
77
|
-
--vscode-diffEditor-unchangedRegionBackground: #181818;
|
|
78
|
-
--vscode-diffEditor-unchangedRegionForeground: #cccccc;
|
|
79
|
-
--vscode-diffEditor-unchangedCodeBackground: rgba(116, 116, 116, 0.16);
|
|
80
|
-
--vscode-widget-shadow: rgba(0, 0, 0, 0.36);
|
|
81
|
-
--vscode-widget-border: #313131;
|
|
82
|
-
--vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
|
|
83
|
-
--vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
|
|
84
|
-
--vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
|
|
85
|
-
--vscode-breadcrumb-background: #1f1f1f;
|
|
86
|
-
--vscode-breadcrumb-focusForeground: #e0e0e0;
|
|
87
|
-
--vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
|
|
88
|
-
--vscode-breadcrumbPicker-background: #202020;
|
|
89
|
-
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
|
90
|
-
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
|
91
|
-
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
|
92
|
-
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
|
93
|
-
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
|
94
|
-
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
|
95
|
-
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
|
96
|
-
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
|
97
|
-
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
|
98
|
-
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
99
|
-
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
100
|
-
--vscode-problemsErrorIcon-foreground: #f14c4c;
|
|
101
|
-
--vscode-problemsWarningIcon-foreground: #cca700;
|
|
102
|
-
--vscode-problemsInfoIcon-foreground: #59a4f9;
|
|
103
|
-
--vscode-minimap-findMatchHighlight: rgba(234, 92, 0, 0.33);
|
|
104
|
-
--vscode-minimap-selectionOccurrenceHighlight: rgba(173, 214, 255, 0.15);
|
|
105
|
-
--vscode-minimap-selectionHighlight: #264f78;
|
|
106
|
-
--vscode-minimap-infoHighlight: #59a4f9;
|
|
107
|
-
--vscode-minimap-warningHighlight: #cca700;
|
|
108
|
-
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
|
109
|
-
--vscode-minimap-foregroundOpacity: #000000;
|
|
110
|
-
--vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
|
|
111
|
-
--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
|
|
112
|
-
--vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
|
|
113
|
-
--vscode-charts-foreground: #cccccc;
|
|
114
|
-
--vscode-charts-lines: rgba(204, 204, 204, 0.5);
|
|
115
|
-
--vscode-charts-red: #f14c4c;
|
|
116
|
-
--vscode-charts-blue: #59a4f9;
|
|
117
|
-
--vscode-charts-yellow: #cca700;
|
|
118
|
-
--vscode-charts-orange: rgba(234, 92, 0, 0.33);
|
|
119
|
-
--vscode-charts-green: #89d185;
|
|
120
|
-
--vscode-charts-purple: #b180d7;
|
|
121
|
-
--vscode-input-background: #313131;
|
|
122
|
-
--vscode-input-foreground: #cccccc;
|
|
123
|
-
--vscode-input-border: #3c3c3c;
|
|
124
|
-
--vscode-inputOption-activeBorder: #2488db;
|
|
125
|
-
--vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
|
|
126
|
-
--vscode-inputOption-activeBackground: rgba(36, 137, 219, 0.51);
|
|
127
|
-
--vscode-inputOption-activeForeground: #ffffff;
|
|
128
|
-
--vscode-input-placeholderForeground: #989898;
|
|
129
|
-
--vscode-inputValidation-infoBackground: #063b49;
|
|
130
|
-
--vscode-inputValidation-infoBorder: #007acc;
|
|
131
|
-
--vscode-inputValidation-warningBackground: #352a05;
|
|
132
|
-
--vscode-inputValidation-warningBorder: #b89500;
|
|
133
|
-
--vscode-inputValidation-errorBackground: #5a1d1d;
|
|
134
|
-
--vscode-inputValidation-errorBorder: #be1100;
|
|
135
|
-
--vscode-dropdown-background: #313131;
|
|
136
|
-
--vscode-dropdown-listBackground: #1f1f1f;
|
|
137
|
-
--vscode-dropdown-foreground: #cccccc;
|
|
138
|
-
--vscode-dropdown-border: #3c3c3c;
|
|
139
|
-
--vscode-button-foreground: #ffffff;
|
|
140
|
-
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
|
141
|
-
--vscode-button-background: #0078d4;
|
|
142
|
-
--vscode-button-hoverBackground: #026ec1;
|
|
143
|
-
--vscode-button-border: rgba(255, 255, 255, 0.07);
|
|
144
|
-
--vscode-button-secondaryForeground: #cccccc;
|
|
145
|
-
--vscode-button-secondaryBackground: #313131;
|
|
146
|
-
--vscode-button-secondaryHoverBackground: #3c3c3c;
|
|
147
|
-
--vscode-radio-activeForeground: #ffffff;
|
|
148
|
-
--vscode-radio-activeBackground: rgba(36, 137, 219, 0.51);
|
|
149
|
-
--vscode-radio-activeBorder: #2488db;
|
|
150
|
-
--vscode-radio-inactiveBorder: rgba(255, 255, 255, 0.2);
|
|
151
|
-
--vscode-radio-inactiveHoverBackground: rgba(90, 93, 94, 0.5);
|
|
152
|
-
--vscode-checkbox-background: #313131;
|
|
153
|
-
--vscode-checkbox-selectBackground: #202020;
|
|
154
|
-
--vscode-checkbox-foreground: #cccccc;
|
|
155
|
-
--vscode-checkbox-border: #3c3c3c;
|
|
156
|
-
--vscode-checkbox-selectBorder: #cccccc;
|
|
157
|
-
--vscode-checkbox-disabled-background: #646464;
|
|
158
|
-
--vscode-checkbox-disabled-foreground: #989898;
|
|
159
|
-
--vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
|
|
160
|
-
--vscode-keybindingLabel-foreground: #cccccc;
|
|
161
|
-
--vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
|
|
162
|
-
--vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
|
|
163
|
-
--vscode-list-focusOutline: #0078d4;
|
|
164
|
-
--vscode-list-activeSelectionBackground: #04395e;
|
|
165
|
-
--vscode-list-activeSelectionForeground: #ffffff;
|
|
166
|
-
--vscode-list-activeSelectionIconForeground: #ffffff;
|
|
167
|
-
--vscode-list-inactiveSelectionBackground: #37373d;
|
|
168
|
-
--vscode-list-hoverBackground: #2a2d2e;
|
|
169
|
-
--vscode-list-dropBackground: #383b3d;
|
|
170
|
-
--vscode-list-dropBetweenBackground: #cccccc;
|
|
171
|
-
--vscode-list-highlightForeground: #2aaaff;
|
|
172
|
-
--vscode-list-focusHighlightForeground: #2aaaff;
|
|
173
|
-
--vscode-list-invalidItemForeground: #b89500;
|
|
174
|
-
--vscode-list-errorForeground: #f88070;
|
|
175
|
-
--vscode-list-warningForeground: #cca700;
|
|
176
|
-
--vscode-listFilterWidget-background: #202020;
|
|
177
|
-
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
|
178
|
-
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
|
179
|
-
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
|
|
180
|
-
--vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
|
|
181
|
-
--vscode-list-deemphasizedForeground: #8c8c8c;
|
|
182
|
-
--vscode-tree-indentGuidesStroke: #585858;
|
|
183
|
-
--vscode-tree-inactiveIndentGuidesStroke: rgba(88, 88, 88, 0.4);
|
|
184
|
-
--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
|
|
185
|
-
--vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
|
|
186
|
-
--vscode-editorActionList-background: #202020;
|
|
187
|
-
--vscode-editorActionList-foreground: #cccccc;
|
|
188
|
-
--vscode-editorActionList-focusForeground: #ffffff;
|
|
189
|
-
--vscode-editorActionList-focusBackground: #04395e;
|
|
190
|
-
--vscode-menu-border: #454545;
|
|
191
|
-
--vscode-menu-foreground: #cccccc;
|
|
192
|
-
--vscode-menu-background: #1f1f1f;
|
|
193
|
-
--vscode-menu-selectionForeground: #ffffff;
|
|
194
|
-
--vscode-menu-selectionBackground: #0078d4;
|
|
195
|
-
--vscode-menu-separatorBackground: #454545;
|
|
196
|
-
--vscode-quickInput-background: #222222;
|
|
197
|
-
--vscode-quickInput-foreground: #cccccc;
|
|
198
|
-
--vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
|
|
199
|
-
--vscode-pickerGroup-foreground: #3794ff;
|
|
200
|
-
--vscode-pickerGroup-border: #3c3c3c;
|
|
201
|
-
--vscode-quickInputList-focusForeground: #ffffff;
|
|
202
|
-
--vscode-quickInputList-focusIconForeground: #ffffff;
|
|
203
|
-
--vscode-quickInputList-focusBackground: #04395e;
|
|
204
|
-
--vscode-search-resultsInfoForeground: rgba(204, 204, 204, 0.65);
|
|
205
|
-
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
|
206
|
-
--vscode-editor-lineHighlightBorder: #282828;
|
|
207
|
-
--vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
|
|
208
|
-
--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
209
|
-
--vscode-editorCursor-foreground: #aeafad;
|
|
210
|
-
--vscode-editorMultiCursor-primary-foreground: #aeafad;
|
|
211
|
-
--vscode-editorMultiCursor-secondary-foreground: #aeafad;
|
|
212
|
-
--vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
|
|
213
|
-
--vscode-editorLineNumber-foreground: #6e7681;
|
|
214
|
-
--vscode-editorIndentGuide-background: rgba(227, 228, 226, 0.16);
|
|
215
|
-
--vscode-editorIndentGuide-activeBackground: rgba(227, 228, 226, 0.16);
|
|
216
|
-
--vscode-editorIndentGuide-background1: #404040;
|
|
217
|
-
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
|
218
|
-
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
|
219
|
-
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
|
220
|
-
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
|
221
|
-
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
|
222
|
-
--vscode-editorIndentGuide-activeBackground1: #707070;
|
|
223
|
-
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
224
|
-
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
225
|
-
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
226
|
-
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
227
|
-
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
228
|
-
--vscode-editorActiveLineNumber-foreground: #c6c6c6;
|
|
229
|
-
--vscode-editorLineNumber-activeForeground: #cccccc;
|
|
230
|
-
--vscode-editorRuler-foreground: #5a5a5a;
|
|
231
|
-
--vscode-editorCodeLens-foreground: #999999;
|
|
232
|
-
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
233
|
-
--vscode-editorBracketMatch-border: #888888;
|
|
234
|
-
--vscode-editorOverviewRuler-border: #010409;
|
|
235
|
-
--vscode-editorGutter-background: #1f1f1f;
|
|
236
|
-
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
|
|
237
|
-
--vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
|
|
238
|
-
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
239
|
-
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
|
240
|
-
--vscode-editorOverviewRuler-warningForeground: #cca700;
|
|
241
|
-
--vscode-editorOverviewRuler-infoForeground: #59a4f9;
|
|
242
|
-
--vscode-editorBracketHighlight-foreground1: #ffd700;
|
|
243
|
-
--vscode-editorBracketHighlight-foreground2: #da70d6;
|
|
244
|
-
--vscode-editorBracketHighlight-foreground3: #179fff;
|
|
245
|
-
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
|
246
|
-
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
|
247
|
-
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
|
248
|
-
--vscode-editorBracketHighlight-unexpectedBracket-foreground: rgba(255, 18, 18, 0.8);
|
|
249
|
-
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
|
250
|
-
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
|
251
|
-
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
|
252
|
-
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
|
253
|
-
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
|
254
|
-
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
|
255
|
-
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
|
256
|
-
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
257
|
-
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
258
|
-
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
259
|
-
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
260
|
-
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
261
|
-
--vscode-editorUnicodeHighlight-border: #cca700;
|
|
262
|
-
--vscode-diffEditor-move-border: rgba(139, 139, 139, 0.61);
|
|
263
|
-
--vscode-diffEditor-moveActive-border: #ffa500;
|
|
264
|
-
--vscode-diffEditor-unchangedRegionShadow: #000000;
|
|
265
|
-
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
|
266
|
-
--vscode-actionBar-toggledBackground: #383a49;
|
|
267
|
-
--vscode-symbolIcon-arrayForeground: #cccccc;
|
|
268
|
-
--vscode-symbolIcon-booleanForeground: #cccccc;
|
|
269
|
-
--vscode-symbolIcon-classForeground: #ee9d28;
|
|
270
|
-
--vscode-symbolIcon-colorForeground: #cccccc;
|
|
271
|
-
--vscode-symbolIcon-constantForeground: #cccccc;
|
|
272
|
-
--vscode-symbolIcon-constructorForeground: #b180d7;
|
|
273
|
-
--vscode-symbolIcon-enumeratorForeground: #ee9d28;
|
|
274
|
-
--vscode-symbolIcon-enumeratorMemberForeground: #75beff;
|
|
275
|
-
--vscode-symbolIcon-eventForeground: #ee9d28;
|
|
276
|
-
--vscode-symbolIcon-fieldForeground: #75beff;
|
|
277
|
-
--vscode-symbolIcon-fileForeground: #cccccc;
|
|
278
|
-
--vscode-symbolIcon-folderForeground: #cccccc;
|
|
279
|
-
--vscode-symbolIcon-functionForeground: #b180d7;
|
|
280
|
-
--vscode-symbolIcon-interfaceForeground: #75beff;
|
|
281
|
-
--vscode-symbolIcon-keyForeground: #cccccc;
|
|
282
|
-
--vscode-symbolIcon-keywordForeground: #cccccc;
|
|
283
|
-
--vscode-symbolIcon-methodForeground: #b180d7;
|
|
284
|
-
--vscode-symbolIcon-moduleForeground: #cccccc;
|
|
285
|
-
--vscode-symbolIcon-namespaceForeground: #cccccc;
|
|
286
|
-
--vscode-symbolIcon-nullForeground: #cccccc;
|
|
287
|
-
--vscode-symbolIcon-numberForeground: #cccccc;
|
|
288
|
-
--vscode-symbolIcon-objectForeground: #cccccc;
|
|
289
|
-
--vscode-symbolIcon-operatorForeground: #cccccc;
|
|
290
|
-
--vscode-symbolIcon-packageForeground: #cccccc;
|
|
291
|
-
--vscode-symbolIcon-propertyForeground: #cccccc;
|
|
292
|
-
--vscode-symbolIcon-referenceForeground: #cccccc;
|
|
293
|
-
--vscode-symbolIcon-snippetForeground: #cccccc;
|
|
294
|
-
--vscode-symbolIcon-stringForeground: #cccccc;
|
|
295
|
-
--vscode-symbolIcon-structForeground: #cccccc;
|
|
296
|
-
--vscode-symbolIcon-textForeground: #cccccc;
|
|
297
|
-
--vscode-symbolIcon-typeParameterForeground: #cccccc;
|
|
298
|
-
--vscode-symbolIcon-unitForeground: #cccccc;
|
|
299
|
-
--vscode-symbolIcon-variableForeground: #75beff;
|
|
300
|
-
--vscode-peekViewTitle-background: #252526;
|
|
301
|
-
--vscode-peekViewTitleLabel-foreground: #ffffff;
|
|
302
|
-
--vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
|
|
303
|
-
--vscode-peekView-border: #59a4f9;
|
|
304
|
-
--vscode-peekViewResult-background: #1f1f1f;
|
|
305
|
-
--vscode-peekViewResult-lineForeground: #bbbbbb;
|
|
306
|
-
--vscode-peekViewResult-fileForeground: #ffffff;
|
|
307
|
-
--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
|
|
308
|
-
--vscode-peekViewResult-selectionForeground: #ffffff;
|
|
309
|
-
--vscode-peekViewEditor-background: #1f1f1f;
|
|
310
|
-
--vscode-peekViewEditorGutter-background: #1f1f1f;
|
|
311
|
-
--vscode-peekViewEditorStickyScroll-background: #1f1f1f;
|
|
312
|
-
--vscode-peekViewEditorStickyScrollGutter-background: #1f1f1f;
|
|
313
|
-
--vscode-peekViewResult-matchHighlightBackground: rgba(187, 128, 9, 0.4);
|
|
314
|
-
--vscode-peekViewEditor-matchHighlightBackground: rgba(187, 128, 9, 0.4);
|
|
315
|
-
--vscode-editorMarkerNavigationError-background: #f14c4c;
|
|
316
|
-
--vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, 0.1);
|
|
317
|
-
--vscode-editorMarkerNavigationWarning-background: #cca700;
|
|
318
|
-
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, 0.1);
|
|
319
|
-
--vscode-editorMarkerNavigationInfo-background: #59a4f9;
|
|
320
|
-
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(89, 164, 249, 0.1);
|
|
321
|
-
--vscode-editorMarkerNavigation-background: #1f1f1f;
|
|
322
|
-
--vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
|
|
323
|
-
--vscode-editor-foldPlaceholderForeground: #808080;
|
|
324
|
-
--vscode-editorGutter-foldingControlForeground: #cccccc;
|
|
325
|
-
--vscode-editorSuggestWidget-background: #202020;
|
|
326
|
-
--vscode-editorSuggestWidget-border: #454545;
|
|
327
|
-
--vscode-editorSuggestWidget-foreground: #cccccc;
|
|
328
|
-
--vscode-editorSuggestWidget-selectedForeground: #ffffff;
|
|
329
|
-
--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
|
|
330
|
-
--vscode-editorSuggestWidget-selectedBackground: #04395e;
|
|
331
|
-
--vscode-editorSuggestWidget-highlightForeground: #2aaaff;
|
|
332
|
-
--vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;
|
|
333
|
-
--vscode-editorSuggestWidgetStatus-foreground: rgba(204, 204, 204, 0.5);
|
|
334
|
-
--vscode-inlineEdit-originalBackground: rgba(255, 0, 0, 0.04);
|
|
335
|
-
--vscode-inlineEdit-modifiedBackground: rgba(156, 204, 44, 0.06);
|
|
336
|
-
--vscode-inlineEdit-originalChangedLineBackground: rgba(255, 0, 0, 0.16);
|
|
337
|
-
--vscode-inlineEdit-originalChangedTextBackground: rgba(255, 0, 0, 0.16);
|
|
338
|
-
--vscode-inlineEdit-modifiedChangedLineBackground: rgba(155, 185, 85, 0.14);
|
|
339
|
-
--vscode-inlineEdit-modifiedChangedTextBackground: rgba(156, 204, 44, 0.14);
|
|
340
|
-
--vscode-inlineEdit-gutterIndicator-primaryForeground: #ffffff;
|
|
341
|
-
--vscode-inlineEdit-gutterIndicator-primaryBorder: #0078d4;
|
|
342
|
-
--vscode-inlineEdit-gutterIndicator-primaryBackground: rgba(0, 120, 212, 0.4);
|
|
343
|
-
--vscode-inlineEdit-gutterIndicator-secondaryForeground: #cccccc;
|
|
344
|
-
--vscode-inlineEdit-gutterIndicator-secondaryBorder: #313131;
|
|
345
|
-
--vscode-inlineEdit-gutterIndicator-secondaryBackground: #313131;
|
|
346
|
-
--vscode-inlineEdit-gutterIndicator-successfulForeground: #ffffff;
|
|
347
|
-
--vscode-inlineEdit-gutterIndicator-successfulBorder: #0078d4;
|
|
348
|
-
--vscode-inlineEdit-gutterIndicator-successfulBackground: #0078d4;
|
|
349
|
-
--vscode-inlineEdit-gutterIndicator-background: rgba(24, 24, 24, 0.5);
|
|
350
|
-
--vscode-inlineEdit-originalBorder: rgba(255, 0, 0, 0.2);
|
|
351
|
-
--vscode-inlineEdit-modifiedBorder: rgba(156, 204, 44, 0.2);
|
|
352
|
-
--vscode-inlineEdit-tabWillAcceptModifiedBorder: rgba(156, 204, 44, 0.2);
|
|
353
|
-
--vscode-inlineEdit-tabWillAcceptOriginalBorder: rgba(255, 0, 0, 0.2);
|
|
354
|
-
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
|
355
|
-
--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
|
|
356
|
-
--vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
|
|
357
|
-
--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, 0.72);
|
|
358
|
-
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
359
|
-
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
|
360
|
-
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
|
361
|
-
--vscode-editorHoverWidget-highlightForeground: #2aaaff;
|
|
362
|
-
--vscode-editor-placeholder-foreground: rgba(255, 255, 255, 0.34);
|
|
363
|
-
--vscode-tab-activeBackground: #1f1f1f;
|
|
364
|
-
--vscode-tab-unfocusedActiveBackground: #1f1f1f;
|
|
365
|
-
--vscode-tab-inactiveBackground: #181818;
|
|
366
|
-
--vscode-tab-unfocusedInactiveBackground: #181818;
|
|
367
|
-
--vscode-tab-activeForeground: #ffffff;
|
|
368
|
-
--vscode-tab-inactiveForeground: #9d9d9d;
|
|
369
|
-
--vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, 0.5);
|
|
370
|
-
--vscode-tab-unfocusedInactiveForeground: rgba(157, 157, 157, 0.5);
|
|
371
|
-
--vscode-tab-hoverBackground: #1f1f1f;
|
|
372
|
-
--vscode-tab-unfocusedHoverBackground: #1f1f1f;
|
|
373
|
-
--vscode-tab-border: #2b2b2b;
|
|
374
|
-
--vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
|
|
375
|
-
--vscode-tab-activeBorder: #1f1f1f;
|
|
376
|
-
--vscode-tab-unfocusedActiveBorder: #1f1f1f;
|
|
377
|
-
--vscode-tab-activeBorderTop: #0078d4;
|
|
378
|
-
--vscode-tab-unfocusedActiveBorderTop: #2b2b2b;
|
|
379
|
-
--vscode-tab-selectedBorderTop: #6caddf;
|
|
380
|
-
--vscode-tab-selectedBackground: #222222;
|
|
381
|
-
--vscode-tab-selectedForeground: rgba(255, 255, 255, 0.63);
|
|
382
|
-
--vscode-tab-dragAndDropBorder: #ffffff;
|
|
383
|
-
--vscode-tab-activeModifiedBorder: #3399cc;
|
|
384
|
-
--vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
|
385
|
-
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
|
386
|
-
--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
|
|
387
|
-
--vscode-editorPane-background: #1f1f1f;
|
|
388
|
-
--vscode-editorGroupHeader-tabsBackground: #181818;
|
|
389
|
-
--vscode-editorGroupHeader-tabsBorder: #2b2b2b;
|
|
390
|
-
--vscode-editorGroupHeader-noTabsBackground: #1f1f1f;
|
|
391
|
-
--vscode-editorGroup-border: rgba(255, 255, 255, 0.09);
|
|
392
|
-
--vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
|
|
393
|
-
--vscode-editorGroup-dropIntoPromptForeground: #cccccc;
|
|
394
|
-
--vscode-editorGroup-dropIntoPromptBackground: #202020;
|
|
395
|
-
--vscode-sideBySideEditor-horizontalBorder: rgba(255, 255, 255, 0.09);
|
|
396
|
-
--vscode-sideBySideEditor-verticalBorder: rgba(255, 255, 255, 0.09);
|
|
397
|
-
--vscode-banner-background: #04395e;
|
|
398
|
-
--vscode-banner-foreground: #ffffff;
|
|
399
|
-
--vscode-banner-iconForeground: #59a4f9;
|
|
400
|
-
--vscode-statusBar-foreground: #cccccc;
|
|
401
|
-
--vscode-statusBar-noFolderForeground: #cccccc;
|
|
402
|
-
--vscode-statusBar-background: #181818;
|
|
403
|
-
--vscode-statusBar-noFolderBackground: #1f1f1f;
|
|
404
|
-
--vscode-statusBar-border: #2b2b2b;
|
|
405
|
-
--vscode-statusBar-focusBorder: #0078d4;
|
|
406
|
-
--vscode-statusBar-noFolderBorder: #2b2b2b;
|
|
407
|
-
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
|
408
|
-
--vscode-statusBarItem-focusBorder: #0078d4;
|
|
409
|
-
--vscode-statusBarItem-hoverBackground: rgba(241, 241, 241, 0.2);
|
|
410
|
-
--vscode-statusBarItem-hoverForeground: #ffffff;
|
|
411
|
-
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.12);
|
|
412
|
-
--vscode-statusBarItem-prominentForeground: #cccccc;
|
|
413
|
-
--vscode-statusBarItem-prominentBackground: rgba(110, 118, 129, 0.4);
|
|
414
|
-
--vscode-statusBarItem-prominentHoverForeground: #ffffff;
|
|
415
|
-
--vscode-statusBarItem-prominentHoverBackground: rgba(241, 241, 241, 0.2);
|
|
416
|
-
--vscode-statusBarItem-errorBackground: #b91007;
|
|
417
|
-
--vscode-statusBarItem-errorForeground: #ffffff;
|
|
418
|
-
--vscode-statusBarItem-errorHoverForeground: #ffffff;
|
|
419
|
-
--vscode-statusBarItem-errorHoverBackground: rgba(241, 241, 241, 0.2);
|
|
420
|
-
--vscode-statusBarItem-warningBackground: #7a6400;
|
|
421
|
-
--vscode-statusBarItem-warningForeground: #ffffff;
|
|
422
|
-
--vscode-statusBarItem-warningHoverForeground: #ffffff;
|
|
423
|
-
--vscode-statusBarItem-warningHoverBackground: rgba(241, 241, 241, 0.2);
|
|
424
|
-
--vscode-activityBar-background: #181818;
|
|
425
|
-
--vscode-activityBar-foreground: #d7d7d7;
|
|
426
|
-
--vscode-activityBar-inactiveForeground: #868686;
|
|
427
|
-
--vscode-activityBar-border: #2b2b2b;
|
|
428
|
-
--vscode-activityBar-activeBorder: #0078d4;
|
|
429
|
-
--vscode-activityBar-dropBorder: #d7d7d7;
|
|
430
|
-
--vscode-activityBarBadge-background: #0078d4;
|
|
431
|
-
--vscode-activityBarBadge-foreground: #ffffff;
|
|
432
|
-
--vscode-activityBarTop-foreground: #e7e7e7;
|
|
433
|
-
--vscode-activityBarTop-activeBorder: #e7e7e7;
|
|
434
|
-
--vscode-activityBarTop-inactiveForeground: rgba(231, 231, 231, 0.6);
|
|
435
|
-
--vscode-activityBarTop-dropBorder: #e7e7e7;
|
|
436
|
-
--vscode-panel-background: #181818;
|
|
437
|
-
--vscode-panel-border: #2b2b2b;
|
|
438
|
-
--vscode-panelTitle-activeForeground: #cccccc;
|
|
439
|
-
--vscode-panelTitle-inactiveForeground: #9d9d9d;
|
|
440
|
-
--vscode-panelTitle-activeBorder: #0078d4;
|
|
441
|
-
--vscode-panelTitleBadge-background: #0078d4;
|
|
442
|
-
--vscode-panelTitleBadge-foreground: #ffffff;
|
|
443
|
-
--vscode-panelInput-border: #2b2b2b;
|
|
444
|
-
--vscode-panel-dropBorder: #cccccc;
|
|
445
|
-
--vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
|
|
446
|
-
--vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
|
|
447
|
-
--vscode-panelSection-border: #2b2b2b;
|
|
448
|
-
--vscode-panelStickyScroll-background: #181818;
|
|
449
|
-
--vscode-panelStickyScroll-shadow: #000000;
|
|
450
|
-
--vscode-profileBadge-background: #4d4d4d;
|
|
451
|
-
--vscode-profileBadge-foreground: #ffffff;
|
|
452
|
-
--vscode-statusBarItem-remoteBackground: #0078d4;
|
|
453
|
-
--vscode-statusBarItem-remoteForeground: #ffffff;
|
|
454
|
-
--vscode-statusBarItem-remoteHoverForeground: #ffffff;
|
|
455
|
-
--vscode-statusBarItem-remoteHoverBackground: rgba(241, 241, 241, 0.2);
|
|
456
|
-
--vscode-statusBarItem-offlineBackground: #6c1717;
|
|
457
|
-
--vscode-statusBarItem-offlineForeground: #ffffff;
|
|
458
|
-
--vscode-statusBarItem-offlineHoverForeground: #ffffff;
|
|
459
|
-
--vscode-statusBarItem-offlineHoverBackground: rgba(241, 241, 241, 0.2);
|
|
460
|
-
--vscode-extensionBadge-remoteBackground: #0078d4;
|
|
461
|
-
--vscode-extensionBadge-remoteForeground: #ffffff;
|
|
462
|
-
--vscode-sideBar-background: #181818;
|
|
463
|
-
--vscode-sideBar-foreground: #cccccc;
|
|
464
|
-
--vscode-sideBar-border: #2b2b2b;
|
|
465
|
-
--vscode-sideBarTitle-background: #181818;
|
|
466
|
-
--vscode-sideBarTitle-foreground: #cccccc;
|
|
467
|
-
--vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
|
|
468
|
-
--vscode-sideBarSectionHeader-background: #181818;
|
|
469
|
-
--vscode-sideBarSectionHeader-foreground: #cccccc;
|
|
470
|
-
--vscode-sideBarSectionHeader-border: #2b2b2b;
|
|
471
|
-
--vscode-sideBarActivityBarTop-border: #2b2b2b;
|
|
472
|
-
--vscode-sideBarStickyScroll-background: #181818;
|
|
473
|
-
--vscode-sideBarStickyScroll-shadow: #000000;
|
|
474
|
-
--vscode-titleBar-activeForeground: #cccccc;
|
|
475
|
-
--vscode-titleBar-inactiveForeground: #9d9d9d;
|
|
476
|
-
--vscode-titleBar-activeBackground: #181818;
|
|
477
|
-
--vscode-titleBar-inactiveBackground: #1f1f1f;
|
|
478
|
-
--vscode-titleBar-border: #2b2b2b;
|
|
479
|
-
--vscode-menubar-selectionForeground: #cccccc;
|
|
480
|
-
--vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
|
|
481
|
-
--vscode-commandCenter-foreground: #cccccc;
|
|
482
|
-
--vscode-commandCenter-activeForeground: #cccccc;
|
|
483
|
-
--vscode-commandCenter-inactiveForeground: #9d9d9d;
|
|
484
|
-
--vscode-commandCenter-background: rgba(255, 255, 255, 0.05);
|
|
485
|
-
--vscode-commandCenter-activeBackground: rgba(255, 255, 255, 0.08);
|
|
486
|
-
--vscode-commandCenter-border: rgba(204, 204, 204, 0.2);
|
|
487
|
-
--vscode-commandCenter-activeBorder: rgba(204, 204, 204, 0.3);
|
|
488
|
-
--vscode-commandCenter-inactiveBorder: rgba(157, 157, 157, 0.25);
|
|
489
|
-
--vscode-notificationCenter-border: #313131;
|
|
490
|
-
--vscode-notificationToast-border: #313131;
|
|
491
|
-
--vscode-notifications-foreground: #cccccc;
|
|
492
|
-
--vscode-notifications-background: #1f1f1f;
|
|
493
|
-
--vscode-notificationLink-foreground: #4daafc;
|
|
494
|
-
--vscode-notificationCenterHeader-foreground: #cccccc;
|
|
495
|
-
--vscode-notificationCenterHeader-background: #1f1f1f;
|
|
496
|
-
--vscode-notifications-border: #2b2b2b;
|
|
497
|
-
--vscode-notificationsErrorIcon-foreground: #f14c4c;
|
|
498
|
-
--vscode-notificationsWarningIcon-foreground: #cca700;
|
|
499
|
-
--vscode-notificationsInfoIcon-foreground: #59a4f9;
|
|
500
|
-
--vscode-editorGutter-modifiedBackground: #0078d4;
|
|
501
|
-
--vscode-editorGutter-modifiedSecondaryBackground: #003c6a;
|
|
502
|
-
--vscode-editorGutter-addedBackground: #2ea043;
|
|
503
|
-
--vscode-editorGutter-addedSecondaryBackground: #175021;
|
|
504
|
-
--vscode-editorGutter-deletedBackground: #f85149;
|
|
505
|
-
--vscode-editorGutter-deletedSecondaryBackground: #b91007;
|
|
506
|
-
--vscode-minimapGutter-modifiedBackground: #0078d4;
|
|
507
|
-
--vscode-minimapGutter-addedBackground: #2ea043;
|
|
508
|
-
--vscode-minimapGutter-deletedBackground: #f85149;
|
|
509
|
-
--vscode-editorOverviewRuler-modifiedForeground: rgba(0, 120, 212, 0.6);
|
|
510
|
-
--vscode-editorOverviewRuler-addedForeground: rgba(46, 160, 67, 0.6);
|
|
511
|
-
--vscode-editorOverviewRuler-deletedForeground: rgba(248, 81, 73, 0.6);
|
|
512
|
-
--vscode-editorGutter-itemGlyphForeground: #cccccc;
|
|
513
|
-
--vscode-editorGutter-itemBackground: #37373d;
|
|
514
|
-
--vscode-terminal-foreground: #cccccc;
|
|
515
|
-
--vscode-terminal-selectionBackground: #264f78;
|
|
516
|
-
--vscode-terminal-inactiveSelectionBackground: #3a3d41;
|
|
517
|
-
--vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
|
|
518
|
-
--vscode-terminalCommandDecoration-successBackground: #1b81a8;
|
|
519
|
-
--vscode-terminalCommandDecoration-errorBackground: #f14c4c;
|
|
520
|
-
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
|
521
|
-
--vscode-terminal-border: #2b2b2b;
|
|
522
|
-
--vscode-terminalOverviewRuler-border: #010409;
|
|
523
|
-
--vscode-terminal-findMatchBackground: #9e6a03;
|
|
524
|
-
--vscode-terminal-hoverHighlightBackground: rgba(38, 79, 120, 0.13);
|
|
525
|
-
--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
526
|
-
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
527
|
-
--vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
|
|
528
|
-
--vscode-terminal-tab-activeBorder: #0078d4;
|
|
529
|
-
--vscode-terminal-initialHintForeground: rgba(255, 255, 255, 0.34);
|
|
530
|
-
--vscode-scmGraph-historyItemRefColor: #59a4f9;
|
|
531
|
-
--vscode-scmGraph-historyItemRemoteRefColor: #b180d7;
|
|
532
|
-
--vscode-scmGraph-historyItemBaseRefColor: #ea5c00;
|
|
533
|
-
--vscode-scmGraph-historyItemHoverDefaultLabelForeground: #cccccc;
|
|
534
|
-
--vscode-scmGraph-historyItemHoverDefaultLabelBackground: #616161;
|
|
535
|
-
--vscode-scmGraph-historyItemHoverLabelForeground: #181818;
|
|
536
|
-
--vscode-scmGraph-historyItemHoverAdditionsForeground: #81b88b;
|
|
537
|
-
--vscode-scmGraph-historyItemHoverDeletionsForeground: #c74e39;
|
|
538
|
-
--vscode-scmGraph-foreground1: #ffb000;
|
|
539
|
-
--vscode-scmGraph-foreground2: #dc267f;
|
|
540
|
-
--vscode-scmGraph-foreground3: #994f00;
|
|
541
|
-
--vscode-scmGraph-foreground4: #40b0a6;
|
|
542
|
-
--vscode-scmGraph-foreground5: #b66dff;
|
|
543
|
-
--vscode-commentsView-resolvedIcon: rgba(204, 204, 204, 0.5);
|
|
544
|
-
--vscode-commentsView-unresolvedIcon: #0078d4;
|
|
545
|
-
--vscode-editorCommentsWidget-replyInputBackground: #252526;
|
|
546
|
-
--vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
|
|
547
|
-
--vscode-editorCommentsWidget-unresolvedBorder: #0078d4;
|
|
548
|
-
--vscode-editorCommentsWidget-rangeBackground: rgba(0, 120, 212, 0.1);
|
|
549
|
-
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 120, 212, 0.1);
|
|
550
|
-
--vscode-editorGutter-commentRangeForeground: #37373d;
|
|
551
|
-
--vscode-editorOverviewRuler-commentForeground: #37373d;
|
|
552
|
-
--vscode-editorOverviewRuler-commentUnresolvedForeground: #37373d;
|
|
553
|
-
--vscode-editorOverviewRuler-commentDraftForeground: #37373d;
|
|
554
|
-
--vscode-editorGutter-commentGlyphForeground: #cccccc;
|
|
555
|
-
--vscode-editorGutter-commentUnresolvedGlyphForeground: #cccccc;
|
|
556
|
-
--vscode-editorGutter-commentDraftGlyphForeground: #cccccc;
|
|
557
|
-
--vscode-agentSessionReadIndicator-foreground: rgba(204, 204, 204, 0.15);
|
|
558
|
-
--vscode-agentSessionSelectedBadge-border: rgba(255, 255, 255, 0.3);
|
|
559
|
-
--vscode-agentSessionSelectedUnfocusedBadge-border: rgba(204, 204, 204, 0.3);
|
|
560
|
-
--vscode-ports-iconRunningProcessForeground: #369432;
|
|
561
|
-
--vscode-settings-headerForeground: #ffffff;
|
|
562
|
-
--vscode-settings-settingsHeaderHoverForeground: rgba(255, 255, 255, 0.7);
|
|
563
|
-
--vscode-settings-modifiedItemIndicator: rgba(187, 128, 9, 0.4);
|
|
564
|
-
--vscode-settings-headerBorder: #2b2b2b;
|
|
565
|
-
--vscode-settings-sashBorder: #2b2b2b;
|
|
566
|
-
--vscode-settings-dropdownBackground: #313131;
|
|
567
|
-
--vscode-settings-dropdownForeground: #cccccc;
|
|
568
|
-
--vscode-settings-dropdownBorder: #3c3c3c;
|
|
569
|
-
--vscode-settings-dropdownListBorder: #454545;
|
|
570
|
-
--vscode-settings-checkboxBackground: #313131;
|
|
571
|
-
--vscode-settings-checkboxForeground: #cccccc;
|
|
572
|
-
--vscode-settings-checkboxBorder: #3c3c3c;
|
|
573
|
-
--vscode-settings-textInputBackground: #313131;
|
|
574
|
-
--vscode-settings-textInputForeground: #cccccc;
|
|
575
|
-
--vscode-settings-textInputBorder: #3c3c3c;
|
|
576
|
-
--vscode-settings-numberInputBackground: #313131;
|
|
577
|
-
--vscode-settings-numberInputForeground: #cccccc;
|
|
578
|
-
--vscode-settings-numberInputBorder: #3c3c3c;
|
|
579
|
-
--vscode-settings-focusedRowBackground: rgba(42, 45, 46, 0.6);
|
|
580
|
-
--vscode-settings-rowHoverBackground: rgba(42, 45, 46, 0.3);
|
|
581
|
-
--vscode-settings-focusedRowBorder: #0078d4;
|
|
582
|
-
--vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
|
|
583
|
-
--vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
|
|
584
|
-
--vscode-extensionButton-background: #313131;
|
|
585
|
-
--vscode-extensionButton-foreground: #cccccc;
|
|
586
|
-
--vscode-extensionButton-hoverBackground: #3c3c3c;
|
|
587
|
-
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
|
588
|
-
--vscode-extensionButton-prominentBackground: #0078d4;
|
|
589
|
-
--vscode-extensionButton-prominentForeground: #ffffff;
|
|
590
|
-
--vscode-extensionButton-prominentHoverBackground: #026ec1;
|
|
591
|
-
--vscode-debugToolBar-background: #181818;
|
|
592
|
-
--vscode-debugIcon-startForeground: #89d185;
|
|
593
|
-
--vscode-notebook-cellBorderColor: #37373d;
|
|
594
|
-
--vscode-notebook-focusedEditorBorder: #0078d4;
|
|
595
|
-
--vscode-notebookStatusSuccessIcon-foreground: #89d185;
|
|
596
|
-
--vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185;
|
|
597
|
-
--vscode-notebookStatusErrorIcon-foreground: #f85149;
|
|
598
|
-
--vscode-notebookStatusRunningIcon-foreground: #cccccc;
|
|
599
|
-
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
|
600
|
-
--vscode-notebook-selectedCellBackground: #37373d;
|
|
601
|
-
--vscode-notebook-selectedCellBorder: #37373d;
|
|
602
|
-
--vscode-notebook-focusedCellBorder: #0078d4;
|
|
603
|
-
--vscode-notebook-inactiveFocusedCellBorder: #37373d;
|
|
604
|
-
--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
|
|
605
|
-
--vscode-notebook-cellInsertionIndicator: #0078d4;
|
|
606
|
-
--vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, 0.4);
|
|
607
|
-
--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
608
|
-
--vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
|
609
|
-
--vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
|
|
610
|
-
--vscode-notebook-cellEditorBackground: #181818;
|
|
611
|
-
--vscode-notebook-editorBackground: #1f1f1f;
|
|
612
|
-
--vscode-inlineChat-foreground: #cccccc;
|
|
613
|
-
--vscode-inlineChat-background: #202020;
|
|
614
|
-
--vscode-inlineChat-border: #454545;
|
|
615
|
-
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.36);
|
|
616
|
-
--vscode-inlineChatInput-border: #454545;
|
|
617
|
-
--vscode-inlineChatInput-focusBorder: #0078d4;
|
|
618
|
-
--vscode-inlineChatInput-placeholderForeground: #989898;
|
|
619
|
-
--vscode-inlineChatInput-background: #313131;
|
|
620
|
-
--vscode-inlineChatDiff-inserted: rgba(156, 204, 44, 0.1);
|
|
621
|
-
--vscode-editorOverviewRuler-inlineChatInserted: rgba(156, 204, 44, 0.12);
|
|
622
|
-
--vscode-editorMinimap-inlineChatInserted: rgba(156, 204, 44, 0.12);
|
|
623
|
-
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
|
624
|
-
--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, 0.12);
|
|
625
|
-
--vscode-extensionIcon-verifiedForeground: #4daafc;
|
|
626
|
-
--vscode-chat-requestBorder: rgba(255, 255, 255, 0.1);
|
|
627
|
-
--vscode-chat-requestBackground: rgba(31, 31, 31, 0.62);
|
|
628
|
-
--vscode-chat-slashCommandBackground: rgba(38, 71, 120, 0.4);
|
|
629
|
-
--vscode-chat-slashCommandForeground: #85b6ff;
|
|
630
|
-
--vscode-chat-avatarBackground: #1f1f1f;
|
|
631
|
-
--vscode-chat-avatarForeground: #cccccc;
|
|
632
|
-
--vscode-chat-editedFileForeground: #e2c08d;
|
|
633
|
-
--vscode-chat-requestCodeBorder: rgba(0, 73, 114, 0.72);
|
|
634
|
-
--vscode-chat-requestBubbleBackground: rgba(38, 79, 120, 0.3);
|
|
635
|
-
--vscode-chat-requestBubbleHoverBackground: rgba(38, 79, 120, 0.6);
|
|
636
|
-
--vscode-chat-checkpointSeparator: #585858;
|
|
637
|
-
--vscode-chat-linesAddedForeground: #54b054;
|
|
638
|
-
--vscode-chat-linesRemovedForeground: #fc6a6a;
|
|
639
|
-
--vscode-extensionIcon-starForeground: #ff8e00;
|
|
640
|
-
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
|
641
|
-
--vscode-extensionIcon-sponsorForeground: #d758b3;
|
|
642
|
-
--vscode-extensionIcon-privateForeground: rgba(255, 255, 255, 0.38);
|
|
643
|
-
--vscode-debugExceptionWidget-border: #a31515;
|
|
644
|
-
--vscode-debugExceptionWidget-background: #420b0d;
|
|
645
|
-
--vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
|
|
646
|
-
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
|
647
|
-
--vscode-debugIcon-breakpointForeground: #e51400;
|
|
648
|
-
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
|
649
|
-
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
|
650
|
-
--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
|
|
651
|
-
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
|
652
|
-
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
|
653
|
-
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
|
654
|
-
--vscode-multiDiffEditor-headerBackground: #262626;
|
|
655
|
-
--vscode-multiDiffEditor-background: #1f1f1f;
|
|
656
|
-
--vscode-multiDiffEditor-border: #2b2b2b;
|
|
657
|
-
--vscode-minimap-chatEditHighlight: rgba(31, 31, 31, 0.6);
|
|
658
|
-
--vscode-chatManagement-sashBorder: #2b2b2b;
|
|
659
|
-
--vscode-gauge-foreground: #007acc;
|
|
660
|
-
--vscode-gauge-background: rgba(0, 122, 204, 0.3);
|
|
661
|
-
--vscode-gauge-warningForeground: #b89500;
|
|
662
|
-
--vscode-gauge-warningBackground: rgba(184, 149, 0, 0.3);
|
|
663
|
-
--vscode-gauge-errorForeground: #be1100;
|
|
664
|
-
--vscode-gauge-errorBackground: rgba(190, 17, 0, 0.3);
|
|
665
|
-
--vscode-mcpIcon-starForeground: #ff8e00;
|
|
666
|
-
--vscode-interactive-activeCodeBorder: #007acc;
|
|
667
|
-
--vscode-interactive-inactiveCodeBorder: #37373d;
|
|
668
|
-
--vscode-testing-iconFailed: #f14c4c;
|
|
669
|
-
--vscode-testing-iconErrored: #f14c4c;
|
|
670
|
-
--vscode-testing-iconPassed: #73c991;
|
|
671
|
-
--vscode-testing-runAction: #73c991;
|
|
672
|
-
--vscode-testing-iconQueued: #cca700;
|
|
673
|
-
--vscode-testing-iconUnset: #848484;
|
|
674
|
-
--vscode-testing-iconSkipped: #848484;
|
|
675
|
-
--vscode-testing-peekBorder: #f14c4c;
|
|
676
|
-
--vscode-testing-messagePeekBorder: #59a4f9;
|
|
677
|
-
--vscode-testing-peekHeaderBackground: rgba(241, 76, 76, 0.1);
|
|
678
|
-
--vscode-testing-messagePeekHeaderBackground: rgba(89, 164, 249, 0.1);
|
|
679
|
-
--vscode-testing-coveredBackground: rgba(156, 204, 44, 0.2);
|
|
680
|
-
--vscode-testing-coveredBorder: rgba(156, 204, 44, 0.15);
|
|
681
|
-
--vscode-testing-coveredGutterBackground: rgba(156, 204, 44, 0.12);
|
|
682
|
-
--vscode-testing-uncoveredBranchBackground: #781212;
|
|
683
|
-
--vscode-testing-uncoveredBackground: rgba(255, 0, 0, 0.2);
|
|
684
|
-
--vscode-testing-uncoveredBorder: rgba(255, 0, 0, 0.15);
|
|
685
|
-
--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, 0.3);
|
|
686
|
-
--vscode-testing-coverCountBadgeBackground: #616161;
|
|
687
|
-
--vscode-testing-coverCountBadgeForeground: #f8f8f8;
|
|
688
|
-
--vscode-testing-message-error-badgeBackground: #f14c4c;
|
|
689
|
-
--vscode-testing-message-error-badgeBorder: #f14c4c;
|
|
690
|
-
--vscode-testing-message-error-badgeForeground: #000000;
|
|
691
|
-
--vscode-testing-message-info-decorationForeground: rgba(204, 204, 204, 0.5);
|
|
692
|
-
--vscode-testing-iconErrored-retired: rgba(241, 76, 76, 0.7);
|
|
693
|
-
--vscode-testing-iconFailed-retired: rgba(241, 76, 76, 0.7);
|
|
694
|
-
--vscode-testing-iconPassed-retired: rgba(115, 201, 145, 0.7);
|
|
695
|
-
--vscode-testing-iconQueued-retired: rgba(204, 167, 0, 0.7);
|
|
696
|
-
--vscode-testing-iconUnset-retired: rgba(132, 132, 132, 0.7);
|
|
697
|
-
--vscode-testing-iconSkipped-retired: rgba(132, 132, 132, 0.7);
|
|
698
|
-
--vscode-searchEditor-textInputBorder: #3c3c3c;
|
|
699
|
-
--vscode-statusBar-debuggingBackground: #0078d4;
|
|
700
|
-
--vscode-statusBar-debuggingForeground: #ffffff;
|
|
701
|
-
--vscode-statusBar-debuggingBorder: #2b2b2b;
|
|
702
|
-
--vscode-commandCenter-debuggingBackground: rgba(0, 120, 212, 0.26);
|
|
703
|
-
--vscode-debugTokenExpression-name: #c586c0;
|
|
704
|
-
--vscode-debugTokenExpression-type: #4a90e2;
|
|
705
|
-
--vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
|
|
706
|
-
--vscode-debugTokenExpression-string: #ce9178;
|
|
707
|
-
--vscode-debugTokenExpression-boolean: #4e94ce;
|
|
708
|
-
--vscode-debugTokenExpression-number: #b5cea8;
|
|
709
|
-
--vscode-debugTokenExpression-error: #f48771;
|
|
710
|
-
--vscode-debugView-exceptionLabelForeground: #cccccc;
|
|
711
|
-
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
|
712
|
-
--vscode-debugView-stateLabelForeground: #cccccc;
|
|
713
|
-
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
714
|
-
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
715
|
-
--vscode-debugConsole-infoForeground: #59a4f9;
|
|
716
|
-
--vscode-debugConsole-warningForeground: #cca700;
|
|
717
|
-
--vscode-debugConsole-errorForeground: #f85149;
|
|
718
|
-
--vscode-debugConsole-sourceForeground: #cccccc;
|
|
719
|
-
--vscode-debugConsoleInputIcon-foreground: #cccccc;
|
|
720
|
-
--vscode-debugIcon-pauseForeground: #75beff;
|
|
721
|
-
--vscode-debugIcon-stopForeground: #f48771;
|
|
722
|
-
--vscode-debugIcon-disconnectForeground: #f48771;
|
|
723
|
-
--vscode-debugIcon-restartForeground: #89d185;
|
|
724
|
-
--vscode-debugIcon-stepOverForeground: #75beff;
|
|
725
|
-
--vscode-debugIcon-stepIntoForeground: #75beff;
|
|
726
|
-
--vscode-debugIcon-stepOutForeground: #75beff;
|
|
727
|
-
--vscode-debugIcon-continueForeground: #75beff;
|
|
728
|
-
--vscode-debugIcon-stepBackForeground: #75beff;
|
|
729
|
-
--vscode-mergeEditor-change-background: rgba(155, 185, 85, 0.2);
|
|
730
|
-
--vscode-mergeEditor-change-word-background: rgba(156, 204, 44, 0.2);
|
|
731
|
-
--vscode-mergeEditor-changeBase-background: #4b1818;
|
|
732
|
-
--vscode-mergeEditor-changeBase-word-background: #6f1313;
|
|
733
|
-
--vscode-mergeEditor-conflict-unhandledUnfocused-border: rgba(255, 166, 0, 0.48);
|
|
734
|
-
--vscode-mergeEditor-conflict-unhandledFocused-border: #ffa600;
|
|
735
|
-
--vscode-mergeEditor-conflict-handledUnfocused-border: rgba(134, 134, 134, 0.29);
|
|
736
|
-
--vscode-mergeEditor-conflict-handledFocused-border: rgba(193, 193, 193, 0.8);
|
|
737
|
-
--vscode-mergeEditor-conflict-handled-minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
|
738
|
-
--vscode-mergeEditor-conflict-unhandled-minimapOverViewRuler: #fcba03;
|
|
739
|
-
--vscode-mergeEditor-conflictingLines-background: rgba(255, 234, 0, 0.28);
|
|
740
|
-
--vscode-mergeEditor-conflict-input1-background: rgba(64, 200, 174, 0.2);
|
|
741
|
-
--vscode-mergeEditor-conflict-input2-background: rgba(64, 166, 255, 0.2);
|
|
742
|
-
--vscode-terminal-ansiBlack: #000000;
|
|
743
|
-
--vscode-terminal-ansiRed: #cd3131;
|
|
744
|
-
--vscode-terminal-ansiGreen: #0dbc79;
|
|
745
|
-
--vscode-terminal-ansiYellow: #e5e510;
|
|
746
|
-
--vscode-terminal-ansiBlue: #2472c8;
|
|
747
|
-
--vscode-terminal-ansiMagenta: #bc3fbc;
|
|
748
|
-
--vscode-terminal-ansiCyan: #11a8cd;
|
|
749
|
-
--vscode-terminal-ansiWhite: #e5e5e5;
|
|
750
|
-
--vscode-terminal-ansiBrightBlack: #666666;
|
|
751
|
-
--vscode-terminal-ansiBrightRed: #f14c4c;
|
|
752
|
-
--vscode-terminal-ansiBrightGreen: #23d18b;
|
|
753
|
-
--vscode-terminal-ansiBrightYellow: #f5f543;
|
|
754
|
-
--vscode-terminal-ansiBrightBlue: #3b8eea;
|
|
755
|
-
--vscode-terminal-ansiBrightMagenta: #d670d6;
|
|
756
|
-
--vscode-terminal-ansiBrightCyan: #29b8db;
|
|
757
|
-
--vscode-terminal-ansiBrightWhite: #e5e5e5;
|
|
758
|
-
--vscode-simpleFindWidget-sashBorder: #454545;
|
|
759
|
-
--vscode-terminalStickyScrollHover-background: #2a2d2e;
|
|
760
|
-
--vscode-terminalCommandGuide-foreground: #37373d;
|
|
761
|
-
--vscode-terminalSymbolIcon-flagForeground: #ee9d28;
|
|
762
|
-
--vscode-terminalSymbolIcon-aliasForeground: #b180d7;
|
|
763
|
-
--vscode-terminalSymbolIcon-optionValueForeground: #75beff;
|
|
764
|
-
--vscode-terminalSymbolIcon-methodForeground: #b180d7;
|
|
765
|
-
--vscode-terminalSymbolIcon-argumentForeground: #75beff;
|
|
766
|
-
--vscode-terminalSymbolIcon-optionForeground: #ee9d28;
|
|
767
|
-
--vscode-terminalSymbolIcon-fileForeground: #cccccc;
|
|
768
|
-
--vscode-terminalSymbolIcon-folderForeground: #cccccc;
|
|
769
|
-
--vscode-terminalSymbolIcon-commitForeground: #cccccc;
|
|
770
|
-
--vscode-terminalSymbolIcon-branchForeground: #cccccc;
|
|
771
|
-
--vscode-terminalSymbolIcon-tagForeground: #cccccc;
|
|
772
|
-
--vscode-terminalSymbolIcon-stashForeground: #cccccc;
|
|
773
|
-
--vscode-terminalSymbolIcon-remoteForeground: #cccccc;
|
|
774
|
-
--vscode-terminalSymbolIcon-pullRequestForeground: #cccccc;
|
|
775
|
-
--vscode-terminalSymbolIcon-pullRequestDoneForeground: #cccccc;
|
|
776
|
-
--vscode-terminalSymbolIcon-symbolicLinkFileForeground: #cccccc;
|
|
777
|
-
--vscode-terminalSymbolIcon-symbolicLinkFolderForeground: #cccccc;
|
|
778
|
-
--vscode-terminalSymbolIcon-symbolText: #cccccc;
|
|
779
|
-
--vscode-markdownAlert-note-foreground: #59a4f9;
|
|
780
|
-
--vscode-markdownAlert-tip-foreground: #89d185;
|
|
781
|
-
--vscode-markdownAlert-important-foreground: #b180d7;
|
|
782
|
-
--vscode-markdownAlert-warning-foreground: #cca700;
|
|
783
|
-
--vscode-markdownAlert-caution-foreground: #f14c4c;
|
|
784
|
-
--vscode-welcomePage-tileBackground: #2b2b2b;
|
|
785
|
-
--vscode-welcomePage-tileHoverBackground: #262626;
|
|
786
|
-
--vscode-welcomePage-tileBorder: rgba(255, 255, 255, 0.1);
|
|
787
|
-
--vscode-welcomePage-progress-background: #313131;
|
|
788
|
-
--vscode-welcomePage-progress-foreground: #0078d4;
|
|
789
|
-
--vscode-walkthrough-stepTitle-foreground: #ffffff;
|
|
790
|
-
--vscode-walkThrough-embeddedEditorBackground: rgba(0, 0, 0, 0.4);
|
|
791
|
-
--vscode-profiles-sashBorder: #2b2b2b;
|
|
792
|
-
--vscode-gitDecoration-addedResourceForeground: #81b88b;
|
|
793
|
-
--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
|
|
794
|
-
--vscode-gitDecoration-deletedResourceForeground: #c74e39;
|
|
795
|
-
--vscode-gitDecoration-renamedResourceForeground: #73c991;
|
|
796
|
-
--vscode-gitDecoration-untrackedResourceForeground: #73c991;
|
|
797
|
-
--vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;
|
|
798
|
-
--vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
|
|
799
|
-
--vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
|
|
800
|
-
--vscode-gitDecoration-conflictingResourceForeground: #e4676b;
|
|
801
|
-
--vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
|
|
802
|
-
--vscode-git-blame-editorDecorationForeground: #969696;
|
|
803
|
-
--vscode-bodyFontSize: 13px;
|
|
804
|
-
--vscode-bodyFontSize-small: 12px;
|
|
805
|
-
--vscode-bodyFontSize-xSmall: 11px;
|
|
806
|
-
--vscode-codiconFontSize: 16px;
|
|
807
|
-
--vscode-cornerRadius-medium: 6px;
|
|
808
|
-
--vscode-cornerRadius-xSmall: 2px;
|
|
809
|
-
--vscode-cornerRadius-small: 4px;
|
|
810
|
-
--vscode-cornerRadius-large: 8px;
|
|
811
|
-
--vscode-cornerRadius-xLarge: 12px;
|
|
812
|
-
--vscode-cornerRadius-circle: 9999px;
|
|
813
|
-
--vscode-strokeThickness: 1px;
|
|
814
|
-
}
|