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