ultravisor 1.0.3 → 1.0.8

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 (248) hide show
  1. package/.claude/launch.json +11 -0
  2. package/.claude/ultravisor-dev-config.json +3 -0
  3. package/card-audit.json +1545 -0
  4. package/docs/_sidebar.md +17 -0
  5. package/docs/css/docuserve.css +73 -0
  6. package/docs/features/beacon-authentication.md +209 -0
  7. package/docs/features/beacon-providers.md +1299 -0
  8. package/docs/features/beacons.md +530 -0
  9. package/docs/features/capabilities.md +193 -0
  10. package/docs/features/llm-model-setup.md +505 -0
  11. package/docs/features/llm.md +262 -0
  12. package/docs/features/tasks-content-system.md +110 -0
  13. package/docs/features/tasks-data-transform.md +233 -0
  14. package/docs/features/tasks-extension.md +36 -0
  15. package/docs/features/tasks-file-system.md +203 -0
  16. package/docs/features/tasks-flow-control.md +125 -0
  17. package/docs/features/tasks-http-client.md +119 -0
  18. package/docs/features/tasks-llm.md +118 -0
  19. package/docs/features/tasks-meadow-api.md +163 -0
  20. package/docs/features/tasks-user-interaction.md +49 -0
  21. package/docs/features/tasks.md +14 -0
  22. package/docs/index.html +1 -1
  23. package/docs/retold-catalog.json +1 -1
  24. package/docs/retold-keyword-index.json +17374 -5
  25. package/operation-library/api-data-pipeline.json +143 -0
  26. package/operation-library/beacon-remote-command.json +72 -0
  27. package/operation-library/conditional-file-backup.json +143 -0
  28. package/operation-library/config-processor.json +136 -0
  29. package/operation-library/csv-data-analysis.json +228 -0
  30. package/operation-library/csv-to-json.json +160 -0
  31. package/operation-library/directory-inventory.json +128 -0
  32. package/operation-library/expression-calculator.json +114 -0
  33. package/operation-library/file-search-replace.json +175 -0
  34. package/operation-library/git-status-report.json +368 -0
  35. package/operation-library/health-check-ping.json +329 -0
  36. package/operation-library/json-config-merge.json +313 -0
  37. package/operation-library/llm-embedding-tool-use.json +314 -0
  38. package/operation-library/llm-multi-turn-analysis.json +322 -0
  39. package/operation-library/llm-summarize.json +264 -0
  40. package/operation-library/log-line-counter.json +185 -0
  41. package/operation-library/meadow-crud-lifecycle.json +264 -0
  42. package/operation-library/npm-project-validator.json +193 -0
  43. package/operation-library/rest-api-orchestrator.json +218 -0
  44. package/operation-library/shell-system-info.json +137 -0
  45. package/operation-library/simple-echo.json +95 -0
  46. package/operation-library/template-processor.json +299 -0
  47. package/operation-library/text-sanitizer.json +176 -0
  48. package/package.json +12 -8
  49. package/source/Ultravisor.cjs +30 -3
  50. package/source/beacon/Ultravisor-Beacon-CLI.cjs +143 -0
  51. package/source/beacon/Ultravisor-Beacon-CapabilityProvider.cjs +129 -0
  52. package/source/beacon/Ultravisor-Beacon-Client.cjs +568 -0
  53. package/source/beacon/Ultravisor-Beacon-Executor.cjs +500 -0
  54. package/source/beacon/Ultravisor-Beacon-ProviderRegistry.cjs +330 -0
  55. package/source/beacon/providers/Ultravisor-Beacon-Provider-FileSystem.cjs +331 -0
  56. package/source/beacon/providers/Ultravisor-Beacon-Provider-LLM.cjs +966 -0
  57. package/source/beacon/providers/Ultravisor-Beacon-Provider-Shell.cjs +95 -0
  58. package/source/cli/Ultravisor-CLIProgram.cjs +44 -22
  59. package/source/cli/commands/Ultravisor-Command-SingleOperation.cjs +29 -18
  60. package/source/cli/commands/Ultravisor-Command-SingleTask.cjs +62 -19
  61. package/source/cli/commands/Ultravisor-Command-UpdateTask.cjs +27 -15
  62. package/source/config/Ultravisor-Default-Command-Configuration.cjs +12 -3
  63. package/source/services/Ultravisor-Beacon-Coordinator.cjs +966 -0
  64. package/source/services/Ultravisor-ExecutionEngine.cjs +1093 -0
  65. package/source/services/Ultravisor-ExecutionManifest.cjs +629 -0
  66. package/source/services/Ultravisor-Hypervisor-State.cjs +270 -97
  67. package/source/services/Ultravisor-Hypervisor.cjs +185 -75
  68. package/source/services/Ultravisor-Schedule-Persistence-Base.cjs +45 -0
  69. package/source/services/Ultravisor-StateManager.cjs +253 -0
  70. package/source/services/Ultravisor-TaskTypeRegistry.cjs +213 -0
  71. package/source/services/persistence/Ultravisor-Schedule-Persistence-JSONFile.cjs +140 -0
  72. package/source/services/tasks/Ultravisor-BuiltIn-TaskConfigs.cjs +19 -0
  73. package/source/services/tasks/Ultravisor-TaskHelper-BeaconDispatch.cjs +107 -0
  74. package/source/services/tasks/Ultravisor-TaskType-Base.cjs +125 -0
  75. package/source/services/tasks/content-system/Ultravisor-TaskConfigs-ContentSystem.cjs +90 -0
  76. package/source/services/tasks/content-system/definitions/content-create-folder.json +24 -0
  77. package/source/services/tasks/content-system/definitions/content-list-files.json +27 -0
  78. package/source/services/tasks/content-system/definitions/content-read-file.json +26 -0
  79. package/source/services/tasks/content-system/definitions/content-save-file.json +26 -0
  80. package/source/services/tasks/data-transform/Ultravisor-TaskConfigs-DataTransform.cjs +577 -0
  81. package/source/services/tasks/data-transform/Ultravisor-TaskType-ReplaceString.cjs +80 -0
  82. package/source/services/tasks/data-transform/Ultravisor-TaskType-SetValues.cjs +74 -0
  83. package/source/services/tasks/data-transform/Ultravisor-TaskType-StringAppender.cjs +90 -0
  84. package/source/services/tasks/data-transform/definitions/comprehension-intersect.json +24 -0
  85. package/source/services/tasks/data-transform/definitions/csv-transform.json +24 -0
  86. package/source/services/tasks/data-transform/definitions/expression-solver.json +20 -0
  87. package/source/services/tasks/data-transform/definitions/histogram.json +23 -0
  88. package/source/services/tasks/data-transform/definitions/parse-csv.json +27 -0
  89. package/source/services/tasks/data-transform/definitions/replace-string.json +27 -0
  90. package/source/services/tasks/data-transform/definitions/set-values.json +17 -0
  91. package/source/services/tasks/data-transform/definitions/string-appender.json +22 -0
  92. package/source/services/tasks/data-transform/definitions/template-string.json +20 -0
  93. package/source/services/tasks/extension/Ultravisor-TaskConfigs-Extension.cjs +87 -0
  94. package/source/services/tasks/extension/definitions/beacon-dispatch.json +32 -0
  95. package/source/services/tasks/file-system/Ultravisor-TaskConfigs-FileSystem.cjs +509 -0
  96. package/source/services/tasks/file-system/Ultravisor-TaskType-ReadFile.cjs +96 -0
  97. package/source/services/tasks/file-system/Ultravisor-TaskType-ReadFileBuffered.cjs +123 -0
  98. package/source/services/tasks/file-system/Ultravisor-TaskType-WriteFile.cjs +106 -0
  99. package/source/services/tasks/file-system/definitions/copy-file.json +27 -0
  100. package/source/services/tasks/file-system/definitions/list-files.json +27 -0
  101. package/source/services/tasks/file-system/definitions/read-file-buffered.json +31 -0
  102. package/source/services/tasks/file-system/definitions/read-file.json +26 -0
  103. package/source/services/tasks/file-system/definitions/read-json.json +23 -0
  104. package/source/services/tasks/file-system/definitions/write-file.json +29 -0
  105. package/source/services/tasks/file-system/definitions/write-json.json +30 -0
  106. package/source/services/tasks/flow-control/Ultravisor-TaskConfigs-FlowControl.cjs +353 -0
  107. package/source/services/tasks/flow-control/Ultravisor-TaskType-IfConditional.cjs +125 -0
  108. package/source/services/tasks/flow-control/Ultravisor-TaskType-LaunchOperation.cjs +186 -0
  109. package/source/services/tasks/flow-control/Ultravisor-TaskType-SplitExecute.cjs +164 -0
  110. package/source/services/tasks/flow-control/definitions/if-conditional.json +25 -0
  111. package/source/services/tasks/flow-control/definitions/launch-operation.json +27 -0
  112. package/source/services/tasks/flow-control/definitions/split-execute.json +32 -0
  113. package/source/services/tasks/http-client/Ultravisor-TaskConfigs-HttpClient.cjs +281 -0
  114. package/source/services/tasks/http-client/definitions/get-json.json +26 -0
  115. package/source/services/tasks/http-client/definitions/get-text.json +26 -0
  116. package/source/services/tasks/http-client/definitions/rest-request.json +32 -0
  117. package/source/services/tasks/http-client/definitions/send-json.json +28 -0
  118. package/source/services/tasks/llm/Ultravisor-TaskConfigs-LLM.cjs +605 -0
  119. package/source/services/tasks/llm/definitions/llm-chat-completion.json +46 -0
  120. package/source/services/tasks/llm/definitions/llm-embedding.json +31 -0
  121. package/source/services/tasks/llm/definitions/llm-tool-use.json +42 -0
  122. package/source/services/tasks/meadow-api/Ultravisor-TaskConfigs-MeadowApi.cjs +341 -0
  123. package/source/services/tasks/meadow-api/definitions/meadow-count.json +26 -0
  124. package/source/services/tasks/meadow-api/definitions/meadow-create.json +26 -0
  125. package/source/services/tasks/meadow-api/definitions/meadow-delete.json +23 -0
  126. package/source/services/tasks/meadow-api/definitions/meadow-read.json +26 -0
  127. package/source/services/tasks/meadow-api/definitions/meadow-reads.json +29 -0
  128. package/source/services/tasks/meadow-api/definitions/meadow-update.json +26 -0
  129. package/source/services/tasks/shell/Ultravisor-TaskConfigs-Shell.cjs +63 -0
  130. package/source/services/tasks/shell/definitions/command.json +29 -0
  131. package/source/services/tasks/user-interaction/Ultravisor-TaskConfigs-UserInteraction.cjs +64 -0
  132. package/source/services/tasks/user-interaction/Ultravisor-TaskType-ErrorMessage.cjs +55 -0
  133. package/source/services/tasks/user-interaction/Ultravisor-TaskType-ValueInput.cjs +47 -0
  134. package/source/services/tasks/user-interaction/definitions/error-message.json +18 -0
  135. package/source/services/tasks/user-interaction/definitions/value-input.json +23 -0
  136. package/source/web_server/Ultravisor-API-Server.cjs +849 -124
  137. package/test/Ultravisor_browser_tests.js +2226 -0
  138. package/test/Ultravisor_operation_library_tests.js +894 -0
  139. package/test/Ultravisor_tests.js +4946 -5044
  140. package/test/workflows/test-content-concatenate-all.json +339 -0
  141. package/test/workflows/test-content-full-pipeline.json +159 -0
  142. package/test/workflows/test-content-list-files.json +76 -0
  143. package/test/workflows/test-content-save-and-read.json +106 -0
  144. package/webinterface/css/ultravisor-themes.css +668 -0
  145. package/webinterface/css/ultravisor.css +37 -14
  146. package/webinterface/docs/card-help/beacon-dispatch.md +30 -0
  147. package/webinterface/docs/card-help/command.md +27 -0
  148. package/webinterface/docs/card-help/comprehension-intersect.md +24 -0
  149. package/webinterface/docs/card-help/content-create-folder.md +22 -0
  150. package/webinterface/docs/card-help/content-list-files.md +25 -0
  151. package/webinterface/docs/card-help/content-read-file.md +24 -0
  152. package/webinterface/docs/card-help/content-save-file.md +24 -0
  153. package/webinterface/docs/card-help/copy-file.md +25 -0
  154. package/webinterface/docs/card-help/csv-transform.md +24 -0
  155. package/webinterface/docs/card-help/end.md +11 -0
  156. package/webinterface/docs/card-help/error-message.md +16 -0
  157. package/webinterface/docs/card-help/expression-solver.md +21 -0
  158. package/webinterface/docs/card-help/get-json.md +24 -0
  159. package/webinterface/docs/card-help/get-text.md +24 -0
  160. package/webinterface/docs/card-help/histogram.md +23 -0
  161. package/webinterface/docs/card-help/if-conditional.md +23 -0
  162. package/webinterface/docs/card-help/launch-operation.md +25 -0
  163. package/webinterface/docs/card-help/list-files.md +25 -0
  164. package/webinterface/docs/card-help/llm-chat-completion.md +43 -0
  165. package/webinterface/docs/card-help/llm-embedding.md +24 -0
  166. package/webinterface/docs/card-help/llm-tool-use.md +39 -0
  167. package/webinterface/docs/card-help/meadow-count.md +24 -0
  168. package/webinterface/docs/card-help/meadow-create.md +24 -0
  169. package/webinterface/docs/card-help/meadow-delete.md +19 -0
  170. package/webinterface/docs/card-help/meadow-read.md +24 -0
  171. package/webinterface/docs/card-help/meadow-reads.md +27 -0
  172. package/webinterface/docs/card-help/meadow-update.md +24 -0
  173. package/webinterface/docs/card-help/parse-csv.md +27 -0
  174. package/webinterface/docs/card-help/read-file-buffered.md +29 -0
  175. package/webinterface/docs/card-help/read-file.md +24 -0
  176. package/webinterface/docs/card-help/read-json.md +21 -0
  177. package/webinterface/docs/card-help/replace-string.md +25 -0
  178. package/webinterface/docs/card-help/rest-request.md +30 -0
  179. package/webinterface/docs/card-help/send-json.md +26 -0
  180. package/webinterface/docs/card-help/set-values.md +16 -0
  181. package/webinterface/docs/card-help/split-execute.md +35 -0
  182. package/webinterface/docs/card-help/start.md +11 -0
  183. package/webinterface/docs/card-help/string-appender.md +22 -0
  184. package/webinterface/docs/card-help/template-string.md +21 -0
  185. package/webinterface/docs/card-help/value-input.md +24 -0
  186. package/webinterface/docs/card-help/write-file.md +27 -0
  187. package/webinterface/docs/card-help/write-json.md +28 -0
  188. package/webinterface/html/index.html +5 -0
  189. package/webinterface/package.json +13 -4
  190. package/webinterface/source/Pict-Application-Ultravisor.js +564 -70
  191. package/webinterface/source/Ultravisor-TimingUtils.js +99 -0
  192. package/webinterface/source/card-help-content.js +46 -0
  193. package/webinterface/source/cards/Ultravisor-BuiltIn-CardConfigs.js +174 -0
  194. package/webinterface/source/cards/Ultravisor-CardConfigGenerator.js +431 -0
  195. package/webinterface/source/data/ExampleFlow-CSVPipeline.js +231 -0
  196. package/webinterface/source/data/ExampleFlow-FileProcessor.js +315 -0
  197. package/webinterface/source/data/ExampleFlow-MeadowPipeline.js +328 -0
  198. package/webinterface/source/panels/Ultravisor-CardSettingsPanel.js +902 -0
  199. package/webinterface/source/providers/PictRouter-Ultravisor-Configuration.json +20 -8
  200. package/webinterface/source/views/PictView-Ultravisor-BeaconList.js +817 -0
  201. package/webinterface/source/views/PictView-Ultravisor-BottomBar.js +5 -5
  202. package/webinterface/source/views/PictView-Ultravisor-Dashboard.js +25 -25
  203. package/webinterface/source/views/PictView-Ultravisor-Documentation.js +856 -0
  204. package/webinterface/source/views/PictView-Ultravisor-FlowEditor.js +777 -0
  205. package/webinterface/source/views/PictView-Ultravisor-ManifestList.js +321 -58
  206. package/webinterface/source/views/PictView-Ultravisor-OperationEdit.js +36 -91
  207. package/webinterface/source/views/PictView-Ultravisor-OperationList.js +388 -16
  208. package/webinterface/source/views/PictView-Ultravisor-PendingInput.js +314 -0
  209. package/webinterface/source/views/PictView-Ultravisor-Schedule.js +521 -65
  210. package/webinterface/source/views/PictView-Ultravisor-TimingView.js +333 -71
  211. package/webinterface/source/views/PictView-Ultravisor-TopBar.js +257 -21
  212. package/webinterface/theme-sampler.html +645 -0
  213. package/debug/Harness.js +0 -6
  214. package/source/services/Ultravisor-Operation-Manifest.cjs +0 -160
  215. package/source/services/Ultravisor-Operation.cjs +0 -200
  216. package/source/services/Ultravisor-Task.cjs +0 -349
  217. package/source/services/events/Ultravisor-Hypervisor-Event-Solver.cjs +0 -11
  218. package/source/services/tasks/Ultravisor-Task-Base.cjs +0 -264
  219. package/source/services/tasks/Ultravisor-Task-CollectValues.cjs +0 -188
  220. package/source/services/tasks/Ultravisor-Task-Command.cjs +0 -65
  221. package/source/services/tasks/Ultravisor-Task-CommandEach.cjs +0 -190
  222. package/source/services/tasks/Ultravisor-Task-Conditional.cjs +0 -104
  223. package/source/services/tasks/Ultravisor-Task-DateWindow.cjs +0 -72
  224. package/source/services/tasks/Ultravisor-Task-GeneratePagedOperation.cjs +0 -336
  225. package/source/services/tasks/Ultravisor-Task-LaunchOperation.cjs +0 -143
  226. package/source/services/tasks/Ultravisor-Task-LaunchTask.cjs +0 -146
  227. package/source/services/tasks/Ultravisor-Task-LineMatch.cjs +0 -158
  228. package/source/services/tasks/Ultravisor-Task-Request.cjs +0 -56
  229. package/source/services/tasks/Ultravisor-Task-Solver.cjs +0 -89
  230. package/source/services/tasks/Ultravisor-Task-TemplateString.cjs +0 -93
  231. package/source/services/tasks/rest/Ultravisor-Task-GetBinary.cjs +0 -127
  232. package/source/services/tasks/rest/Ultravisor-Task-GetJSON.cjs +0 -119
  233. package/source/services/tasks/rest/Ultravisor-Task-GetText.cjs +0 -109
  234. package/source/services/tasks/rest/Ultravisor-Task-GetXML.cjs +0 -112
  235. package/source/services/tasks/rest/Ultravisor-Task-RestRequest.cjs +0 -499
  236. package/source/services/tasks/rest/Ultravisor-Task-SendJSON.cjs +0 -150
  237. package/source/services/tasks/stagingfiles/Ultravisor-Task-CopyFile.cjs +0 -110
  238. package/source/services/tasks/stagingfiles/Ultravisor-Task-ListFiles.cjs +0 -89
  239. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadBinary.cjs +0 -87
  240. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadJSON.cjs +0 -67
  241. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadText.cjs +0 -66
  242. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadXML.cjs +0 -69
  243. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteBinary.cjs +0 -95
  244. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteJSON.cjs +0 -96
  245. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteText.cjs +0 -99
  246. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteXML.cjs +0 -102
  247. package/webinterface/source/views/PictView-Ultravisor-TaskEdit.js +0 -220
  248. package/webinterface/source/views/PictView-Ultravisor-TaskList.js +0 -248
