symbiote-ui 0.3.0-alpha.4

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 (322) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/LICENSE +21 -0
  3. package/README.md +76 -0
  4. package/canvas/AutoLayout.js +731 -0
  5. package/canvas/Breadcrumb/Breadcrumb.css.js +75 -0
  6. package/canvas/Breadcrumb/Breadcrumb.js +96 -0
  7. package/canvas/Breadcrumb/Breadcrumb.tpl.js +7 -0
  8. package/canvas/CanvasConnectionRenderer.js +971 -0
  9. package/canvas/CanvasGraph/CanvasGraph.css.js +29 -0
  10. package/canvas/CanvasGraph/CanvasGraph.js +1697 -0
  11. package/canvas/CanvasGraph/CanvasGraphDrawState.js +280 -0
  12. package/canvas/CanvasGraph/CanvasGraphGeometry.js +194 -0
  13. package/canvas/CanvasViewport.js +550 -0
  14. package/canvas/ConnectionRenderer.js +1283 -0
  15. package/canvas/FlowSimulator.js +326 -0
  16. package/canvas/ForceLayout.js +226 -0
  17. package/canvas/ForceWorker.js +1303 -0
  18. package/canvas/FrameManager.js +223 -0
  19. package/canvas/GraphExplorerShell/GraphExplorerShell.css.js +136 -0
  20. package/canvas/GraphExplorerShell/GraphExplorerShell.js +129 -0
  21. package/canvas/GraphExplorerShell/GraphExplorerShell.tpl.js +12 -0
  22. package/canvas/GraphTabs/GraphTabs.css.js +101 -0
  23. package/canvas/GraphTabs/GraphTabs.js +189 -0
  24. package/canvas/GraphTabs/GraphTabs.tpl.js +12 -0
  25. package/canvas/LODManager.js +88 -0
  26. package/canvas/Minimap/Minimap.css.js +73 -0
  27. package/canvas/Minimap/Minimap.js +210 -0
  28. package/canvas/Minimap/Minimap.tpl.js +7 -0
  29. package/canvas/NodeCanvas/NodeCanvas.css.js +398 -0
  30. package/canvas/NodeCanvas/NodeCanvas.js +1499 -0
  31. package/canvas/NodeCanvas/NodeCanvas.tpl.js +22 -0
  32. package/canvas/NodeSearch/NodeSearch.css.js +97 -0
  33. package/canvas/NodeSearch/NodeSearch.js +140 -0
  34. package/canvas/NodeSearch/NodeSearch.tpl.js +25 -0
  35. package/canvas/NodeViewManager.js +748 -0
  36. package/canvas/PcbRouteDiagnostics.js +463 -0
  37. package/canvas/PcbRouter.js +1127 -0
  38. package/canvas/PinExpansion.js +134 -0
  39. package/canvas/PseudoConnection.js +84 -0
  40. package/canvas/SelectionSync.js +163 -0
  41. package/canvas/SubgraphManager.js +203 -0
  42. package/canvas/SubgraphRouter.js +452 -0
  43. package/canvas/ViewportActions.js +473 -0
  44. package/canvas/graph-explorer.js +339 -0
  45. package/canvas/graph-layout.js +148 -0
  46. package/canvas/graph-model.js +68 -0
  47. package/canvas/html-in-canvas.js +202 -0
  48. package/canvas/project-graph-builder.js +440 -0
  49. package/canvas/project-graph-model.js +183 -0
  50. package/chat/ChatComposer/ChatComposer.css.js +652 -0
  51. package/chat/ChatComposer/ChatComposer.js +304 -0
  52. package/chat/ChatList/ChatList.css.js +102 -0
  53. package/chat/ChatList/ChatList.js +99 -0
  54. package/chat/ChatList/ChatList.tpl.js +20 -0
  55. package/chat/ChatListItem/ChatListItem.css.js +117 -0
  56. package/chat/ChatListItem/ChatListItem.js +32 -0
  57. package/chat/ChatListItem/ChatListItem.tpl.js +17 -0
  58. package/chat/ChatMessageItem/ChatMessageItem.css.js +628 -0
  59. package/chat/ChatMessageItem/ChatMessageItem.js +156 -0
  60. package/chat/ChatSidebar/ChatSidebar.css.js +150 -0
  61. package/chat/ChatSidebar/ChatSidebar.js +230 -0
  62. package/chat/ChatSidebar/ChatSidebar.tpl.js +18 -0
  63. package/chat/ChatSidebar/constants.js +11 -0
  64. package/chat/ChatSidebarItem/ChatSidebarItem.css.js +445 -0
  65. package/chat/ChatSidebarItem/ChatSidebarItem.js +304 -0
  66. package/chat/ChatTranscript/ChatTranscript.css.js +90 -0
  67. package/chat/ChatTranscript/ChatTranscript.js +244 -0
  68. package/chat/chat-context.js +123 -0
  69. package/chat/message-model.js +156 -0
  70. package/cli.js +20 -0
  71. package/control/Button/Button.css.js +93 -0
  72. package/control/Button/Button.js +78 -0
  73. package/control/Button/Button.tpl.js +3 -0
  74. package/control/Field/Field.css.js +91 -0
  75. package/control/Field/Field.js +17 -0
  76. package/control/Field/Field.tpl.js +3 -0
  77. package/core/Connection.js +47 -0
  78. package/core/Editor.js +449 -0
  79. package/core/Frame.js +33 -0
  80. package/core/GraphMermaid.js +348 -0
  81. package/core/GraphText.js +228 -0
  82. package/core/Node.js +145 -0
  83. package/core/Portal.js +106 -0
  84. package/core/Socket.js +187 -0
  85. package/core/SubgraphNode.js +121 -0
  86. package/core/base-path.js +55 -0
  87. package/core/dom-utils.js +14 -0
  88. package/core/index.js +18 -0
  89. package/core/local-cache.js +26 -0
  90. package/core/state-sync.js +227 -0
  91. package/custom-elements.json +6380 -0
  92. package/discover.js +240 -0
  93. package/display/Badge/Badge.css.js +44 -0
  94. package/display/Badge/Badge.js +17 -0
  95. package/display/Badge/Badge.tpl.js +3 -0
  96. package/display/Banner/Banner.css.js +61 -0
  97. package/display/Banner/Banner.js +17 -0
  98. package/display/Banner/Banner.tpl.js +3 -0
  99. package/display/CodeBlock/CodeBlock.css.js +194 -0
  100. package/display/CodeBlock/CodeBlock.js +220 -0
  101. package/display/CodeBlock/CodeBlock.tpl.js +11 -0
  102. package/display/DataTable/DataTable.css.js +101 -0
  103. package/display/DataTable/DataTable.js +136 -0
  104. package/display/DataTable/DataTable.tpl.js +13 -0
  105. package/display/EmptyState/EmptyState.css.js +33 -0
  106. package/display/EmptyState/EmptyState.js +17 -0
  107. package/display/EmptyState/EmptyState.tpl.js +3 -0
  108. package/display/EventFeed/EventFeed.css.js +145 -0
  109. package/display/EventFeed/EventFeed.js +64 -0
  110. package/display/EventFeed/EventFeed.tpl.js +14 -0
  111. package/display/EventFeed/EventFeedItem.js +116 -0
  112. package/display/EventFeed/EventFeedItem.tpl.js +22 -0
  113. package/display/LoadingOverlay/LoadingOverlay.css.js +91 -0
  114. package/display/LoadingOverlay/LoadingOverlay.js +48 -0
  115. package/display/LoadingOverlay/LoadingOverlay.tpl.js +12 -0
  116. package/display/Metric/Metric.css.js +60 -0
  117. package/display/Metric/Metric.js +17 -0
  118. package/display/Metric/Metric.tpl.js +6 -0
  119. package/display/OutputGraphPreview/OutputGraphPreview.css.js +122 -0
  120. package/display/OutputGraphPreview/OutputGraphPreview.js +89 -0
  121. package/display/OutputGraphPreview/OutputGraphPreview.tpl.js +13 -0
  122. package/display/OutputListPreview/OutputListPreview.css.js +109 -0
  123. package/display/OutputListPreview/OutputListPreview.js +77 -0
  124. package/display/OutputListPreview/OutputListPreview.tpl.js +13 -0
  125. package/display/SourceEditor/SourceEditor.css.js +39 -0
  126. package/display/SourceEditor/SourceEditor.js +129 -0
  127. package/display/SourceEditor/SourceEditor.tpl.js +10 -0
  128. package/display/SourceViewer/SourceViewer.css.js +80 -0
  129. package/display/SourceViewer/SourceViewer.js +418 -0
  130. package/display/SourceViewer/SourceViewer.tpl.js +17 -0
  131. package/display/StatusRibbon/StatusRibbon.css.js +73 -0
  132. package/display/StatusRibbon/StatusRibbon.js +87 -0
  133. package/display/StatusRibbon/StatusRibbon.tpl.js +7 -0
  134. package/display/event-feed-adapter.js +72 -0
  135. package/display/format-utils.js +29 -0
  136. package/display/highlight.js +659 -0
  137. package/display/icons.js +37 -0
  138. package/display/markdown-formatter.js +60 -0
  139. package/display/network-approval-page.js +487 -0
  140. package/display/output-preview.js +261 -0
  141. package/effects/CellBg/CellBg.css.js +33 -0
  142. package/effects/CellBg/CellBg.js +410 -0
  143. package/effects/CellBg/CellBg.tpl.js +5 -0
  144. package/graph/canvas-adapter.js +223 -0
  145. package/graph/graph-algorithms.js +31 -0
  146. package/graph/index.js +46 -0
  147. package/graph/model.js +176 -0
  148. package/graph/project-graph-build.js +66 -0
  149. package/graph/project-graph-metadata.js +253 -0
  150. package/graph/project-package.js +128 -0
  151. package/graph/project-runtime.js +116 -0
  152. package/graph/project-transaction.js +284 -0
  153. package/graph/skeleton-utils.js +84 -0
  154. package/graph/theme-contract.js +36 -0
  155. package/graph/transaction-parser.js +56 -0
  156. package/icons/MaterialSymbols.js +69 -0
  157. package/icons/material-symbols-outlined-400.ttf +0 -0
  158. package/icons/material-symbols.css +24 -0
  159. package/index.js +95 -0
  160. package/inspector/InspectorPanel/InspectorPanel.css.js +375 -0
  161. package/inspector/InspectorPanel/InspectorPanel.js +368 -0
  162. package/inspector/InspectorPanel/InspectorPanel.tpl.js +96 -0
  163. package/inspector/TemplatePreview/TemplatePreview.css.js +104 -0
  164. package/inspector/TemplatePreview/TemplatePreview.js +145 -0
  165. package/inspector/TemplatePreview/TemplatePreview.tpl.js +33 -0
  166. package/interactions/ConnectFlow.js +304 -0
  167. package/interactions/Drag.js +104 -0
  168. package/interactions/Selector.js +133 -0
  169. package/interactions/SnapGrid.js +66 -0
  170. package/interactions/Zoom.js +139 -0
  171. package/layout/ActionZone/ActionZone.css.js +88 -0
  172. package/layout/ActionZone/ActionZone.js +261 -0
  173. package/layout/ActionZone/ActionZone.tpl.js +11 -0
  174. package/layout/CrossLayoutPortalBridge/CrossLayoutPortalBridge.js +255 -0
  175. package/layout/Layout/Layout.css.js +91 -0
  176. package/layout/Layout/Layout.js +637 -0
  177. package/layout/Layout/Layout.tpl.js +27 -0
  178. package/layout/LayoutNode/LayoutNode.css.js +302 -0
  179. package/layout/LayoutNode/LayoutNode.js +509 -0
  180. package/layout/LayoutNode/LayoutNode.tpl.js +39 -0
  181. package/layout/LayoutPreview/LayoutPreview.css.js +46 -0
  182. package/layout/LayoutPreview/LayoutPreview.js +102 -0
  183. package/layout/LayoutPreview/LayoutPreview.tpl.js +6 -0
  184. package/layout/LayoutRouter/LayoutRouter.js +274 -0
  185. package/layout/LayoutRouter/SectionRegistry.js +135 -0
  186. package/layout/LayoutRouter/routerSync.js +250 -0
  187. package/layout/LayoutSidebar/LayoutSidebar.css.js +411 -0
  188. package/layout/LayoutSidebar/LayoutSidebar.js +368 -0
  189. package/layout/LayoutSidebar/LayoutSidebar.tpl.js +26 -0
  190. package/layout/LayoutSidebar/SidebarSection.css.js +20 -0
  191. package/layout/LayoutSidebar/SidebarSection.js +184 -0
  192. package/layout/LayoutSidebar/SidebarSection.tpl.js +22 -0
  193. package/layout/LayoutTree.js +373 -0
  194. package/layout/PanelMenu/PanelMenu.css.js +43 -0
  195. package/layout/PanelMenu/PanelMenu.js +95 -0
  196. package/layout/PanelMenu/PanelMenu.tpl.js +17 -0
  197. package/layout/ProjectTabs/ProjectTabs.css.js +188 -0
  198. package/layout/ProjectTabs/ProjectTabs.js +77 -0
  199. package/layout/ProjectTabs/ProjectTabs.tpl.js +15 -0
  200. package/layout/index.js +40 -0
  201. package/list/ListDetailShell/ListDetailShell.css.js +128 -0
  202. package/list/ListDetailShell/ListDetailShell.js +72 -0
  203. package/list/ListDetailShell/ListDetailShell.tpl.js +36 -0
  204. package/list/ListItem/ListItem.css.js +111 -0
  205. package/list/ListItem/ListItem.js +66 -0
  206. package/list/ListItem/ListItem.tpl.js +18 -0
  207. package/locale/index.js +503 -0
  208. package/manifest/component-registry.js +2446 -0
  209. package/manifest/graph-schema.js +285 -0
  210. package/manifest/index.js +6 -0
  211. package/manifest/project-schema-catalog.js +246 -0
  212. package/manifest/rule-catalog.js +201 -0
  213. package/manifest/theme-catalog.js +2149 -0
  214. package/manifest/ui-schema-catalog.js +334 -0
  215. package/menu/ContextMenu/ContextMenu.css.js +61 -0
  216. package/menu/ContextMenu/ContextMenu.js +82 -0
  217. package/menu/ContextMenu/ContextMenu.tpl.js +19 -0
  218. package/navigation/QuickOpen/QuickOpen.css.js +92 -0
  219. package/navigation/QuickOpen/QuickOpen.js +185 -0
  220. package/navigation/QuickOpen/QuickOpen.tpl.js +15 -0
  221. package/navigation/quick-open-utils.js +101 -0
  222. package/node/CtrlItem/CtrlItem.css.js +41 -0
  223. package/node/CtrlItem/CtrlItem.js +24 -0
  224. package/node/CtrlItem/CtrlItem.tpl.js +17 -0
  225. package/node/GraphFrame/GraphFrame.css.js +66 -0
  226. package/node/GraphFrame/GraphFrame.js +32 -0
  227. package/node/GraphFrame/GraphFrame.tpl.js +13 -0
  228. package/node/GraphNode/GraphNode.css.js +815 -0
  229. package/node/GraphNode/GraphNode.js +173 -0
  230. package/node/GraphNode/GraphNode.tpl.js +33 -0
  231. package/node/NodeCallout/NodeCallout.css.js +91 -0
  232. package/node/NodeCallout/NodeCallout.js +281 -0
  233. package/node/NodeCallout/NodeCallout.tpl.js +8 -0
  234. package/node/NodeSocket/NodeSocket.css.js +68 -0
  235. package/node/NodeSocket/NodeSocket.js +26 -0
  236. package/node/NodeSocket/NodeSocket.tpl.js +7 -0
  237. package/node/PortItem/PortItem.css.js +93 -0
  238. package/node/PortItem/PortItem.js +87 -0
  239. package/node/PortItem/PortItem.tpl.js +10 -0
  240. package/package.json +165 -0
  241. package/palette/PaletteBrowser/PaletteBrowser.css.js +143 -0
  242. package/palette/PaletteBrowser/PaletteBrowser.js +152 -0
  243. package/palette/PaletteBrowser/PaletteBrowser.tpl.js +23 -0
  244. package/plugins/History.js +408 -0
  245. package/plugins/Readonly.js +60 -0
  246. package/rules/symbiote-3x.json +170 -0
  247. package/schemas/component-descriptor-v1.json +91 -0
  248. package/schemas/component-descriptor-v2.json +145 -0
  249. package/schemas/graph-model-v1.json +179 -0
  250. package/schemas/graph-v1.json +91 -0
  251. package/schemas/project-package-v1.json +102 -0
  252. package/schemas/project-transaction-v1.json +114 -0
  253. package/schemas/runtime-ui-v1.json +80 -0
  254. package/schemas/theme-rule-block-v1.json +73 -0
  255. package/shapes/CircleShape.js +79 -0
  256. package/shapes/CommentShape.js +35 -0
  257. package/shapes/DiamondShape.js +130 -0
  258. package/shapes/NodeShape.js +79 -0
  259. package/shapes/PillShape.js +91 -0
  260. package/shapes/RectShape.js +84 -0
  261. package/shapes/SVGShape.js +525 -0
  262. package/shapes/index.js +63 -0
  263. package/surface/Card/Card.css.js +57 -0
  264. package/surface/Card/Card.js +17 -0
  265. package/surface/Card/Card.tpl.js +3 -0
  266. package/themes/Palette.js +30 -0
  267. package/themes/Skin.js +113 -0
  268. package/themes/Theme.js +82 -0
  269. package/themes/carbon.js +135 -0
  270. package/themes/dark.js +140 -0
  271. package/themes/default-dark.js +714 -0
  272. package/themes/default-provider.css +635 -0
  273. package/themes/default-provider.js +718 -0
  274. package/themes/ebook.js +136 -0
  275. package/themes/grey.js +137 -0
  276. package/themes/light.js +139 -0
  277. package/themes/neon.js +138 -0
  278. package/themes/pcb.js +273 -0
  279. package/themes/synthwave.js +138 -0
  280. package/tokens/base.json +29 -0
  281. package/tokens/themes/carbon.json +11 -0
  282. package/tokens/themes/dark.json +12 -0
  283. package/tokens/themes/default-dark.json +1543 -0
  284. package/tokens/themes/default-provider.json +1543 -0
  285. package/tokens/themes/ebook.json +11 -0
  286. package/tokens/themes/grey.json +11 -0
  287. package/tokens/themes/light.json +12 -0
  288. package/tokens/themes/neon.json +11 -0
  289. package/tokens/themes/pcb.json +11 -0
  290. package/tokens/themes/synthwave.json +11 -0
  291. package/toolbar/QuickToolbar/QuickToolbar.css.js +152 -0
  292. package/toolbar/QuickToolbar/QuickToolbar.js +529 -0
  293. package/toolbar/QuickToolbar/QuickToolbar.tpl.js +34 -0
  294. package/tree/TreePanel/TreePanel.css.js +112 -0
  295. package/tree/TreePanel/TreePanel.js +147 -0
  296. package/tree/TreePanel/TreePanel.tpl.js +18 -0
  297. package/tree/TreeView/TreeView.css.js +122 -0
  298. package/tree/TreeView/TreeView.js +365 -0
  299. package/tree/TreeView/TreeView.tpl.js +10 -0
  300. package/ui/dialogs.js +221 -0
  301. package/ui/host-adapters.js +114 -0
  302. package/ui/index.js +660 -0
  303. package/ui/locale.js +50 -0
  304. package/ui/overlay-stack.js +89 -0
  305. package/ui/shared-styles.js +26 -0
  306. package/webmcp.js +37 -0
  307. package/xr/deep-graph.js +646 -0
  308. package/xr/emulation.js +198 -0
  309. package/xr/gesture.js +228 -0
  310. package/xr/html-canvas-renderer.js +472 -0
  311. package/xr/index.js +15 -0
  312. package/xr/layout-projection.js +1046 -0
  313. package/xr/panel-frame.js +128 -0
  314. package/xr/panel-host.js +267 -0
  315. package/xr/pointer.js +258 -0
  316. package/xr/scene-controller.js +242 -0
  317. package/xr/spatial-scene.js +212 -0
  318. package/xr/theme-bridge.js +105 -0
  319. package/xr/three-webxr-adapter.js +3439 -0
  320. package/xr/webgl-layer-renderer.js +419 -0
  321. package/xr/webxr.js +679 -0
  322. package/xr/workbench.js +516 -0
