@kiberon-labs/behave-graph-flow 1.0.0 → 2.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.
Files changed (314) hide show
  1. package/.fallowrc.json +16 -0
  2. package/.storybook/main.ts +32 -0
  3. package/.storybook/preview.ts +16 -0
  4. package/.storybook/styles.css +10 -0
  5. package/.storybook/vscode.css +814 -0
  6. package/.turbo/turbo-build.log +7 -0
  7. package/LICENSE +6 -0
  8. package/README.md +2 -2
  9. package/data/Polynomial.json +510 -0
  10. package/data/sequence.json +337 -0
  11. package/data/trigger-event.json +241 -0
  12. package/data/variable-change.json +210 -0
  13. package/dist/entry.css +4 -0
  14. package/dist/index.css +39 -0
  15. package/dist/index.css.map +1 -0
  16. package/dist/index.d.ts +2282 -0
  17. package/dist/index.d.ts.map +1 -0
  18. package/dist/index.js +14873 -0
  19. package/dist/index.js.map +1 -0
  20. package/docs/notifications.md +246 -0
  21. package/docs/protocol.md +679 -0
  22. package/docs/specifics.md +191 -0
  23. package/package.json +85 -21
  24. package/postcss.config.ts +3 -4
  25. package/src/annotations/index.ts +32 -0
  26. package/src/components/FloatingToolbar/index.module.css +45 -0
  27. package/src/components/FloatingToolbar/index.tsx +256 -0
  28. package/src/components/Flow.tsx +276 -75
  29. package/src/components/contextMenus/NodePicker.module.css +274 -0
  30. package/src/components/contextMenus/NodePicker.tsx +481 -0
  31. package/src/components/contextMenus/edge.tsx +108 -0
  32. package/src/components/contextMenus/node.tsx +155 -0
  33. package/src/components/contextMenus/selection.tsx +77 -0
  34. package/src/components/controls/any/index.tsx +8 -0
  35. package/src/components/controls/boolean/index.tsx +13 -0
  36. package/src/components/controls/colorPicker/InputPopover.module.css +100 -0
  37. package/src/components/controls/colorPicker/InputPopover.tsx +31 -0
  38. package/src/components/controls/colorPicker/index.module.css +18 -0
  39. package/src/components/controls/colorPicker/index.tsx +61 -0
  40. package/src/components/controls/number/index.tsx +35 -0
  41. package/src/components/controls/string/index.tsx +16 -0
  42. package/src/components/edges/index.tsx +469 -0
  43. package/src/components/edges/offsetBezier.ts +134 -0
  44. package/src/components/hotKeys.tsx +20 -0
  45. package/src/components/layoutController/index.module.css +10 -0
  46. package/src/components/layoutController/index.tsx +117 -0
  47. package/src/components/layoutController/utils.ts +205 -0
  48. package/src/components/menubar/defaults.tsx +480 -0
  49. package/src/components/menubar/index.tsx +49 -0
  50. package/src/components/menubar/menuItem.module.css +16 -0
  51. package/src/components/menubar/menuItem.tsx +32 -0
  52. package/src/components/nodes/behave/Node.module.css +23 -0
  53. package/src/components/nodes/behave/Node.tsx +176 -0
  54. package/src/components/nodes/behave/NodeContainer.module.css +87 -0
  55. package/src/components/nodes/behave/NodeContainer.tsx +46 -0
  56. package/src/components/nodes/behave/index.tsx +14 -0
  57. package/src/components/nodes/comment/FormatToolbar.tsx +118 -0
  58. package/src/components/nodes/comment/comment.tsx +103 -0
  59. package/src/components/nodes/comment/styles.module.css +150 -0
  60. package/src/components/nodes/group/index.tsx +109 -0
  61. package/src/components/nodes/wrapper/index.tsx +73 -0
  62. package/src/components/nodes/wrapper/styles.module.css +113 -0
  63. package/src/components/notifications/NotificationProvider.tsx +81 -0
  64. package/src/components/notifications/index.ts +2 -0
  65. package/src/components/notifications/utils.ts +71 -0
  66. package/src/components/panels/alignment/index.module.css +20 -0
  67. package/src/components/panels/alignment/index.tsx +244 -0
  68. package/src/components/panels/base/index.tsx +5 -0
  69. package/src/components/panels/base/styles.module.css +12 -0
  70. package/src/components/panels/conversation/index.module.css +151 -0
  71. package/src/components/panels/conversation/index.tsx +162 -0
  72. package/src/components/panels/events/CustomEventsEditor.tsx +384 -0
  73. package/src/components/panels/events/EditEventPanel.tsx +315 -0
  74. package/src/components/panels/events/ManageEventsPanel.tsx +98 -0
  75. package/src/components/panels/events/index.tsx +23 -0
  76. package/src/components/panels/events/styles.module.css +236 -0
  77. package/src/components/panels/history/index.tsx +92 -0
  78. package/src/components/panels/history/styles.module.css +106 -0
  79. package/src/components/panels/keymaps/index.module.css +78 -0
  80. package/src/components/panels/keymaps/index.tsx +167 -0
  81. package/src/components/panels/layers/index.tsx +240 -0
  82. package/src/components/panels/layers/styles.module.css +110 -0
  83. package/src/components/panels/legend/index.module.css +6 -0
  84. package/src/components/panels/legend/index.tsx +76 -0
  85. package/src/components/panels/logs/index.module.css +212 -0
  86. package/src/components/panels/logs/index.tsx +288 -0
  87. package/src/components/panels/nodeInputs/InputControl.tsx +63 -0
  88. package/src/components/panels/nodeInputs/InputsGroup.tsx +64 -0
  89. package/src/components/panels/nodeInputs/MultipleNodesView.tsx +37 -0
  90. package/src/components/panels/nodeInputs/NodeSettings.tsx +92 -0
  91. package/src/components/panels/nodeInputs/NodeTitleEditor.tsx +125 -0
  92. package/src/components/panels/nodeInputs/OutputsGroup.tsx +65 -0
  93. package/src/components/panels/nodeInputs/SocketGenerators.tsx +32 -0
  94. package/src/components/panels/nodeInputs/index.module.css +284 -0
  95. package/src/components/panels/nodeInputs/index.tsx +339 -0
  96. package/src/components/panels/nodeInputs/useNodeHandlers.ts +76 -0
  97. package/src/components/panels/nodeInputs/useNodeInputsData.ts +173 -0
  98. package/src/components/panels/nodePicker/index.tsx +115 -0
  99. package/src/components/panels/panel/index.module.css +66 -0
  100. package/src/components/panels/panel/index.tsx +88 -0
  101. package/src/components/panels/search/index.module.css +66 -0
  102. package/src/components/panels/search/index.tsx +215 -0
  103. package/src/components/panels/systemSettings/index.tsx +206 -0
  104. package/src/components/panels/systemSettings/styles.module.css +11 -0
  105. package/src/components/panels/traces/GridLines.tsx +38 -0
  106. package/src/components/panels/traces/TimeGrid.tsx +48 -0
  107. package/src/components/panels/traces/TraceLane.tsx +62 -0
  108. package/src/components/panels/traces/TraceTooltip.tsx +22 -0
  109. package/src/components/panels/traces/TracesHeader.tsx +56 -0
  110. package/src/components/panels/traces/index.module.css +166 -0
  111. package/src/components/panels/traces/index.tsx +294 -0
  112. package/src/components/panels/traces/types.ts +48 -0
  113. package/src/components/panels/traces/useDerivedSpans.ts +212 -0
  114. package/src/components/panels/traces/utils.ts +25 -0
  115. package/src/components/panels/variables/CreateVariableScreen.tsx +162 -0
  116. package/src/components/panels/variables/ManageVariablesScreen.tsx +144 -0
  117. package/src/components/panels/variables/index.tsx +125 -0
  118. package/src/components/panels/variables/styles.module.css +236 -0
  119. package/src/components/primitives/icon.module.css +45 -0
  120. package/src/components/primitives/icon.tsx +38 -0
  121. package/src/components/sockets/input/index.tsx +76 -0
  122. package/src/components/sockets/input/styles.module.css +27 -0
  123. package/src/components/sockets/output/index.tsx +61 -0
  124. package/src/components/sockets/output/styles.module.css +27 -0
  125. package/src/css/prosemirror.css +57 -0
  126. package/src/css/rc-dock.css +112 -0
  127. package/src/css/rc-menu.css +100 -0
  128. package/src/css/vars.css +14 -0
  129. package/src/css/vscode.css +13 -0
  130. package/src/entry.css +4 -0
  131. package/src/generators/CustomEventOnTriggeredGenerator.tsx +85 -0
  132. package/src/generators/SequenceGenerator.tsx +104 -0
  133. package/src/generators/SwitchOnIntegerGenerator.tsx +256 -0
  134. package/src/generators/SwitchOnStringGenerator.tsx +263 -0
  135. package/src/generators/registerDefaultGenerators.ts +34 -0
  136. package/src/hooks/useBehaveGraphFlow.ts +17 -16
  137. package/src/hooks/useDetachNodes.ts +39 -0
  138. package/src/hooks/useFlowHandlers.ts +115 -29
  139. package/src/hooks/useWasdPan.ts +188 -0
  140. package/src/index.css +146 -0
  141. package/src/index.ts +36 -18
  142. package/src/layout/dagre.tsx +119 -0
  143. package/src/layout/elk.ts +200 -0
  144. package/src/plugin/alignment/index.ts +81 -0
  145. package/src/plugin/docs/index.tsx +299 -0
  146. package/src/plugin/docs/panel/index.tsx +200 -0
  147. package/src/plugin/docs/panel/styles.module.css +174 -0
  148. package/src/plugin/graphrunner/actions.ts +253 -0
  149. package/src/plugin/graphrunner/buttons.tsx +87 -0
  150. package/src/plugin/graphrunner/client.ts +704 -0
  151. package/src/plugin/graphrunner/index.tsx +255 -0
  152. package/src/plugin/graphrunner/panel.tsx +386 -0
  153. package/src/plugin/graphrunner/runner.ts +358 -0
  154. package/src/plugin/graphrunner/session.ts +243 -0
  155. package/src/plugin/graphrunner/store.ts +206 -0
  156. package/src/plugin/graphrunner/styles.module.css +211 -0
  157. package/src/plugin/graphrunner/transport.ts +224 -0
  158. package/src/plugin/graphrunner/types.ts +672 -0
  159. package/src/plugin/graphrunner-local/execution-utils.ts +457 -0
  160. package/src/plugin/graphrunner-local/index.tsx +166 -0
  161. package/src/plugin/graphrunner-local/panel.tsx +231 -0
  162. package/src/plugin/graphrunner-local/store.ts +41 -0
  163. package/src/plugin/graphrunner-local/styles.module.css +101 -0
  164. package/src/plugin/graphrunner-local/transport.ts +1372 -0
  165. package/src/plugin/graphrunner-local/types.ts +10 -0
  166. package/src/plugin/graphrunner-webworker/graph-executor.worker.ts +633 -0
  167. package/src/plugin/graphrunner-webworker/index.tsx +146 -0
  168. package/src/plugin/graphrunner-webworker/panel.tsx +173 -0
  169. package/src/plugin/graphrunner-webworker/store.ts +89 -0
  170. package/src/plugin/graphrunner-webworker/types.ts +17 -0
  171. package/src/plugin/graphrunner-webworker/worker-transport.ts +123 -0
  172. package/src/plugin/realtime/realtimeRunner.ts +570 -0
  173. package/src/specifics/CustomEventOnTriggeredSpecific.tsx +92 -0
  174. package/src/specifics/CustomEventTriggerSpecific.tsx +141 -0
  175. package/src/specifics/VariableGetSpecific.tsx +110 -0
  176. package/src/specifics/VariableSetSpecific.tsx +110 -0
  177. package/src/specifics/registerDefaultSpecifics.ts +5 -0
  178. package/src/store/actions.tsx +698 -0
  179. package/src/store/chat.ts +73 -0
  180. package/src/store/controls.tsx +62 -0
  181. package/src/store/documentation.tsx +69 -0
  182. package/src/store/events.tsx +116 -0
  183. package/src/store/flow.tsx +245 -0
  184. package/src/store/graphRunnerClient.ts +110 -0
  185. package/src/store/hotKeys.tsx +323 -0
  186. package/src/store/layers.ts +259 -0
  187. package/src/store/legend.tsx +76 -0
  188. package/src/store/logs.ts +28 -0
  189. package/src/store/menubar.ts +41 -0
  190. package/src/store/refs.ts +84 -0
  191. package/src/store/registry.ts +43 -0
  192. package/src/store/selection.ts +22 -0
  193. package/src/store/settings.ts +99 -0
  194. package/src/store/socketGenerator.tsx +54 -0
  195. package/src/store/specific.tsx +75 -0
  196. package/src/store/specs.tsx +35 -0
  197. package/src/store/tabs.ts +278 -0
  198. package/src/store/toolbar.tsx +45 -0
  199. package/src/store/traces.ts +240 -0
  200. package/src/store/variables.ts +37 -0
  201. package/src/system/graph.ts +134 -0
  202. package/src/system/index.ts +3 -0
  203. package/src/system/notifications.ts +98 -0
  204. package/src/system/plugin.ts +27 -0
  205. package/src/system/provider.tsx +22 -0
  206. package/src/system/pubsub.ts +323 -0
  207. package/src/system/system.ts +223 -0
  208. package/src/system/tabLoader.tsx +265 -0
  209. package/src/system/undoRedo.ts +103 -0
  210. package/src/transformers/Uigraph.ts +60 -0
  211. package/src/transformers/behaveToFlow.ts +16 -4
  212. package/src/transformers/flowToBehave.ts +32 -12
  213. package/src/types/NodeMetadata.ts +27 -0
  214. package/src/types/graph.ts +49 -0
  215. package/src/types/nodes.ts +45 -0
  216. package/src/types.ts +16 -0
  217. package/src/util/colors.ts +1 -29
  218. package/src/util/downloadJson.ts +18 -0
  219. package/src/util/extractNodeMetadata.ts +16 -0
  220. package/src/util/getPickerFilters.ts +1 -1
  221. package/src/util/isBehaveNode.ts +6 -0
  222. package/src/util/isValidConnection.ts +28 -15
  223. package/src/util/mergeSockets.ts +29 -0
  224. package/src/util/serializeVariables.ts +66 -0
  225. package/src/util/sockets.ts +43 -0
  226. package/stories/apex/layoutController/example-graph.worker.ts +39 -0
  227. package/stories/apex/layoutController/index.stories.tsx +48 -0
  228. package/stories/apex/layoutController/webworker.stories.tsx +103 -0
  229. package/stories/apex/menubar/menubar.stories.tsx +19 -0
  230. package/stories/components/colorpicker/index.stories.tsx +20 -0
  231. package/stories/components/contextMenus/edge.stories.tsx +32 -0
  232. package/stories/components/contextMenus/node.stories.tsx +26 -0
  233. package/stories/components/contextMenus/nodePicker.stories.tsx +115 -0
  234. package/stories/components/controls/any/index.stories.tsx +19 -0
  235. package/stories/components/controls/boolean/index.stories.tsx +19 -0
  236. package/stories/components/controls/colorPicker/index.stories.tsx +49 -0
  237. package/stories/components/controls/number/index.stories.tsx +19 -0
  238. package/stories/components/controls/string/index.stories.tsx +19 -0
  239. package/stories/components/nodes/behaveNode.stories.tsx +108 -0
  240. package/stories/components/nodes/comment.stories.tsx +106 -0
  241. package/stories/components/panels/alignment.stories.tsx +24 -0
  242. package/stories/components/panels/events.stories.tsx +38 -0
  243. package/stories/components/panels/graphRunner.stories.tsx +317 -0
  244. package/stories/components/panels/history.stories.tsx +37 -0
  245. package/stories/components/panels/keymaps.stories.tsx +21 -0
  246. package/stories/components/panels/legend.stories.tsx +37 -0
  247. package/stories/components/panels/logs.stories.tsx +24 -0
  248. package/stories/components/panels/nodeInputs.stories.tsx +21 -0
  249. package/stories/components/panels/nodePicker.stories.tsx +37 -0
  250. package/stories/components/panels/panel.stories.tsx +39 -0
  251. package/stories/components/panels/search.stories.tsx +24 -0
  252. package/stories/components/panels/systemSettings.stories.tsx +26 -0
  253. package/stories/components/panels/traces.stories.tsx +225 -0
  254. package/stories/components/panels/variables.stories.tsx +24 -0
  255. package/stories/defaults/defaultStoryProvider.tsx +167 -0
  256. package/stories/defaults/systemGenerator.ts +38 -0
  257. package/tests/components/edges/offsetBezier.test.ts +51 -0
  258. package/tests/components/layoutController/utils.test.ts +68 -0
  259. package/tests/components/panels/traces/utils.test.ts +52 -0
  260. package/tests/flowToBehave.test.ts +26 -4
  261. package/tests/notifications.test.ts +87 -0
  262. package/tests/saveLoad.test.ts +372 -0
  263. package/tests/util/calculateNewEdge.test.ts +98 -0
  264. package/tests/util/getSocketsByNodeTypeAndHandleType.test.ts +31 -0
  265. package/tests/util/hasPositionMetaData.test.ts +33 -0
  266. package/tests/util/isBehaveNode.test.ts +22 -0
  267. package/tests/util/isHandleConnected.test.ts +37 -0
  268. package/tests/util/mergeSockets.test.ts +43 -0
  269. package/tests/visual/README.md +64 -0
  270. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-alignment-chromium-win32.png +0 -0
  271. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-conversation-chromium-win32.png +0 -0
  272. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-events-chromium-win32.png +0 -0
  273. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-history-chromium-win32.png +0 -0
  274. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-keymaps-chromium-win32.png +0 -0
  275. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-layers-chromium-win32.png +0 -0
  276. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-legend-chromium-win32.png +0 -0
  277. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-logs-chromium-win32.png +0 -0
  278. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-nodeInputs-chromium-win32.png +0 -0
  279. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-nodePicker-chromium-win32.png +0 -0
  280. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-panel-chromium-win32.png +0 -0
  281. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-search-chromium-win32.png +0 -0
  282. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-systemSettings-chromium-win32.png +0 -0
  283. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-traces-chromium-win32.png +0 -0
  284. package/tests/visual/__screenshots__/panels.visual.test.tsx/panel-variables-chromium-win32.png +0 -0
  285. package/tests/visual/panels.visual.test.tsx +76 -0
  286. package/tsconfig.base.json +39 -0
  287. package/tsconfig.json +18 -59
  288. package/tsconfig.prod.json +23 -0
  289. package/tsdown.config.ts +15 -3
  290. package/typedoc.json +7 -7
  291. package/vite.config.js +7 -0
  292. package/vitest.config.ts +5 -2
  293. package/vitest.visual.config.ts +48 -0
  294. package/src/components/AutoSizeInput.tsx +0 -65
  295. package/src/components/Controls.tsx +0 -87
  296. package/src/components/InputSocket.tsx +0 -142
  297. package/src/components/Node.tsx +0 -68
  298. package/src/components/NodeContainer.tsx +0 -46
  299. package/src/components/NodePicker.tsx +0 -77
  300. package/src/components/OutputSocket.tsx +0 -58
  301. package/src/components/modals/ClearModal.tsx +0 -40
  302. package/src/components/modals/HelpModal.tsx +0 -36
  303. package/src/components/modals/LoadModal.tsx +0 -96
  304. package/src/components/modals/Modal.tsx +0 -64
  305. package/src/components/modals/SaveModal.tsx +0 -60
  306. package/src/hooks/useCustomNodeTypes.tsx +0 -31
  307. package/src/hooks/useGraphRunner.ts +0 -104
  308. package/src/hooks/useMergeMap.ts +0 -14
  309. package/src/hooks/useNodeSpecJson.ts +0 -20
  310. package/src/hooks/useQueriableDefinitions.ts +0 -22
  311. package/src/styles.css +0 -8
  312. package/tailwind.config.ts +0 -19
  313. package/tests/tsconfig.json +0 -10
  314. /package/src/{types.d.ts → types-declarations.d.ts} +0 -0
@@ -0,0 +1,814 @@
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
+ }