@@ -0,0 +1,668 @@
1
+ /* ══════════════════════════════════════════════════════════════
2
+ Ultravisor Theme Definitions
3
+ ══════════════════════════════════════════════════════════════
4
+ Default theme (Desert Dusk) is defined on :root.
5
+ Other themes override via body[data-theme="..."] selectors.
6
+ ══════════════════════════════════════════════════════════════ */
7
+
8
+ /* ── Desert Dusk (default) ── warm muted dark ──────────────── */
9
+ :root
10
+ {
11
+ /* Backgrounds */
12
+ --uv-bg-base: #1a1714;
13
+ --uv-bg-surface: #252018;
14
+ --uv-bg-elevated: #302818;
15
+ --uv-bg-input: #1a1714;
16
+ --uv-bg-code: #151210;
17
+
18
+ /* Borders */
19
+ --uv-border: #3a3028;
20
+ --uv-border-subtle: #302818;
21
+ --uv-border-focus: #c4956a;
22
+
23
+ /* Text */
24
+ --uv-text: #c8b8a0;
25
+ --uv-text-heading: #d8c8a8;
26
+ --uv-text-secondary: #907860;
27
+ --uv-text-tertiary: #706050;
28
+
29
+ /* Brand */
30
+ --uv-brand: #c4956a;
31
+ --uv-brand-hover: #d4a57a;
32
+
33
+ /* Links */
34
+ --uv-link: #4a9090;
35
+ --uv-link-hover: #5aacac;
36
+
37
+ /* Buttons */
38
+ --uv-btn-primary-bg: #4a9090;
39
+ --uv-btn-primary-text: #fff;
40
+ --uv-btn-danger-bg: #6a3040;
41
+ --uv-btn-danger-text: #ecc;
42
+ --uv-btn-secondary-bg: #3a3028;
43
+ --uv-btn-secondary-text: #c8b8a0;
44
+
45
+ /* Status */
46
+ --uv-success: #8a9a5a;
47
+ --uv-error: #b04050;
48
+ --uv-warning: #c0a050;
49
+ --uv-info: #4a9090;
50
+
51
+ /* Topbar */
52
+ --uv-topbar-bg: #252018;
53
+ --uv-topbar-text: #c8b8a0;
54
+ --uv-topbar-hover: #3a3028;
55
+
56
+ /* Scrollbar */
57
+ --uv-scrollbar-track: #252018;
58
+ --uv-scrollbar-thumb: #3a3028;
59
+ --uv-scrollbar-thumb-hover: #4a4038;
60
+
61
+ /* Shadow */
62
+ --uv-shadow: rgba(0, 0, 0, 0.3);
63
+ --uv-shadow-heavy: rgba(0, 0, 0, 0.5);
64
+
65
+ /* Table */
66
+ --uv-table-header-bg: #302818;
67
+ --uv-table-row-hover: #302818;
68
+ --uv-table-stripe: rgba(58, 48, 40, 0.3);
69
+
70
+ }
71
+
72
+ /* ── Desert Day ── light ───────────────────────────────────── */
73
+ body[data-theme="desert-day"]
74
+ {
75
+ --uv-bg-base: #faf6f0;
76
+ --uv-bg-surface: #f0e6d6;
77
+ --uv-bg-elevated: #e8ddd0;
78
+ --uv-bg-input: #fff;
79
+ --uv-bg-code: #f0e6d6;
80
+
81
+ --uv-border: #e0d0b8;
82
+ --uv-border-subtle: #e8ddd0;
83
+ --uv-border-focus: #c2703e;
84
+
85
+ --uv-text: #3d2b1f;
86
+ --uv-text-heading: #2e1e14;
87
+ --uv-text-secondary: #8a7560;
88
+ --uv-text-tertiary: #a09080;
89
+
90
+ --uv-brand: #5c3d2e;
91
+ --uv-brand-hover: #7a5040;
92
+
93
+ --uv-link: #3a8a8c;
94
+ --uv-link-hover: #2a7070;
95
+
96
+ --uv-btn-primary-bg: #3a8a8c;
97
+ --uv-btn-primary-text: #fff;
98
+ --uv-btn-danger-bg: #7a2e3a;
99
+ --uv-btn-danger-text: #fff;
100
+ --uv-btn-secondary-bg: #e8ddd0;
101
+ --uv-btn-secondary-text: #5c3d2e;
102
+
103
+ --uv-success: #5a7a30;
104
+ --uv-error: #a03040;
105
+ --uv-warning: #b08020;
106
+ --uv-info: #3a8a8c;
107
+
108
+ --uv-topbar-bg: #5c3d2e;
109
+ --uv-topbar-text: #e8ddd0;
110
+ --uv-topbar-hover: #7a5040;
111
+
112
+ --uv-scrollbar-track: #f0e6d6;
113
+ --uv-scrollbar-thumb: #d0c0a8;
114
+ --uv-scrollbar-thumb-hover: #c0b098;
115
+
116
+ --uv-shadow: rgba(92, 61, 46, 0.1);
117
+ --uv-shadow-heavy: rgba(92, 61, 46, 0.2);
118
+
119
+ --uv-table-header-bg: #e8ddd0;
120
+ --uv-table-row-hover: #f0e6d6;
121
+ --uv-table-stripe: rgba(224, 208, 184, 0.3);
122
+ }
123
+
124
+ /* ── Desert Sunset ── dark ─────────────────────────────────── */
125
+ body[data-theme="desert-sunset"]
126
+ {
127
+ --uv-bg-base: #1e1610;
128
+ --uv-bg-surface: #2a2018;
129
+ --uv-bg-elevated: #342818;
130
+ --uv-bg-input: #1e1610;
131
+ --uv-bg-code: #18120e;
132
+
133
+ --uv-border: #3a2e22;
134
+ --uv-border-subtle: #342818;
135
+ --uv-border-focus: #e8943a;
136
+
137
+ --uv-text: #d4c4aa;
138
+ --uv-text-heading: #e0d0b8;
139
+ --uv-text-secondary: #8a7560;
140
+ --uv-text-tertiary: #6a5840;
141
+
142
+ --uv-brand: #e8943a;
143
+ --uv-brand-hover: #f0a44a;
144
+
145
+ --uv-link: #2a8a8a;
146
+ --uv-link-hover: #3a9a9a;
147
+
148
+ --uv-btn-primary-bg: #2a8a8a;
149
+ --uv-btn-primary-text: #fff;
150
+ --uv-btn-danger-bg: #8b2442;
151
+ --uv-btn-danger-text: #fcc;
152
+ --uv-btn-secondary-bg: #3a2e22;
153
+ --uv-btn-secondary-text: #d4c4aa;
154
+
155
+ --uv-success: #6a9a3a;
156
+ --uv-error: #c44e2a;
157
+ --uv-warning: #d4a46a;
158
+ --uv-info: #2a8a8a;
159
+
160
+ --uv-topbar-bg: #2a1e15;
161
+ --uv-topbar-text: #d4c4aa;
162
+ --uv-topbar-hover: #3a2e22;
163
+
164
+ --uv-scrollbar-track: #2a2018;
165
+ --uv-scrollbar-thumb: #3a2e22;
166
+ --uv-scrollbar-thumb-hover: #4a3e32;
167
+
168
+ --uv-shadow: rgba(0, 0, 0, 0.3);
169
+ --uv-shadow-heavy: rgba(0, 0, 0, 0.5);
170
+
171
+ --uv-table-header-bg: #342818;
172
+ --uv-table-row-hover: #342818;
173
+ --uv-table-stripe: rgba(58, 46, 34, 0.3);
174
+ }
175
+
176
+ /* ── Professional Light ────────────────────────────────────── */
177
+ body[data-theme="professional-light"]
178
+ {
179
+ --uv-bg-base: #f5f6f8;
180
+ --uv-bg-surface: #fff;
181
+ --uv-bg-elevated: #e4e7ec;
182
+ --uv-bg-input: #fff;
183
+ --uv-bg-code: #f0f1f4;
184
+
185
+ --uv-border: #e2e5ea;
186
+ --uv-border-subtle: #eceef2;
187
+ --uv-border-focus: #3b82f6;
188
+
189
+ --uv-text: #2d3748;
190
+ --uv-text-heading: #1a202c;
191
+ --uv-text-secondary: #6b7280;
192
+ --uv-text-tertiary: #9ca3af;
193
+
194
+ --uv-brand: #3b82f6;
195
+ --uv-brand-hover: #2563eb;
196
+
197
+ --uv-link: #3b82f6;
198
+ --uv-link-hover: #2563eb;
199
+
200
+ --uv-btn-primary-bg: #3b82f6;
201
+ --uv-btn-primary-text: #fff;
202
+ --uv-btn-danger-bg: #ef4444;
203
+ --uv-btn-danger-text: #fff;
204
+ --uv-btn-secondary-bg: #e5e7eb;
205
+ --uv-btn-secondary-text: #374151;
206
+
207
+ --uv-success: #10b981;
208
+ --uv-error: #ef4444;
209
+ --uv-warning: #f59e0b;
210
+ --uv-info: #3b82f6;
211
+
212
+ --uv-topbar-bg: #fff;
213
+ --uv-topbar-text: #6b7280;
214
+ --uv-topbar-hover: #f0f1f4;
215
+
216
+ --uv-scrollbar-track: #f0f1f4;
217
+ --uv-scrollbar-thumb: #d1d5db;
218
+ --uv-scrollbar-thumb-hover: #b0b5bd;
219
+
220
+ --uv-shadow: rgba(0, 0, 0, 0.06);
221
+ --uv-shadow-heavy: rgba(0, 0, 0, 0.12);
222
+
223
+ --uv-table-header-bg: #f5f6f8;
224
+ --uv-table-row-hover: #f9fafb;
225
+ --uv-table-stripe: rgba(226, 229, 234, 0.3);
226
+ }
227
+
228
+ /* ── Professional Dark ─────────────────────────────────────── */
229
+ body[data-theme="professional-dark"]
230
+ {
231
+ --uv-bg-base: #111318;
232
+ --uv-bg-surface: #1a1d24;
233
+ --uv-bg-elevated: #22252e;
234
+ --uv-bg-input: #111318;
235
+ --uv-bg-code: #0d0f14;
236
+
237
+ --uv-border: #282c34;
238
+ --uv-border-subtle: #22252e;
239
+ --uv-border-focus: #60a5fa;
240
+
241
+ --uv-text: #c8cdd5;
242
+ --uv-text-heading: #e0e4ea;
243
+ --uv-text-secondary: #8b92a0;
244
+ --uv-text-tertiary: #5a6070;
245
+
246
+ --uv-brand: #60a5fa;
247
+ --uv-brand-hover: #93c5fd;
248
+
249
+ --uv-link: #60a5fa;
250
+ --uv-link-hover: #93c5fd;
251
+
252
+ --uv-btn-primary-bg: #3b82f6;
253
+ --uv-btn-primary-text: #fff;
254
+ --uv-btn-danger-bg: #dc2626;
255
+ --uv-btn-danger-text: #fecaca;
256
+ --uv-btn-secondary-bg: #282c34;
257
+ --uv-btn-secondary-text: #c8cdd5;
258
+
259
+ --uv-success: #34d399;
260
+ --uv-error: #f87171;
261
+ --uv-warning: #fbbf24;
262
+ --uv-info: #60a5fa;
263
+
264
+ --uv-topbar-bg: #1a1d24;
265
+ --uv-topbar-text: #8b92a0;
266
+ --uv-topbar-hover: #282c34;
267
+
268
+ --uv-scrollbar-track: #1a1d24;
269
+ --uv-scrollbar-thumb: #282c34;
270
+ --uv-scrollbar-thumb-hover: #3a3f4a;
271
+
272
+ --uv-shadow: rgba(0, 0, 0, 0.3);
273
+ --uv-shadow-heavy: rgba(0, 0, 0, 0.5);
274
+
275
+ --uv-table-header-bg: #22252e;
276
+ --uv-table-row-hover: #22252e;
277
+ --uv-table-stripe: rgba(40, 44, 52, 0.3);
278
+ }
279
+
280
+ /* ── Desert Canyon ── vibrant dark ─────────────────────────── */
281
+ body[data-theme="desert-canyon"]
282
+ {
283
+ --uv-bg-base: #18120e;
284
+ --uv-bg-surface: #221a14;
285
+ --uv-bg-elevated: #2e2018;
286
+ --uv-bg-input: #18120e;
287
+ --uv-bg-code: #120e0a;
288
+
289
+ --uv-border: #3a2a1e;
290
+ --uv-border-subtle: #2e2018;
291
+ --uv-border-focus: #e8943a;
292
+
293
+ --uv-text: #d8c8b0;
294
+ --uv-text-heading: #e8d8c0;
295
+ --uv-text-secondary: #a09080;
296
+ --uv-text-tertiary: #685040;
297
+
298
+ --uv-brand: #e8943a;
299
+ --uv-brand-hover: #f0a44a;
300
+
301
+ --uv-link: #18a0a0;
302
+ --uv-link-hover: #30b0b0;
303
+
304
+ --uv-btn-primary-bg: #18a0a0;
305
+ --uv-btn-primary-text: #18120e;
306
+ --uv-btn-danger-bg: #e05830;
307
+ --uv-btn-danger-text: #fff;
308
+ --uv-btn-secondary-bg: #3a2a1e;
309
+ --uv-btn-secondary-text: #d8c8b0;
310
+
311
+ --uv-success: #18a0a0;
312
+ --uv-error: #e05830;
313
+ --uv-warning: #e0c870;
314
+ --uv-info: #18a0a0;
315
+
316
+ --uv-topbar-bg: #221a14;
317
+ --uv-topbar-text: #d8c8b0;
318
+ --uv-topbar-hover: #3a2a1e;
319
+
320
+ --uv-scrollbar-track: #221a14;
321
+ --uv-scrollbar-thumb: #3a2a1e;
322
+ --uv-scrollbar-thumb-hover: #4a3a2e;
323
+
324
+ --uv-shadow: rgba(0, 0, 0, 0.3);
325
+ --uv-shadow-heavy: rgba(0, 0, 0, 0.5);
326
+
327
+ --uv-table-header-bg: #2e2018;
328
+ --uv-table-row-hover: #2e2018;
329
+ --uv-table-stripe: rgba(58, 42, 30, 0.3);
330
+ }
331
+
332
+
333
+ /* ══════════════════════════════════════════════════════════════
334
+ Flow Editor Theme Bridge
335
+ ══════════════════════════════════════════════════════════════
336
+ The flow editor defines --pf-* design tokens on .pict-flow-container.
337
+ These overrides must use the same scope to take effect.
338
+ ══════════════════════════════════════════════════════════════ */
339
+
340
+ /* ── Desert Dusk (default) ──────────────────────────────────── */
341
+ body .pict-flow-container
342
+ {
343
+ --pf-text-primary: #c8b8a0;
344
+ --pf-text-heading: #d8c8a8;
345
+ --pf-text-secondary: #a89878;
346
+ --pf-text-tertiary: #908068;
347
+ --pf-text-placeholder: #908068;
348
+ --pf-canvas-bg: #1a1714;
349
+ --pf-grid-stroke: #2a2418;
350
+ --pf-node-body-fill: #252018;
351
+ --pf-node-body-stroke: #3a3028;
352
+ --pf-node-body-stroke-hover: #4a4038;
353
+ --pf-node-title-fill: #c8b8a0;
354
+ --pf-node-title-bar-color: #c8b8a0;
355
+ --pf-node-type-label-fill: #a89878;
356
+ --pf-node-shadow: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
357
+ --pf-node-shadow-hover: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
358
+ --pf-port-label-bg: rgba(37, 32, 24, 0.7);
359
+ --pf-port-label-text: #c8b8a0;
360
+ --pf-port-stroke: #252018;
361
+ --pf-panel-bg: #252018;
362
+ --pf-panel-border: #3a3028;
363
+ --pf-panel-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
364
+ --pf-panel-titlebar-bg: #302818;
365
+ --pf-panel-titlebar-border: #3a3028;
366
+ --pf-panel-title-color: #d8c8a8;
367
+ --pf-panel-text: #c8b8a0;
368
+ --pf-panel-input-bg: #1a1714;
369
+ --pf-tab-text: #a89878;
370
+ --pf-tab-text-hover: #c8b8a0;
371
+ --pf-resize-handle-hover: #4a4038;
372
+ --pf-input-border: #3a3028;
373
+ --pf-input-border-focus: #c4956a;
374
+ --pf-divider-light: #302818;
375
+ --pf-divider-medium: #3a3028;
376
+ --pf-button-border: #3a3028;
377
+ --pf-button-hover-border: #4a4038;
378
+ --pf-button-hover-bg: #302818;
379
+ --pf-button-active-bg: #3a3028;
380
+ --pf-button-close-color: #a89878;
381
+ --pf-badge-category-bg: #302818;
382
+ --pf-badge-category-text: #a89878;
383
+ --pf-badge-code-bg: #2a2418;
384
+ --pf-badge-code-text: #c4956a;
385
+ --pf-port-item-bg: #302818;
386
+ --pf-toolbar-bg: #252018;
387
+ --pf-toolbar-border: #3a3028;
388
+ --pf-card-border: #3a3028;
389
+ --pf-card-hover-bg: #302818;
390
+ --pf-card-hover-shadow: 0 1px 3px rgba(196, 149, 106, 0.15);
391
+ --pf-connection-stroke: #908068;
392
+ --pf-connection-stroke-hover: #a89878;
393
+ }
394
+
395
+ /* ── Desert Day ─────────────────────────────────────────────── */
396
+ body[data-theme="desert-day"] .pict-flow-container
397
+ {
398
+ --pf-text-primary: #3d2b1f;
399
+ --pf-text-heading: #2e1e14;
400
+ --pf-text-secondary: #8a7560;
401
+ --pf-text-tertiary: #a09080;
402
+ --pf-text-placeholder: #a09080;
403
+ --pf-canvas-bg: #faf6f0;
404
+ --pf-grid-stroke: #e8ddd0;
405
+ --pf-node-body-fill: #fff;
406
+ --pf-node-body-stroke: #e0d0b8;
407
+ --pf-node-body-stroke-hover: #c8b8a0;
408
+ --pf-node-title-fill: #3d2b1f;
409
+ --pf-node-title-bar-color: #3d2b1f;
410
+ --pf-node-type-label-fill: #8a7560;
411
+ --pf-node-shadow: drop-shadow(0 1px 3px rgba(92, 61, 46, 0.10));
412
+ --pf-node-shadow-hover: drop-shadow(0 2px 6px rgba(92, 61, 46, 0.15));
413
+ --pf-port-label-bg: rgba(250, 246, 240, 0.7);
414
+ --pf-port-label-text: #3d2b1f;
415
+ --pf-port-stroke: #fff;
416
+ --pf-panel-bg: #fff;
417
+ --pf-panel-border: #e0d0b8;
418
+ --pf-panel-shadow: 0 4px 12px rgba(92, 61, 46, 0.10);
419
+ --pf-panel-titlebar-bg: #f0e6d6;
420
+ --pf-panel-titlebar-border: #e0d0b8;
421
+ --pf-panel-title-color: #2e1e14;
422
+ --pf-panel-text: #3d2b1f;
423
+ --pf-panel-input-bg: #fff;
424
+ --pf-tab-text: #8a7560;
425
+ --pf-tab-text-hover: #3d2b1f;
426
+ --pf-resize-handle-hover: #d0c0a8;
427
+ --pf-input-border: #e0d0b8;
428
+ --pf-input-border-focus: #c2703e;
429
+ --pf-divider-light: #f0e6d6;
430
+ --pf-divider-medium: #e0d0b8;
431
+ --pf-button-border: #d0c0a8;
432
+ --pf-button-hover-border: #c0b098;
433
+ --pf-button-hover-bg: #f0e6d6;
434
+ --pf-button-active-bg: #e8ddd0;
435
+ --pf-button-close-color: #a09080;
436
+ --pf-badge-category-bg: #f0e6d6;
437
+ --pf-badge-category-text: #8a7560;
438
+ --pf-badge-code-bg: #e8ddd0;
439
+ --pf-badge-code-text: #5c3d2e;
440
+ --pf-port-item-bg: #f0e6d6;
441
+ --pf-toolbar-bg: #fff;
442
+ --pf-toolbar-border: #e0d0b8;
443
+ --pf-card-border: #e0d0b8;
444
+ --pf-card-hover-bg: #f0e6d6;
445
+ --pf-card-hover-shadow: 0 1px 3px rgba(92, 61, 46, 0.12);
446
+ --pf-connection-stroke: #c0b098;
447
+ --pf-connection-stroke-hover: #a09080;
448
+ }
449
+
450
+ /* ── Desert Sunset ──────────────────────────────────────────── */
451
+ body[data-theme="desert-sunset"] .pict-flow-container
452
+ {
453
+ --pf-text-primary: #d4c4aa;
454
+ --pf-text-heading: #e0d0b8;
455
+ --pf-text-secondary: #a89070;
456
+ --pf-text-tertiary: #8a7858;
457
+ --pf-text-placeholder: #8a7858;
458
+ --pf-canvas-bg: #1e1610;
459
+ --pf-grid-stroke: #2a2018;
460
+ --pf-node-body-fill: #2a2018;
461
+ --pf-node-body-stroke: #3a2e22;
462
+ --pf-node-body-stroke-hover: #4a3e32;
463
+ --pf-node-title-fill: #d4c4aa;
464
+ --pf-node-title-bar-color: #d4c4aa;
465
+ --pf-node-type-label-fill: #a89070;
466
+ --pf-node-shadow: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
467
+ --pf-node-shadow-hover: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
468
+ --pf-port-label-bg: rgba(42, 32, 24, 0.7);
469
+ --pf-port-label-text: #d4c4aa;
470
+ --pf-port-stroke: #2a2018;
471
+ --pf-panel-bg: #2a2018;
472
+ --pf-panel-border: #3a2e22;
473
+ --pf-panel-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
474
+ --pf-panel-titlebar-bg: #342818;
475
+ --pf-panel-titlebar-border: #3a2e22;
476
+ --pf-panel-title-color: #e0d0b8;
477
+ --pf-panel-text: #d4c4aa;
478
+ --pf-panel-input-bg: #1e1610;
479
+ --pf-tab-text: #a89070;
480
+ --pf-tab-text-hover: #d4c4aa;
481
+ --pf-resize-handle-hover: #4a3e32;
482
+ --pf-input-border: #3a2e22;
483
+ --pf-input-border-focus: #e8943a;
484
+ --pf-divider-light: #342818;
485
+ --pf-divider-medium: #3a2e22;
486
+ --pf-button-border: #3a2e22;
487
+ --pf-button-hover-border: #4a3e32;
488
+ --pf-button-hover-bg: #342818;
489
+ --pf-button-active-bg: #3a2e22;
490
+ --pf-button-close-color: #a89070;
491
+ --pf-badge-category-bg: #342818;
492
+ --pf-badge-category-text: #a89070;
493
+ --pf-badge-code-bg: #2e2218;
494
+ --pf-badge-code-text: #e8943a;
495
+ --pf-port-item-bg: #342818;
496
+ --pf-toolbar-bg: #2a2018;
497
+ --pf-toolbar-border: #3a2e22;
498
+ --pf-card-border: #3a2e22;
499
+ --pf-card-hover-bg: #342818;
500
+ --pf-card-hover-shadow: 0 1px 3px rgba(232, 148, 58, 0.15);
501
+ --pf-connection-stroke: #8a7858;
502
+ --pf-connection-stroke-hover: #a89070;
503
+ }
504
+
505
+ /* ── Professional Light ─────────────────────────────────────── */
506
+ body[data-theme="professional-light"] .pict-flow-container
507
+ {
508
+ --pf-text-primary: #2d3748;
509
+ --pf-text-heading: #1a202c;
510
+ --pf-text-secondary: #6b7280;
511
+ --pf-text-tertiary: #9ca3af;
512
+ --pf-text-placeholder: #9ca3af;
513
+ --pf-canvas-bg: #f5f6f8;
514
+ --pf-grid-stroke: #e2e5ea;
515
+ --pf-node-body-fill: #fff;
516
+ --pf-node-body-stroke: #e2e5ea;
517
+ --pf-node-body-stroke-hover: #c8cdd5;
518
+ --pf-node-title-fill: #2d3748;
519
+ --pf-node-title-bar-color: #2d3748;
520
+ --pf-node-type-label-fill: #6b7280;
521
+ --pf-node-shadow: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06));
522
+ --pf-node-shadow-hover: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.10));
523
+ --pf-port-label-bg: rgba(245, 246, 248, 0.7);
524
+ --pf-port-label-text: #2d3748;
525
+ --pf-port-stroke: #fff;
526
+ --pf-panel-bg: #fff;
527
+ --pf-panel-border: #e2e5ea;
528
+ --pf-panel-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
529
+ --pf-panel-titlebar-bg: #f5f6f8;
530
+ --pf-panel-titlebar-border: #e2e5ea;
531
+ --pf-panel-title-color: #1a202c;
532
+ --pf-panel-text: #2d3748;
533
+ --pf-panel-input-bg: #fff;
534
+ --pf-tab-text: #6b7280;
535
+ --pf-tab-text-hover: #2d3748;
536
+ --pf-resize-handle-hover: #c8cdd5;
537
+ --pf-input-border: #e2e5ea;
538
+ --pf-input-border-focus: #3b82f6;
539
+ --pf-divider-light: #eceef2;
540
+ --pf-divider-medium: #e2e5ea;
541
+ --pf-button-border: #d1d5db;
542
+ --pf-button-hover-border: #9ca3af;
543
+ --pf-button-hover-bg: #f0f1f4;
544
+ --pf-button-active-bg: #e4e7ec;
545
+ --pf-button-close-color: #9ca3af;
546
+ --pf-badge-category-bg: #f0f1f4;
547
+ --pf-badge-category-text: #6b7280;
548
+ --pf-badge-code-bg: #eef2ff;
549
+ --pf-badge-code-text: #3b82f6;
550
+ --pf-port-item-bg: #f5f6f8;
551
+ --pf-toolbar-bg: #fff;
552
+ --pf-toolbar-border: #e2e5ea;
553
+ --pf-card-border: #e2e5ea;
554
+ --pf-card-hover-bg: #eef2ff;
555
+ --pf-card-hover-shadow: 0 1px 3px rgba(59, 130, 246, 0.12);
556
+ --pf-connection-stroke: #9ca3af;
557
+ --pf-connection-stroke-hover: #6b7280;
558
+ }
559
+
560
+ /* ── Professional Dark ──────────────────────────────────────── */
561
+ body[data-theme="professional-dark"] .pict-flow-container
562
+ {
563
+ --pf-text-primary: #c8cdd5;
564
+ --pf-text-heading: #e0e4ea;
565
+ --pf-text-secondary: #9da4b0;
566
+ --pf-text-tertiary: #7a8290;
567
+ --pf-text-placeholder: #7a8290;
568
+ --pf-canvas-bg: #111318;
569
+ --pf-grid-stroke: #1a1d24;
570
+ --pf-node-body-fill: #1a1d24;
571
+ --pf-node-body-stroke: #282c34;
572
+ --pf-node-body-stroke-hover: #3a3f4a;
573
+ --pf-node-title-fill: #c8cdd5;
574
+ --pf-node-title-bar-color: #c8cdd5;
575
+ --pf-node-type-label-fill: #9da4b0;
576
+ --pf-node-shadow: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.30));
577
+ --pf-node-shadow-hover: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.40));
578
+ --pf-port-label-bg: rgba(26, 29, 36, 0.7);
579
+ --pf-port-label-text: #c8cdd5;
580
+ --pf-port-stroke: #1a1d24;
581
+ --pf-panel-bg: #1a1d24;
582
+ --pf-panel-border: #282c34;
583
+ --pf-panel-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
584
+ --pf-panel-titlebar-bg: #22252e;
585
+ --pf-panel-titlebar-border: #282c34;
586
+ --pf-panel-title-color: #e0e4ea;
587
+ --pf-panel-text: #c8cdd5;
588
+ --pf-panel-input-bg: #111318;
589
+ --pf-tab-text: #7a8290;
590
+ --pf-tab-text-hover: #c8cdd5;
591
+ --pf-resize-handle-hover: #3a3f4a;
592
+ --pf-input-border: #282c34;
593
+ --pf-input-border-focus: #60a5fa;
594
+ --pf-divider-light: #22252e;
595
+ --pf-divider-medium: #282c34;
596
+ --pf-button-border: #282c34;
597
+ --pf-button-hover-border: #3a3f4a;
598
+ --pf-button-hover-bg: #22252e;
599
+ --pf-button-active-bg: #282c34;
600
+ --pf-button-close-color: #7a8290;
601
+ --pf-badge-category-bg: #22252e;
602
+ --pf-badge-category-text: #9da4b0;
603
+ --pf-badge-code-bg: #1e2230;
604
+ --pf-badge-code-text: #60a5fa;
605
+ --pf-port-item-bg: #22252e;
606
+ --pf-toolbar-bg: #1a1d24;
607
+ --pf-toolbar-border: #282c34;
608
+ --pf-card-border: #282c34;
609
+ --pf-card-hover-bg: #22252e;
610
+ --pf-card-hover-shadow: 0 1px 3px rgba(96, 165, 250, 0.12);
611
+ --pf-connection-stroke: #7a8290;
612
+ --pf-connection-stroke-hover: #9da4b0;
613
+ }
614
+
615
+ /* ── Desert Canyon ──────────────────────────────────────────── */
616
+ body[data-theme="desert-canyon"] .pict-flow-container
617
+ {
618
+ --pf-text-primary: #d8c8b0;
619
+ --pf-text-heading: #e8d8c0;
620
+ --pf-text-secondary: #b0a090;
621
+ --pf-text-tertiary: #8a7868;
622
+ --pf-text-placeholder: #8a7868;
623
+ --pf-canvas-bg: #18120e;
624
+ --pf-grid-stroke: #221a14;
625
+ --pf-node-body-fill: #221a14;
626
+ --pf-node-body-stroke: #3a2a1e;
627
+ --pf-node-body-stroke-hover: #4a3a2e;
628
+ --pf-node-title-fill: #d8c8b0;
629
+ --pf-node-title-bar-color: #d8c8b0;
630
+ --pf-node-type-label-fill: #b0a090;
631
+ --pf-node-shadow: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.30));
632
+ --pf-node-shadow-hover: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.40));
633
+ --pf-port-label-bg: rgba(34, 26, 20, 0.7);
634
+ --pf-port-label-text: #d8c8b0;
635
+ --pf-port-stroke: #221a14;
636
+ --pf-panel-bg: #221a14;
637
+ --pf-panel-border: #3a2a1e;
638
+ --pf-panel-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
639
+ --pf-panel-titlebar-bg: #2e2018;
640
+ --pf-panel-titlebar-border: #3a2a1e;
641
+ --pf-panel-title-color: #e8d8c0;
642
+ --pf-panel-text: #d8c8b0;
643
+ --pf-panel-input-bg: #18120e;
644
+ --pf-tab-text: #b0a090;
645
+ --pf-tab-text-hover: #d8c8b0;
646
+ --pf-resize-handle-hover: #4a3a2e;
647
+ --pf-input-border: #3a2a1e;
648
+ --pf-input-border-focus: #e8943a;
649
+ --pf-divider-light: #2e2018;
650
+ --pf-divider-medium: #3a2a1e;
651
+ --pf-button-border: #3a2a1e;
652
+ --pf-button-hover-border: #4a3a2e;
653
+ --pf-button-hover-bg: #2e2018;
654
+ --pf-button-active-bg: #3a2a1e;
655
+ --pf-button-close-color: #b0a090;
656
+ --pf-badge-category-bg: #2e2018;
657
+ --pf-badge-category-text: #b0a090;
658
+ --pf-badge-code-bg: #2a1e14;
659
+ --pf-badge-code-text: #e8943a;
660
+ --pf-port-item-bg: #2e2018;
661
+ --pf-toolbar-bg: #221a14;
662
+ --pf-toolbar-border: #3a2a1e;
663
+ --pf-card-border: #3a2a1e;
664
+ --pf-card-hover-bg: #2e2018;
665
+ --pf-card-hover-shadow: 0 1px 3px rgba(232, 148, 58, 0.15);
666
+ --pf-connection-stroke: #8a7868;
667
+ --pf-connection-stroke-hover: #b0a090;
668
+ }