@@ -0,0 +1,1543 @@
1
+ {
2
+ "name": "default-provider",
3
+ "extends": "../base.json",
4
+ "$description": "Cascadeable neutral provider default aligned with the current Agent Portal shell values. Runtime CSS variables derive neutral surfaces, accents, controls, geometry, motion, and elevation from native HSL controls and color-mix aliases.",
5
+ "$extensions": {
6
+ "symbioteNode": {
7
+ "role": "neutral-default",
8
+ "origin": "Agent Portal shell values generalized into provider-neutral Symbiote Node tokens.",
9
+ "cascade": "Apply once at :root, an app shell, or a subtree boundary; components inherit --sn-* tokens through the CSS cascade.",
10
+ "colorModel": [
11
+ "native-css-hsl",
12
+ "alpha-hsl",
13
+ "color-mix"
14
+ ],
15
+ "controlTokens": [
16
+ "--sn-theme-hue",
17
+ "--sn-theme-chroma",
18
+ "--sn-theme-bg-lightness",
19
+ "--sn-theme-surface-lightness",
20
+ "--sn-theme-text-lightness",
21
+ "--sn-theme-density",
22
+ "--sn-theme-radius-scale",
23
+ "--sn-theme-motion-scale",
24
+ "--sn-theme-elevation-scale"
25
+ ],
26
+ "geometryFamilies": [
27
+ "density",
28
+ "radius",
29
+ "layout",
30
+ "row",
31
+ "control",
32
+ "graph",
33
+ "chat",
34
+ "source",
35
+ "loading"
36
+ ]
37
+ }
38
+ },
39
+ "control": {
40
+ "hue": {
41
+ "$type": "number",
42
+ "$value": "218"
43
+ },
44
+ "chroma": {
45
+ "$type": "percentage",
46
+ "$value": "89%"
47
+ },
48
+ "backgroundLightness": {
49
+ "$type": "percentage",
50
+ "$value": "10%"
51
+ },
52
+ "surfaceLightness": {
53
+ "$type": "percentage",
54
+ "$value": "13%"
55
+ },
56
+ "textLightness": {
57
+ "$type": "percentage",
58
+ "$value": "94%"
59
+ },
60
+ "density": {
61
+ "$type": "number",
62
+ "$value": "1"
63
+ },
64
+ "radius": {
65
+ "$type": "number",
66
+ "$value": "1"
67
+ },
68
+ "motion": {
69
+ "$type": "number",
70
+ "$value": "1"
71
+ },
72
+ "elevation": {
73
+ "$type": "number",
74
+ "$value": "1"
75
+ }
76
+ },
77
+ "color": {
78
+ "background": {
79
+ "$type": "color",
80
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-bg))"
81
+ },
82
+ "surface": {
83
+ "$type": "color",
84
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-surface))"
85
+ },
86
+ "border": {
87
+ "$type": "color",
88
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.1)"
89
+ },
90
+ "text": {
91
+ "$type": "color",
92
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text))"
93
+ },
94
+ "textDim": {
95
+ "$type": "color",
96
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text-dim))"
97
+ },
98
+ "accent": {
99
+ "$type": "color",
100
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent))"
101
+ },
102
+ "success": {
103
+ "$type": "color",
104
+ "$value": "hsl(var(--sn-hue-success) var(--sn-sat-vivid) 57%)"
105
+ },
106
+ "warning": {
107
+ "$type": "color",
108
+ "$value": "hsl(var(--sn-hue-warning) var(--sn-sat-vivid) 58%)"
109
+ },
110
+ "danger": {
111
+ "$type": "color",
112
+ "$value": "hsl(var(--sn-hue-danger) var(--sn-sat-vivid) 58%)"
113
+ },
114
+ "overlay": {
115
+ "$type": "color",
116
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) 0% / 0.45)"
117
+ },
118
+ "statusOkBg": {
119
+ "$type": "color",
120
+ "$value": "color-mix(in srgb, var(--sn-success-color) 12%, transparent)"
121
+ },
122
+ "statusErrorBg": {
123
+ "$type": "color",
124
+ "$value": "color-mix(in srgb, var(--sn-danger-color) 12%, transparent)"
125
+ },
126
+ "messageEventBg": {
127
+ "$type": "color",
128
+ "$value": "color-mix(in srgb, var(--sn-cat-server) 10%, transparent)"
129
+ }
130
+ },
131
+ "component": {
132
+ "panelBackground": {
133
+ "$type": "color",
134
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-surface))"
135
+ },
136
+ "layoutGapBackground": {
137
+ "$type": "color",
138
+ "$value": "transparent"
139
+ },
140
+ "layoutBorder": {
141
+ "$type": "color",
142
+ "$value": "transparent"
143
+ },
144
+ "layoutResizerBackground": {
145
+ "$type": "color",
146
+ "$value": "transparent"
147
+ },
148
+ "layoutResizerHoverBackground": {
149
+ "$type": "color",
150
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.08)"
151
+ },
152
+ "layoutPreviewJoinBackground": {
153
+ "$type": "color",
154
+ "$value": "color-mix(in srgb, var(--sn-danger-color) 30%, transparent)"
155
+ },
156
+ "layoutPreviewJoinBorder": {
157
+ "$type": "color",
158
+ "$value": "color-mix(in srgb, var(--sn-danger-color) 60%, transparent)"
159
+ },
160
+ "layoutPreviewLine": {
161
+ "$type": "color",
162
+ "$value": "var(--sn-node-selected)"
163
+ },
164
+ "layoutPreviewLineShadow": {
165
+ "$type": "shadow",
166
+ "$value": "0 0 8px var(--sn-layout-preview-line)"
167
+ },
168
+ "xrPanelBackground": {
169
+ "$type": "color",
170
+ "$value": "var(--sn-panel-bg)"
171
+ },
172
+ "xrPanelBorder": {
173
+ "$type": "color",
174
+ "$value": "var(--sn-node-border)"
175
+ },
176
+ "xrPanelRadius": {
177
+ "$type": "dimension",
178
+ "$value": "var(--sn-node-radius)"
179
+ },
180
+ "xrPanelShadow": {
181
+ "$type": "shadow",
182
+ "$value": "var(--sn-node-shadow)"
183
+ },
184
+ "xrPointerColor": {
185
+ "$type": "color",
186
+ "$value": "var(--sn-node-selected)"
187
+ },
188
+ "nodeHover": {
189
+ "$type": "color",
190
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-hover))"
191
+ },
192
+ "accentBackground": {
193
+ "$type": "color",
194
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.12)"
195
+ },
196
+ "accentBackgroundSubtle": {
197
+ "$type": "color",
198
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.06)"
199
+ },
200
+ "accentBorder": {
201
+ "$type": "color",
202
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.2)"
203
+ },
204
+ "successBackground": {
205
+ "$type": "color",
206
+ "$value": "color-mix(in srgb, var(--sn-success-color) 18%, transparent)"
207
+ },
208
+ "successBorder": {
209
+ "$type": "color",
210
+ "$value": "color-mix(in srgb, var(--sn-success-color) 32%, transparent)"
211
+ },
212
+ "successBackgroundHover": {
213
+ "$type": "color",
214
+ "$value": "color-mix(in srgb, var(--sn-success-color) 28%, transparent)"
215
+ },
216
+ "successBorderHover": {
217
+ "$type": "color",
218
+ "$value": "color-mix(in srgb, var(--sn-success-color) 52%, transparent)"
219
+ },
220
+ "dangerBackground": {
221
+ "$type": "color",
222
+ "$value": "color-mix(in srgb, var(--sn-danger-color) 18%, transparent)"
223
+ },
224
+ "dangerBorder": {
225
+ "$type": "color",
226
+ "$value": "color-mix(in srgb, var(--sn-danger-color) 32%, transparent)"
227
+ },
228
+ "subgraphBackground": {
229
+ "$type": "gradient",
230
+ "$value": "linear-gradient(135deg, color-mix(in srgb, var(--sn-subgraph-accent) 12%, transparent) 0%, color-mix(in srgb, var(--sn-subgraph-accent) 8%, transparent) 100%)"
231
+ },
232
+ "subgraphBackgroundHover": {
233
+ "$type": "gradient",
234
+ "$value": "linear-gradient(135deg, color-mix(in srgb, var(--sn-subgraph-accent) 22%, transparent) 0%, color-mix(in srgb, var(--sn-subgraph-accent) 15%, transparent) 100%)"
235
+ },
236
+ "subgraphBorder": {
237
+ "$type": "color",
238
+ "$value": "color-mix(in srgb, var(--sn-subgraph-accent) 30%, transparent)"
239
+ },
240
+ "subgraphBorderHover": {
241
+ "$type": "color",
242
+ "$value": "color-mix(in srgb, var(--sn-subgraph-accent) 50%, transparent)"
243
+ },
244
+ "subgraphPreviewConnection": {
245
+ "$type": "color",
246
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.12)"
247
+ },
248
+ "subgraphPreviewCompletedConnection": {
249
+ "$type": "color",
250
+ "$value": "hsl(var(--sn-hue-success) var(--sn-sat-vivid) 57% / 0.5)"
251
+ },
252
+ "subgraphPreviewProcessingFill": {
253
+ "$type": "color",
254
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.25)"
255
+ },
256
+ "subgraphPreviewProcessingStroke": {
257
+ "$type": "color",
258
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.8)"
259
+ },
260
+ "subgraphPreviewProcessingGlow": {
261
+ "$type": "color",
262
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.6)"
263
+ },
264
+ "subgraphPreviewCompletedFill": {
265
+ "$type": "color",
266
+ "$value": "hsl(var(--sn-hue-success) var(--sn-sat-vivid) 57% / 0.2)"
267
+ },
268
+ "subgraphPreviewCompletedStroke": {
269
+ "$type": "color",
270
+ "$value": "hsl(var(--sn-hue-success) var(--sn-sat-vivid) 57% / 0.7)"
271
+ },
272
+ "subgraphPreviewIdleFill": {
273
+ "$type": "color",
274
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.08)"
275
+ },
276
+ "subgraphPreviewIdleStroke": {
277
+ "$type": "color",
278
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.2)"
279
+ },
280
+ "dialogBackground": {
281
+ "$type": "color",
282
+ "$value": "var(--sn-panel-bg)"
283
+ },
284
+ "dialogColor": {
285
+ "$type": "color",
286
+ "$value": "var(--sn-text)"
287
+ },
288
+ "dialogBorder": {
289
+ "$type": "color",
290
+ "$value": "var(--sn-node-border)"
291
+ },
292
+ "dialogBorderWidth": {
293
+ "$type": "dimension",
294
+ "$value": "1px"
295
+ },
296
+ "dialogRadius": {
297
+ "$type": "dimension",
298
+ "$value": "calc(8px * var(--sn-theme-radius-scale))"
299
+ },
300
+ "dialogShadow": {
301
+ "$type": "shadow",
302
+ "$value": "var(--sn-shadow-lg)"
303
+ },
304
+ "dialogBackdrop": {
305
+ "$type": "color",
306
+ "$value": "var(--sn-bg-overlay)"
307
+ },
308
+ "dialogBodyPadding": {
309
+ "$type": "dimension",
310
+ "$value": "calc(20px * var(--sn-theme-density))"
311
+ },
312
+ "dialogFontSize": {
313
+ "$type": "dimension",
314
+ "$value": "14px"
315
+ },
316
+ "dialogMinWidth": {
317
+ "$type": "dimension",
318
+ "$value": "250px"
319
+ },
320
+ "dialogMessageGap": {
321
+ "$type": "dimension",
322
+ "$value": "calc(20px * var(--sn-theme-density))"
323
+ },
324
+ "dialogPromptMessageGap": {
325
+ "$type": "dimension",
326
+ "$value": "calc(10px * var(--sn-theme-density))"
327
+ },
328
+ "dialogActionsGap": {
329
+ "$type": "dimension",
330
+ "$value": "calc(10px * var(--sn-theme-density))"
331
+ },
332
+ "dialogActionsMarginBlockStart": {
333
+ "$type": "dimension",
334
+ "$value": "calc(20px * var(--sn-theme-density))"
335
+ },
336
+ "fieldControlSubtleBorder": {
337
+ "$type": "color",
338
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / var(--sn-alpha-faint))"
339
+ },
340
+ "fieldSelectIndicator": {
341
+ "$type": "gradient",
342
+ "$value": "linear-gradient(45deg, transparent 50%, var(--sn-text-dim) 50%), linear-gradient(135deg, var(--sn-text-dim) 50%, transparent 50%)"
343
+ },
344
+ "fieldToggleBackground": {
345
+ "$type": "color",
346
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.1)"
347
+ },
348
+ "fieldToggleThumbBackground": {
349
+ "$type": "color",
350
+ "$value": "var(--sn-text-dim)"
351
+ },
352
+ "fieldToggleThumbActiveBackground": {
353
+ "$type": "color",
354
+ "$value": "var(--sn-text)"
355
+ },
356
+ "scrollbarThumb": {
357
+ "$type": "color",
358
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.08)"
359
+ },
360
+ "scrollbarThumbHover": {
361
+ "$type": "color",
362
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.25)"
363
+ },
364
+ "nodeActiveBorder": {
365
+ "$type": "color",
366
+ "$value": "color-mix(in srgb, var(--sn-node-selected) 50%, transparent)"
367
+ },
368
+ "connectionLinecap": {
369
+ "$type": "string",
370
+ "$value": "round"
371
+ },
372
+ "connectionLinejoin": {
373
+ "$type": "string",
374
+ "$value": "round"
375
+ },
376
+ "connectionDotFill": {
377
+ "$type": "color",
378
+ "$value": "var(--sn-conn-color)"
379
+ },
380
+ "connectionDotStroke": {
381
+ "$type": "color",
382
+ "$value": "var(--sn-node-bg)"
383
+ },
384
+ "dotOutput": {
385
+ "$type": "color",
386
+ "$value": "hsl(var(--sn-hue-warning) var(--sn-sat-vivid) 63%)"
387
+ },
388
+ "dotInput": {
389
+ "$type": "color",
390
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) 63%)"
391
+ },
392
+ "dotExec": {
393
+ "$type": "color",
394
+ "$value": "hsl(var(--sn-hue-warning) var(--sn-sat-vivid) 64%)"
395
+ },
396
+ "dotCtrl": {
397
+ "$type": "color",
398
+ "$value": "var(--sn-success-color)"
399
+ },
400
+ "outputPreviewBorder": {
401
+ "$type": "color",
402
+ "$value": "var(--sn-border)"
403
+ },
404
+ "outputPreviewBackground": {
405
+ "$type": "color",
406
+ "$value": "var(--sn-surface)"
407
+ },
408
+ "outputPreviewMuted": {
409
+ "$type": "color",
410
+ "$value": "var(--sn-text-dim)"
411
+ },
412
+ "outputPreviewTitle": {
413
+ "$type": "color",
414
+ "$value": "var(--sn-text)"
415
+ },
416
+ "outputPreviewLabel": {
417
+ "$type": "color",
418
+ "$value": "var(--sn-text)"
419
+ },
420
+ "outputPreviewGrid": {
421
+ "$type": "color",
422
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.04)"
423
+ },
424
+ "outputPreviewItemBorder": {
425
+ "$type": "color",
426
+ "$value": "var(--sn-border)"
427
+ },
428
+ "outputPreviewItemBackground": {
429
+ "$type": "color",
430
+ "$value": "var(--sn-node-bg)"
431
+ },
432
+ "outputPreviewEdgeBackground": {
433
+ "$type": "color",
434
+ "$value": "var(--sn-node-hover)"
435
+ },
436
+ "chatItemIconColor": {
437
+ "$type": "color",
438
+ "$value": "currentColor"
439
+ },
440
+ "chatItemChildShadow": {
441
+ "$type": "shadow",
442
+ "$value": "2px 0 4px color-mix(in srgb, var(--sn-bg) 70%, transparent)"
443
+ },
444
+ "listItemDisabledColor": {
445
+ "$type": "color",
446
+ "$value": "var(--sn-text-dim)"
447
+ },
448
+ "listItemIconColor": {
449
+ "$type": "color",
450
+ "$value": "var(--sn-text-dim)"
451
+ },
452
+ "listItemLabelColor": {
453
+ "$type": "color",
454
+ "$value": "var(--sn-text)"
455
+ },
456
+ "listItemDescriptionColor": {
457
+ "$type": "color",
458
+ "$value": "var(--sn-text-dim)"
459
+ },
460
+ "listItemMetaColor": {
461
+ "$type": "color",
462
+ "$value": "var(--sn-text-dim)"
463
+ },
464
+ "listDetailColor": {
465
+ "$type": "color",
466
+ "$value": "var(--sn-text)"
467
+ },
468
+ "listDetailIconColor": {
469
+ "$type": "color",
470
+ "$value": "var(--sn-text-dim)"
471
+ },
472
+ "listDetailTitleColor": {
473
+ "$type": "color",
474
+ "$value": "var(--sn-text)"
475
+ },
476
+ "listDetailDescriptionColor": {
477
+ "$type": "color",
478
+ "$value": "var(--sn-text-dim)"
479
+ },
480
+ "sourceEditorPlaceholderColor": {
481
+ "$type": "color",
482
+ "$value": "var(--sn-text-dim)"
483
+ },
484
+ "metricGap": {
485
+ "$type": "dimension",
486
+ "$value": "12px"
487
+ },
488
+ "metricPadding": {
489
+ "$type": "dimension",
490
+ "$value": "5px 0"
491
+ },
492
+ "metricBorder": {
493
+ "$type": "color",
494
+ "$value": "var(--sn-node-hover)"
495
+ },
496
+ "metricColor": {
497
+ "$type": "color",
498
+ "$value": "var(--sn-text)"
499
+ },
500
+ "metricLabelColor": {
501
+ "$type": "color",
502
+ "$value": "var(--sn-text-dim)"
503
+ },
504
+ "metricLabelSize": {
505
+ "$type": "dimension",
506
+ "$value": "12px"
507
+ },
508
+ "metricValueColor": {
509
+ "$type": "color",
510
+ "$value": "var(--sn-text)"
511
+ },
512
+ "metricValueSize": {
513
+ "$type": "dimension",
514
+ "$value": "12px"
515
+ },
516
+ "metricValueWeight": {
517
+ "$type": "number",
518
+ "$value": "600"
519
+ },
520
+ "metricValueFont": {
521
+ "$type": "fontFamily",
522
+ "$value": "var(--sn-font-mono)"
523
+ },
524
+ "metricSuccessColor": {
525
+ "$type": "color",
526
+ "$value": "var(--sn-success-color)"
527
+ },
528
+ "metricWarningColor": {
529
+ "$type": "color",
530
+ "$value": "var(--sn-warning-color)"
531
+ },
532
+ "metricErrorColor": {
533
+ "$type": "color",
534
+ "$value": "var(--sn-danger-color)"
535
+ },
536
+ "dataTableBackground": {
537
+ "$type": "color",
538
+ "$value": "var(--sn-node-bg)"
539
+ },
540
+ "dataTableBorder": {
541
+ "$type": "color",
542
+ "$value": "var(--sn-node-border)"
543
+ },
544
+ "dataTableRadius": {
545
+ "$type": "dimension",
546
+ "$value": "calc(8px * var(--sn-theme-radius-scale))"
547
+ },
548
+ "dataTableColor": {
549
+ "$type": "color",
550
+ "$value": "var(--sn-text)"
551
+ },
552
+ "dataTableHeaderBackground": {
553
+ "$type": "color",
554
+ "$value": "var(--sn-panel-bg)"
555
+ },
556
+ "dataTableHeaderColor": {
557
+ "$type": "color",
558
+ "$value": "var(--sn-text-dim)"
559
+ },
560
+ "dataTableHeaderBorder": {
561
+ "$type": "color",
562
+ "$value": "var(--sn-node-border)"
563
+ },
564
+ "dataTableHeaderSize": {
565
+ "$type": "dimension",
566
+ "$value": "11px"
567
+ },
568
+ "dataTableHeaderWeight": {
569
+ "$type": "number",
570
+ "$value": "500"
571
+ },
572
+ "dataTableHeaderTransform": {
573
+ "$type": "string",
574
+ "$value": "uppercase"
575
+ },
576
+ "dataTableRowBorder": {
577
+ "$type": "color",
578
+ "$value": "var(--sn-node-hover)"
579
+ },
580
+ "dataTableCellPadding": {
581
+ "$type": "dimension",
582
+ "$value": "12px 15px"
583
+ },
584
+ "dataTableCellSize": {
585
+ "$type": "dimension",
586
+ "$value": "13px"
587
+ },
588
+ "dataTableCellGap": {
589
+ "$type": "dimension",
590
+ "$value": "10px"
591
+ },
592
+ "dataTableLineHeight": {
593
+ "$type": "number",
594
+ "$value": "1.4"
595
+ },
596
+ "dataTableMinWidth": {
597
+ "$type": "dimension",
598
+ "$value": "0"
599
+ },
600
+ "dataTableMarkerSize": {
601
+ "$type": "dimension",
602
+ "$value": "12px"
603
+ },
604
+ "dataTableMarkerRadius": {
605
+ "$type": "dimension",
606
+ "$value": "50%"
607
+ },
608
+ "dataTableEmptyPadding": {
609
+ "$type": "dimension",
610
+ "$value": "12px 15px"
611
+ },
612
+ "dataTableEmptyColor": {
613
+ "$type": "color",
614
+ "$value": "var(--sn-text-dim)"
615
+ }
616
+ },
617
+ "geometry": {
618
+ "layoutResizerSize": {
619
+ "$type": "dimension",
620
+ "$value": "6px"
621
+ },
622
+ "treeGap": {
623
+ "$type": "dimension",
624
+ "$value": "4px"
625
+ },
626
+ "treeIndent": {
627
+ "$type": "dimension",
628
+ "$value": "16px"
629
+ },
630
+ "treeRowHeight": {
631
+ "$type": "dimension",
632
+ "$value": "22px"
633
+ },
634
+ "treeRowPaddingBlock": {
635
+ "$type": "dimension",
636
+ "$value": "2px"
637
+ },
638
+ "treeRowRadius": {
639
+ "$type": "dimension",
640
+ "$value": "4px"
641
+ },
642
+ "treeIconSize": {
643
+ "$type": "dimension",
644
+ "$value": "15px"
645
+ },
646
+ "treeBadgeRadius": {
647
+ "$type": "dimension",
648
+ "$value": "8px"
649
+ },
650
+ "listItemRadius": {
651
+ "$type": "dimension",
652
+ "$value": "4px"
653
+ },
654
+ "listItemGap": {
655
+ "$type": "dimension",
656
+ "$value": "10px"
657
+ },
658
+ "listItemMinHeight": {
659
+ "$type": "dimension",
660
+ "$value": "34px"
661
+ },
662
+ "tabsHeight": {
663
+ "$type": "dimension",
664
+ "$value": "38px"
665
+ },
666
+ "tabsItemHeight": {
667
+ "$type": "dimension",
668
+ "$value": "32px"
669
+ },
670
+ "composerRadius": {
671
+ "$type": "dimension",
672
+ "$value": "20px"
673
+ },
674
+ "composerControlGap": {
675
+ "$type": "dimension",
676
+ "$value": "8px"
677
+ },
678
+ "composerInputMinHeight": {
679
+ "$type": "dimension",
680
+ "$value": "20px"
681
+ },
682
+ "chatGap": {
683
+ "$type": "dimension",
684
+ "$value": "8px"
685
+ },
686
+ "chatMetaIconSize": {
687
+ "$type": "dimension",
688
+ "$value": "12px"
689
+ },
690
+ "chatStatusIconSize": {
691
+ "$type": "dimension",
692
+ "$value": "12px"
693
+ },
694
+ "chatToolIconSize": {
695
+ "$type": "dimension",
696
+ "$value": "14px"
697
+ },
698
+ "chatSummaryIconSize": {
699
+ "$type": "dimension",
700
+ "$value": "16px"
701
+ },
702
+ "sourceActionRadius": {
703
+ "$type": "dimension",
704
+ "$value": "4px"
705
+ },
706
+ "sourceEditorFontSize": {
707
+ "$type": "dimension",
708
+ "$value": "12px"
709
+ },
710
+ "loadingOverlayGap": {
711
+ "$type": "dimension",
712
+ "$value": "16px"
713
+ },
714
+ "loadingOverlayZ": {
715
+ "$type": "number",
716
+ "$value": "500"
717
+ },
718
+ "overlayZBase": {
719
+ "$type": "number",
720
+ "$value": "20000"
721
+ },
722
+ "toolbarOcclusionBackground": {
723
+ "$type": "color",
724
+ "$value": "var(--sn-panel-bg)"
725
+ },
726
+ "loadingLabelSize": {
727
+ "$type": "dimension",
728
+ "$value": "11px"
729
+ },
730
+ "loadingPhaseSize": {
731
+ "$type": "dimension",
732
+ "$value": "10px"
733
+ },
734
+ "loadingTrackWidth": {
735
+ "$type": "dimension",
736
+ "$value": "200px"
737
+ },
738
+ "loadingTrackHeight": {
739
+ "$type": "dimension",
740
+ "$value": "2px"
741
+ },
742
+ "loadingTrackRadius": {
743
+ "$type": "dimension",
744
+ "$value": "2px"
745
+ },
746
+ "loadingSubSize": {
747
+ "$type": "dimension",
748
+ "$value": "9px"
749
+ },
750
+ "nodeMinWidth": {
751
+ "$type": "dimension",
752
+ "$value": "180px"
753
+ },
754
+ "nodeMaxWidth": {
755
+ "$type": "dimension",
756
+ "$value": "280px"
757
+ },
758
+ "nodeBorderWidth": {
759
+ "$type": "dimension",
760
+ "$value": "2px"
761
+ },
762
+ "nodeFontSize": {
763
+ "$type": "dimension",
764
+ "$value": "13px"
765
+ },
766
+ "connectionDotStrokeWidth": {
767
+ "$type": "dimension",
768
+ "$value": "var(--sn-socket-border-width)"
769
+ },
770
+ "connectionDotRadius": {
771
+ "$type": "dimension",
772
+ "$value": "calc((var(--sn-socket-size) + var(--sn-conn-dot-stroke-width)) / 2)"
773
+ },
774
+ "graphExplorerOverlayZ": {
775
+ "$type": "number",
776
+ "$value": "100"
777
+ },
778
+ "graphExplorerToolbarTop": {
779
+ "$type": "dimension",
780
+ "$value": "8px"
781
+ },
782
+ "graphExplorerToolbarRight": {
783
+ "$type": "dimension",
784
+ "$value": "8px"
785
+ },
786
+ "graphExplorerToolbarGap": {
787
+ "$type": "dimension",
788
+ "$value": "6px"
789
+ },
790
+ "graphExplorerToolbarZ": {
791
+ "$type": "number",
792
+ "$value": "200"
793
+ },
794
+ "graphExplorerStatsBottom": {
795
+ "$type": "dimension",
796
+ "$value": "8px"
797
+ },
798
+ "graphExplorerStatsLeft": {
799
+ "$type": "dimension",
800
+ "$value": "8px"
801
+ },
802
+ "graphExplorerStatsZ": {
803
+ "$type": "number",
804
+ "$value": "10"
805
+ },
806
+ "graphTypeAction": {
807
+ "$type": "color",
808
+ "$value": "hsl(var(--sn-hue-danger) var(--sn-sat-vivid) 78%)"
809
+ },
810
+ "graphTypeOutput": {
811
+ "$type": "color",
812
+ "$value": "hsl(var(--sn-hue-success) var(--sn-sat-vivid) 65%)"
813
+ },
814
+ "graphTypeData": {
815
+ "$type": "color",
816
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) 74%)"
817
+ },
818
+ "graphTypeConfig": {
819
+ "$type": "color",
820
+ "$value": "hsl(var(--sn-hue-warning) var(--sn-sat-vivid) 68%)"
821
+ },
822
+ "graphTypeExternal": {
823
+ "$type": "color",
824
+ "$value": "hsl(var(--sn-hue-data) var(--sn-sat-vivid) 76%)"
825
+ },
826
+ "graphTypeStyle": {
827
+ "$type": "color",
828
+ "$value": "hsl(calc(var(--sn-hue-danger) + 315) var(--sn-sat-vivid) 78%)"
829
+ },
830
+ "graphTypeDocs": {
831
+ "$type": "color",
832
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) 81%)"
833
+ },
834
+ "graphTypeAsset": {
835
+ "$type": "color",
836
+ "$value": "hsl(calc(var(--sn-hue-accent) - 40) var(--sn-sat-vivid) 74%)"
837
+ },
838
+ "graphTypeGroup": {
839
+ "$type": "color",
840
+ "$value": "hsl(calc(var(--sn-hue-warning) + 8) var(--sn-sat-vivid) 67%)"
841
+ },
842
+ "graphCluster0": {
843
+ "$type": "color",
844
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) 74%)"
845
+ },
846
+ "graphCluster1": {
847
+ "$type": "color",
848
+ "$value": "hsl(var(--sn-hue-success) var(--sn-sat-vivid) 66%)"
849
+ },
850
+ "graphCluster2": {
851
+ "$type": "color",
852
+ "$value": "hsl(var(--sn-hue-warning) var(--sn-sat-vivid) 68%)"
853
+ },
854
+ "graphCluster3": {
855
+ "$type": "color",
856
+ "$value": "hsl(var(--sn-hue-danger) var(--sn-sat-vivid) 74%)"
857
+ },
858
+ "graphCluster4": {
859
+ "$type": "color",
860
+ "$value": "hsl(var(--sn-hue-data) var(--sn-sat-vivid) 76%)"
861
+ },
862
+ "graphCluster5": {
863
+ "$type": "color",
864
+ "$value": "hsl(calc(var(--sn-hue-accent) - 40) var(--sn-sat-vivid) 72%)"
865
+ },
866
+ "graphCluster6": {
867
+ "$type": "color",
868
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) 82%)"
869
+ },
870
+ "minimapBg": {
871
+ "$type": "color",
872
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-bg) / 0.85)"
873
+ },
874
+ "minimapNode": {
875
+ "$type": "color",
876
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.6)"
877
+ },
878
+ "minimapNodeStroke": {
879
+ "$type": "color",
880
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.3)"
881
+ },
882
+ "minimapBypassedNode": {
883
+ "$type": "color",
884
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text-dim) / 0.5)"
885
+ },
886
+ "minimapViewport": {
887
+ "$type": "color",
888
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.6)"
889
+ },
890
+ "minimapViewportFill": {
891
+ "$type": "color",
892
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.04)"
893
+ },
894
+ "treeBadgeMaxWidth": {
895
+ "$type": "dimension",
896
+ "$value": "88px"
897
+ },
898
+ "treeKindMaxWidth": {
899
+ "$type": "dimension",
900
+ "$value": "120px"
901
+ },
902
+ "treeKindSize": {
903
+ "$type": "dimension",
904
+ "$value": "10px"
905
+ },
906
+ "nodeErrorFrameOffset": {
907
+ "$type": "dimension",
908
+ "$value": "10px"
909
+ },
910
+ "nodeErrorFrameMinWidth": {
911
+ "$type": "dimension",
912
+ "$value": "140px"
913
+ },
914
+ "nodeErrorFrameMaxWidth": {
915
+ "$type": "dimension",
916
+ "$value": "320px"
917
+ },
918
+ "nodeErrorFrameBorderWidth": {
919
+ "$type": "dimension",
920
+ "$value": "2px"
921
+ },
922
+ "nodeErrorFrameRadius": {
923
+ "$type": "dimension",
924
+ "$value": "calc(12px * var(--sn-theme-radius-scale))"
925
+ },
926
+ "tabsCornerSize": {
927
+ "$type": "dimension",
928
+ "$value": "12px"
929
+ },
930
+ "tabsCornerCut": {
931
+ "$type": "dimension",
932
+ "$value": "11.5px"
933
+ },
934
+ "treeToggleWidth": {
935
+ "$type": "dimension",
936
+ "$value": "18px"
937
+ },
938
+ "treeIconWidth": {
939
+ "$type": "dimension",
940
+ "$value": "18px"
941
+ },
942
+ "composerSendSize": {
943
+ "$type": "dimension",
944
+ "$value": "32px"
945
+ },
946
+ "composerSendIconSize": {
947
+ "$type": "dimension",
948
+ "$value": "18px"
949
+ },
950
+ "composerCollapsedControlWidth": {
951
+ "$type": "dimension",
952
+ "$value": "10px"
953
+ },
954
+ "composerCollapsedControlPadding": {
955
+ "$type": "dimension",
956
+ "$value": "10px"
957
+ },
958
+ "sidebarWidth": {
959
+ "$type": "dimension",
960
+ "$value": "220px"
961
+ },
962
+ "sidebarCollapsedWidth": {
963
+ "$type": "dimension",
964
+ "$value": "48px"
965
+ },
966
+ "sidebarResizeWidth": {
967
+ "$type": "dimension",
968
+ "$value": "5px"
969
+ },
970
+ "sidebarResizeOffset": {
971
+ "$type": "dimension",
972
+ "$value": "2px"
973
+ },
974
+ "outputPreviewGap": {
975
+ "$type": "dimension",
976
+ "$value": "8px"
977
+ },
978
+ "outputPreviewPadding": {
979
+ "$type": "dimension",
980
+ "$value": "10px"
981
+ },
982
+ "outputPreviewRadius": {
983
+ "$type": "dimension",
984
+ "$value": "calc(6px * var(--sn-theme-radius-scale))"
985
+ },
986
+ "outputPreviewCanvasRadius": {
987
+ "$type": "dimension",
988
+ "$value": "calc(5px * var(--sn-theme-radius-scale))"
989
+ },
990
+ "outputPreviewItemRadius": {
991
+ "$type": "dimension",
992
+ "$value": "calc(5px * var(--sn-theme-radius-scale))"
993
+ },
994
+ "chatLiveIconSize": {
995
+ "$type": "dimension",
996
+ "$value": "14px"
997
+ },
998
+ "treePanelTitleGap": {
999
+ "$type": "dimension",
1000
+ "$value": "5px"
1001
+ },
1002
+ "treePanelTitlePadding": {
1003
+ "$type": "dimension",
1004
+ "$value": "6px 8px"
1005
+ },
1006
+ "treePanelTitleSize": {
1007
+ "$type": "dimension",
1008
+ "$value": "11px"
1009
+ },
1010
+ "treePanelIconSize": {
1011
+ "$type": "dimension",
1012
+ "$value": "14px"
1013
+ },
1014
+ "treePanelInputPadding": {
1015
+ "$type": "dimension",
1016
+ "$value": "4px 8px"
1017
+ },
1018
+ "treePanelInputRadius": {
1019
+ "$type": "dimension",
1020
+ "$value": "calc(4px * var(--sn-theme-radius-scale))"
1021
+ },
1022
+ "treePanelInputSize": {
1023
+ "$type": "dimension",
1024
+ "$value": "11px"
1025
+ },
1026
+ "treePanelCollapsePadding": {
1027
+ "$type": "dimension",
1028
+ "$value": "0 6px"
1029
+ },
1030
+ "treePanelContentPadding": {
1031
+ "$type": "dimension",
1032
+ "$value": "4px"
1033
+ },
1034
+ "treePanelPlaceholderPadding": {
1035
+ "$type": "dimension",
1036
+ "$value": "8px"
1037
+ },
1038
+ "treePanelPlaceholderSize": {
1039
+ "$type": "dimension",
1040
+ "$value": "12px"
1041
+ },
1042
+ "listItemIconSize": {
1043
+ "$type": "dimension",
1044
+ "$value": "18px"
1045
+ },
1046
+ "listItemIconFontSize": {
1047
+ "$type": "dimension",
1048
+ "$value": "16px"
1049
+ },
1050
+ "listItemLabelWeight": {
1051
+ "$type": "number",
1052
+ "$value": "500"
1053
+ },
1054
+ "listItemMetaMaxWidth": {
1055
+ "$type": "dimension",
1056
+ "$value": "38%"
1057
+ },
1058
+ "listDetailMinHeight": {
1059
+ "$type": "dimension",
1060
+ "$value": "0"
1061
+ },
1062
+ "listDetailHeight": {
1063
+ "$type": "dimension",
1064
+ "$value": "100%"
1065
+ },
1066
+ "listDetailHeaderGap": {
1067
+ "$type": "dimension",
1068
+ "$value": "8px"
1069
+ },
1070
+ "listDetailHeaderMinHeight": {
1071
+ "$type": "dimension",
1072
+ "$value": "42px"
1073
+ },
1074
+ "listDetailIconSize": {
1075
+ "$type": "dimension",
1076
+ "$value": "18px"
1077
+ },
1078
+ "listDetailListPadding": {
1079
+ "$type": "dimension",
1080
+ "$value": "8px"
1081
+ },
1082
+ "listDetailEmptyPadding": {
1083
+ "$type": "dimension",
1084
+ "$value": "12px"
1085
+ },
1086
+ "listDetailTitleWeight": {
1087
+ "$type": "number",
1088
+ "$value": "600"
1089
+ },
1090
+ "listDetailTitleTransform": {
1091
+ "$type": "string",
1092
+ "$value": "uppercase"
1093
+ },
1094
+ "listDetailDescriptionSize": {
1095
+ "$type": "dimension",
1096
+ "$value": "11px"
1097
+ },
1098
+ "sourceEditorTabSize": {
1099
+ "$type": "number",
1100
+ "$value": "2"
1101
+ }
1102
+ },
1103
+ "typography": {
1104
+ "fontUi": {
1105
+ "$type": "fontFamily",
1106
+ "$value": "var(--sn-font)"
1107
+ },
1108
+ "fontMono": {
1109
+ "$type": "fontFamily",
1110
+ "$value": "'JetBrains Mono', 'Fira Code', monospace"
1111
+ },
1112
+ "iconFont": {
1113
+ "$type": "fontFamily",
1114
+ "$value": "'Material Symbols Outlined'"
1115
+ },
1116
+ "treeLabelSize": {
1117
+ "$type": "dimension",
1118
+ "$value": "12px"
1119
+ },
1120
+ "treeBadgeSize": {
1121
+ "$type": "dimension",
1122
+ "$value": "10px"
1123
+ },
1124
+ "listItemLabelSize": {
1125
+ "$type": "dimension",
1126
+ "$value": "12px"
1127
+ },
1128
+ "listItemDescriptionSize": {
1129
+ "$type": "dimension",
1130
+ "$value": "11px"
1131
+ },
1132
+ "listItemMetaSize": {
1133
+ "$type": "dimension",
1134
+ "$value": "10px"
1135
+ }
1136
+ },
1137
+ "alias": {
1138
+ "layoutGapBackground": {
1139
+ "$type": "color",
1140
+ "$value": "var(--sn-layout-gap-bg)"
1141
+ },
1142
+ "layoutBorder": {
1143
+ "$type": "color",
1144
+ "$value": "var(--sn-layout-border)"
1145
+ },
1146
+ "treeRowSelectedBackground": {
1147
+ "$type": "color",
1148
+ "$value": "var(--sn-accent-bg-subtle)"
1149
+ },
1150
+ "treeRowSelectedBorder": {
1151
+ "$type": "color",
1152
+ "$value": "transparent"
1153
+ },
1154
+ "listItemActiveBackground": {
1155
+ "$type": "color",
1156
+ "$value": "var(--sn-accent-bg-subtle)"
1157
+ },
1158
+ "listDetailBackground": {
1159
+ "$type": "color",
1160
+ "$value": "var(--sn-panel-bg)"
1161
+ },
1162
+ "listDetailBorder": {
1163
+ "$type": "color",
1164
+ "$value": "var(--sn-node-border)"
1165
+ },
1166
+ "listDetailRadius": {
1167
+ "$type": "dimension",
1168
+ "$value": "var(--sn-card-radius)"
1169
+ },
1170
+ "listDetailSidebarWidth": {
1171
+ "$type": "dimension",
1172
+ "$value": "minmax(220px, 30%)"
1173
+ },
1174
+ "listDetailSidebarBackground": {
1175
+ "$type": "color",
1176
+ "$value": "var(--sn-node-bg)"
1177
+ },
1178
+ "listDetailMainBackground": {
1179
+ "$type": "color",
1180
+ "$value": "transparent"
1181
+ },
1182
+ "listDetailHeaderBackground": {
1183
+ "$type": "color",
1184
+ "$value": "transparent"
1185
+ },
1186
+ "listDetailHeaderPadding": {
1187
+ "$type": "dimension",
1188
+ "$value": "10px 12px"
1189
+ },
1190
+ "listDetailMainPadding": {
1191
+ "$type": "dimension",
1192
+ "$value": "12px"
1193
+ },
1194
+ "listDetailTitleSize": {
1195
+ "$type": "dimension",
1196
+ "$value": "12px"
1197
+ },
1198
+ "listDetailTitleColor": {
1199
+ "$type": "color",
1200
+ "$value": "var(--sn-text)"
1201
+ },
1202
+ "composerBackground": {
1203
+ "$type": "color",
1204
+ "$value": "var(--sn-node-bg)"
1205
+ },
1206
+ "composerActionBackground": {
1207
+ "$type": "color",
1208
+ "$value": "var(--sn-node-hover)"
1209
+ },
1210
+ "tabsBackground": {
1211
+ "$type": "color",
1212
+ "$value": "transparent"
1213
+ },
1214
+ "tabsActiveBackground": {
1215
+ "$type": "color",
1216
+ "$value": "var(--sn-node-bg)"
1217
+ },
1218
+ "tabsAccent": {
1219
+ "$type": "color",
1220
+ "$value": "var(--sn-node-selected)"
1221
+ },
1222
+ "sourceBackground": {
1223
+ "$type": "color",
1224
+ "$value": "var(--sn-bg)"
1225
+ },
1226
+ "sourceHeaderBackground": {
1227
+ "$type": "color",
1228
+ "$value": "var(--sn-node-header-bg)"
1229
+ },
1230
+ "sourceEditorBackground": {
1231
+ "$type": "color",
1232
+ "$value": "var(--sn-bg)"
1233
+ },
1234
+ "loadingBackground": {
1235
+ "$type": "color",
1236
+ "$value": "var(--sn-bg)"
1237
+ },
1238
+ "loadingLabelColor": {
1239
+ "$type": "color",
1240
+ "$value": "var(--sn-text-dim)"
1241
+ },
1242
+ "loadingPhaseColor": {
1243
+ "$type": "color",
1244
+ "$value": "var(--sn-node-selected)"
1245
+ },
1246
+ "loadingTrackBg": {
1247
+ "$type": "color",
1248
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.08)"
1249
+ },
1250
+ "loadingBarBg": {
1251
+ "$type": "color",
1252
+ "$value": "var(--sn-node-selected)"
1253
+ },
1254
+ "loadingBarShadow": {
1255
+ "$type": "shadow",
1256
+ "$value": "0 0 8px color-mix(in srgb, var(--sn-node-selected) 45%, transparent)"
1257
+ },
1258
+ "loadingSubColor": {
1259
+ "$type": "color",
1260
+ "$value": "var(--sn-text-dim)"
1261
+ },
1262
+ "categoryDirectory": {
1263
+ "$type": "color",
1264
+ "$value": "hsl(var(--sn-hue-warning) var(--sn-sat-vivid) 60%)"
1265
+ },
1266
+ "categoryFile": {
1267
+ "$type": "color",
1268
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) 66%)"
1269
+ },
1270
+ "categoryFunction": {
1271
+ "$type": "color",
1272
+ "$value": "var(--sn-success-color)"
1273
+ },
1274
+ "categoryClass": {
1275
+ "$type": "color",
1276
+ "$value": "hsl(var(--sn-hue-data) var(--sn-sat-vivid) 72%)"
1277
+ },
1278
+ "categoryModule": {
1279
+ "$type": "color",
1280
+ "$value": "hsl(var(--sn-hue-danger) var(--sn-sat-vivid) 70%)"
1281
+ },
1282
+ "typeDefault": {
1283
+ "$type": "color",
1284
+ "$value": "var(--sn-node-category-accent)"
1285
+ },
1286
+ "typeProfile": {
1287
+ "$type": "color",
1288
+ "$value": "hsl(var(--sn-hue-data) var(--sn-sat-vivid) 58%)"
1289
+ },
1290
+ "typeProfileInfo": {
1291
+ "$type": "color",
1292
+ "$value": "var(--sn-success-color)"
1293
+ },
1294
+ "typePortal": {
1295
+ "$type": "color",
1296
+ "$value": "var(--sn-cat-control)"
1297
+ },
1298
+ "typeProject": {
1299
+ "$type": "color",
1300
+ "$value": "hsl(24 var(--sn-sat-vivid) 62%)"
1301
+ },
1302
+ "accentWarning": {
1303
+ "$type": "color",
1304
+ "$value": "var(--sn-warning-color)"
1305
+ },
1306
+ "statusOkBg": {
1307
+ "$type": "color",
1308
+ "$value": "{color.statusOkBg}"
1309
+ },
1310
+ "statusErrorBg": {
1311
+ "$type": "color",
1312
+ "$value": "{color.statusErrorBg}"
1313
+ },
1314
+ "messageEventBg": {
1315
+ "$type": "color",
1316
+ "$value": "{color.messageEventBg}"
1317
+ }
1318
+ },
1319
+ "provider": {
1320
+ "rndPro": {
1321
+ "color": {
1322
+ "$type": "color",
1323
+ "$value": "var(--sn-cat-data)"
1324
+ },
1325
+ "background": {
1326
+ "$type": "color",
1327
+ "$value": "color-mix(in srgb, var(--sn-provider-rnd-pro-color) 20%, transparent)"
1328
+ }
1329
+ },
1330
+ "official": {
1331
+ "color": {
1332
+ "$type": "color",
1333
+ "$value": "var(--sn-node-selected)"
1334
+ },
1335
+ "background": {
1336
+ "$type": "color",
1337
+ "$value": "color-mix(in srgb, var(--sn-provider-official-color) 20%, transparent)"
1338
+ }
1339
+ },
1340
+ "google": {
1341
+ "color": {
1342
+ "$type": "color",
1343
+ "$value": "var(--sn-success-color)"
1344
+ },
1345
+ "background": {
1346
+ "$type": "color",
1347
+ "$value": "color-mix(in srgb, var(--sn-provider-google-color) 20%, transparent)"
1348
+ }
1349
+ },
1350
+ "community": {
1351
+ "color": {
1352
+ "$type": "color",
1353
+ "$value": "var(--sn-warning-color)"
1354
+ },
1355
+ "background": {
1356
+ "$type": "color",
1357
+ "$value": "color-mix(in srgb, var(--sn-provider-community-color) 20%, transparent)"
1358
+ }
1359
+ },
1360
+ "default": {
1361
+ "color": {
1362
+ "$type": "color",
1363
+ "$value": "var(--sn-text-dim)"
1364
+ },
1365
+ "background": {
1366
+ "$type": "color",
1367
+ "$value": "var(--sn-node-hover)"
1368
+ }
1369
+ }
1370
+ },
1371
+ "syntax": {
1372
+ "keyword": {
1373
+ "$type": "color",
1374
+ "$value": "hsl(var(--sn-hue-danger) var(--sn-sat-vivid) 82%)"
1375
+ },
1376
+ "string": {
1377
+ "$type": "color",
1378
+ "$value": "hsl(var(--sn-hue-warning) var(--sn-sat-vivid) 65%)"
1379
+ },
1380
+ "comment": {
1381
+ "$type": "color",
1382
+ "$value": "var(--sn-text-dim)"
1383
+ },
1384
+ "function": {
1385
+ "$type": "color",
1386
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) 84%)"
1387
+ },
1388
+ "number": {
1389
+ "$type": "color",
1390
+ "$value": "var(--sn-syntax-string)"
1391
+ },
1392
+ "builtin": {
1393
+ "$type": "color",
1394
+ "$value": "var(--sn-syntax-function)"
1395
+ },
1396
+ "property": {
1397
+ "$type": "color",
1398
+ "$value": "hsl(var(--sn-hue-data) var(--sn-sat-vivid) 78%)"
1399
+ },
1400
+ "literal": {
1401
+ "$type": "color",
1402
+ "$value": "var(--sn-syntax-keyword)"
1403
+ },
1404
+ "doc": {
1405
+ "$type": "color",
1406
+ "$value": "hsl(var(--sn-hue-success) 22% 56%)"
1407
+ },
1408
+ "docTag": {
1409
+ "$type": "color",
1410
+ "$value": "hsl(var(--sn-hue-success) 50% 70%)"
1411
+ },
1412
+ "docType": {
1413
+ "$type": "color",
1414
+ "$value": "hsl(var(--sn-hue-accent) 72% 72%)"
1415
+ },
1416
+ "template": {
1417
+ "$type": "color",
1418
+ "$value": "hsl(var(--sn-hue-warning) 44% 64%)"
1419
+ },
1420
+ "templateTag": {
1421
+ "$type": "color",
1422
+ "$value": "hsl(var(--sn-hue-accent) 48% 58%)"
1423
+ },
1424
+ "templateAttr": {
1425
+ "$type": "color",
1426
+ "$value": "hsl(var(--sn-hue-accent) var(--sn-sat-vivid) 80%)"
1427
+ },
1428
+ "templateBracket": {
1429
+ "$type": "color",
1430
+ "$value": "var(--sn-text-dim)"
1431
+ },
1432
+ "templateInterpolation": {
1433
+ "$type": "color",
1434
+ "$value": "hsl(var(--sn-hue-warning) 50% 76%)"
1435
+ },
1436
+ "templateSelector": {
1437
+ "$type": "color",
1438
+ "$value": "hsl(var(--sn-hue-warning) 56% 68%)"
1439
+ },
1440
+ "templateProperty": {
1441
+ "$type": "color",
1442
+ "$value": "var(--sn-syntax-template-attr)"
1443
+ },
1444
+ "templateValue": {
1445
+ "$type": "color",
1446
+ "$value": "var(--sn-syntax-template)"
1447
+ }
1448
+ },
1449
+ "diagnostic": {
1450
+ "errorBackground": {
1451
+ "$type": "color",
1452
+ "$value": "color-mix(in srgb, var(--sn-danger-color) 7%, transparent)"
1453
+ },
1454
+ "errorBorder": {
1455
+ "$type": "color",
1456
+ "$value": "color-mix(in srgb, var(--sn-danger-color) 55%, transparent)"
1457
+ },
1458
+ "warningBackground": {
1459
+ "$type": "color",
1460
+ "$value": "color-mix(in srgb, var(--sn-warning-color) 5%, transparent)"
1461
+ },
1462
+ "warningBorder": {
1463
+ "$type": "color",
1464
+ "$value": "color-mix(in srgb, var(--sn-warning-color) 45%, transparent)"
1465
+ }
1466
+ },
1467
+ "radius": {
1468
+ "node": {
1469
+ "$type": "dimension",
1470
+ "$value": "8px"
1471
+ },
1472
+ "control": {
1473
+ "$type": "dimension",
1474
+ "$value": "4px"
1475
+ }
1476
+ },
1477
+ "effect": {
1478
+ "hoverTransition": {
1479
+ "$type": "transition",
1480
+ "$value": "background-color calc(120ms * var(--sn-theme-motion-scale)) ease, border-color calc(120ms * var(--sn-theme-motion-scale)) ease"
1481
+ },
1482
+ "focusRing": {
1483
+ "$type": "shadow",
1484
+ "$value": "0 0 0 2px hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.35)"
1485
+ },
1486
+ "dragShadow": {
1487
+ "$type": "shadow",
1488
+ "$value": "0 14px calc(32px * var(--sn-theme-elevation-scale)) hsl(var(--sn-hue-base) var(--sn-sat-muted) 0% / 0.35)"
1489
+ },
1490
+ "loadingPulse": {
1491
+ "$type": "gradient",
1492
+ "$value": "linear-gradient(90deg, transparent, hsl(var(--sn-hue-accent) var(--sn-sat-vivid) var(--sn-lit-accent) / 0.6), transparent)"
1493
+ },
1494
+ "cellBackground": {
1495
+ "$type": "color",
1496
+ "$value": "var(--sn-bg)"
1497
+ },
1498
+ "cellDot": {
1499
+ "$type": "color",
1500
+ "$value": "color-mix(in srgb, var(--sn-text-dim) 55%, var(--sn-bg))"
1501
+ },
1502
+ "cellBaseAlpha": {
1503
+ "$type": "number",
1504
+ "$value": "0.06"
1505
+ },
1506
+ "cellAlphaSpan": {
1507
+ "$type": "number",
1508
+ "$value": "0.18"
1509
+ },
1510
+ "cellGlare": {
1511
+ "$type": "color",
1512
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-text) / 0.02)"
1513
+ },
1514
+ "cellVignetteMid": {
1515
+ "$type": "color",
1516
+ "$value": "hsl(var(--sn-hue-base) var(--sn-sat-muted) var(--sn-lit-bg) / 0.7)"
1517
+ },
1518
+ "cellVignetteEdge": {
1519
+ "$type": "color",
1520
+ "$value": "var(--sn-bg)"
1521
+ },
1522
+ "cellNoise": {
1523
+ "$type": "asset",
1524
+ "$value": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E\")"
1525
+ },
1526
+ "shadowSmall": {
1527
+ "$type": "shadow",
1528
+ "$value": "0 1px calc(4px * var(--sn-theme-elevation-scale)) hsl(var(--sn-hue-base) var(--sn-sat-muted) 0% / 0.22)"
1529
+ },
1530
+ "shadowMedium": {
1531
+ "$type": "shadow",
1532
+ "$value": "0 2px calc(8px * var(--sn-theme-elevation-scale)) hsl(var(--sn-hue-base) var(--sn-sat-muted) 0% / 0.28)"
1533
+ },
1534
+ "shadowLarge": {
1535
+ "$type": "shadow",
1536
+ "$value": "0 6px calc(18px * var(--sn-theme-elevation-scale)) hsl(var(--sn-hue-base) var(--sn-sat-muted) 0% / 0.28)"
1537
+ },
1538
+ "shadowExtraLarge": {
1539
+ "$type": "shadow",
1540
+ "$value": "0 -8px calc(28px * var(--sn-theme-elevation-scale)) hsl(var(--sn-hue-base) var(--sn-sat-muted) 0% / 0.32)"
1541
+ }
1542
+ }
1543
+ }