@agentprojectcontext/apx 1.15.6 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (221) hide show
  1. package/package.json +40 -5
  2. package/src/cli/commands/log.js +113 -0
  3. package/src/cli/commands/overlay.js +253 -0
  4. package/src/cli/commands/sys.js +88 -16
  5. package/src/cli/index.js +23 -1
  6. package/src/cli/terminal-chat/renderer.js +71 -56
  7. package/src/cli-ts/commands/agent.ts +173 -0
  8. package/src/cli-ts/commands/chat.ts +119 -0
  9. package/src/cli-ts/commands/daemon.ts +112 -0
  10. package/src/cli-ts/commands/exec.ts +109 -0
  11. package/src/cli-ts/commands/mcp.ts +235 -0
  12. package/src/cli-ts/commands/session.ts +224 -0
  13. package/src/cli-ts/commands/status.ts +61 -0
  14. package/src/cli-ts/http.ts +36 -0
  15. package/src/cli-ts/index.ts +73 -0
  16. package/src/cli-ts/ui.ts +107 -0
  17. package/src/core/logging.js +81 -0
  18. package/src/daemon/api.js +58 -0
  19. package/src/daemon/engines/anthropic.js +60 -1
  20. package/src/daemon/engines/index.js +2 -1
  21. package/src/daemon/engines/ollama.js +70 -3
  22. package/src/daemon/index.js +58 -0
  23. package/src/daemon/overlay-ws.js +40 -0
  24. package/src/daemon/plugins/index.js +2 -1
  25. package/src/daemon/plugins/overlay.js +177 -0
  26. package/src/daemon/plugins/telegram.js +15 -3
  27. package/src/daemon/super-agent.js +102 -19
  28. package/src/daemon/transcription.js +262 -59
  29. package/src/daemon/whisper-server.py +57 -6
  30. package/src/overlay/index.html +44 -0
  31. package/src/overlay/main.js +480 -0
  32. package/src/overlay/package.json +3 -0
  33. package/src/overlay/preload.js +34 -0
  34. package/src/overlay/renderer.js +371 -0
  35. package/src/overlay/style.css +250 -0
  36. package/src/tui/_shims/cli-error.ts +6 -0
  37. package/src/tui/_shims/cli-logo.ts +18 -0
  38. package/src/tui/_shims/cli-ui.ts +1 -0
  39. package/src/tui/_shims/config-console-state.ts +7 -0
  40. package/src/tui/_shims/core-any.ts +30 -0
  41. package/src/tui/_shims/core-binary.ts +13 -0
  42. package/src/tui/_shims/core-flag.ts +3 -0
  43. package/src/tui/_shims/core-log.ts +14 -0
  44. package/src/tui/_shims/lsp-language.ts +1 -0
  45. package/src/tui/_shims/opencode-any.ts +135 -0
  46. package/src/tui/_shims/opencode-sdk-v2.ts +48 -0
  47. package/src/tui/_shims/plugin-tui.ts +13 -0
  48. package/src/tui/_shims/provider-provider.ts +10 -0
  49. package/src/tui/_shims/session-retry.ts +1 -0
  50. package/src/tui/_shims/session-schema.ts +15 -0
  51. package/src/tui/_shims/session-session.ts +3 -0
  52. package/src/tui/_shims/snapshot.ts +4 -0
  53. package/src/tui/_shims/tool-any.ts +18 -0
  54. package/src/tui/_shims/util-error.ts +7 -0
  55. package/src/tui/_shims/util-filesystem.ts +79 -0
  56. package/src/tui/_shims/util-format.ts +7 -0
  57. package/src/tui/_shims/util-iife.ts +3 -0
  58. package/src/tui/_shims/util-locale.ts +10 -0
  59. package/src/tui/_shims/util-process.ts +38 -0
  60. package/src/tui/app.tsx +783 -0
  61. package/src/tui/asset/charge.wav +0 -0
  62. package/src/tui/asset/pulse-a.wav +0 -0
  63. package/src/tui/asset/pulse-b.wav +0 -0
  64. package/src/tui/asset/pulse-c.wav +0 -0
  65. package/src/tui/attach.ts +100 -0
  66. package/src/tui/component/bg-pulse-render.ts +436 -0
  67. package/src/tui/component/bg-pulse.tsx +99 -0
  68. package/src/tui/component/border.tsx +21 -0
  69. package/src/tui/component/dialog-agent.tsx +31 -0
  70. package/src/tui/component/dialog-console-org.tsx +103 -0
  71. package/src/tui/component/dialog-mcp.tsx +85 -0
  72. package/src/tui/component/dialog-model.tsx +175 -0
  73. package/src/tui/component/dialog-provider.tsx +456 -0
  74. package/src/tui/component/dialog-retry-action.tsx +160 -0
  75. package/src/tui/component/dialog-session-delete-failed.tsx +99 -0
  76. package/src/tui/component/dialog-session-list.tsx +323 -0
  77. package/src/tui/component/dialog-session-rename.tsx +31 -0
  78. package/src/tui/component/dialog-skill.tsx +36 -0
  79. package/src/tui/component/dialog-stash.tsx +87 -0
  80. package/src/tui/component/dialog-status.tsx +168 -0
  81. package/src/tui/component/dialog-tag.tsx +44 -0
  82. package/src/tui/component/dialog-theme-list.tsx +50 -0
  83. package/src/tui/component/dialog-variant.tsx +39 -0
  84. package/src/tui/component/dialog-workspace-create.tsx +302 -0
  85. package/src/tui/component/dialog-workspace-file-changes.tsx +138 -0
  86. package/src/tui/component/dialog-workspace-unavailable.tsx +69 -0
  87. package/src/tui/component/error-component.tsx +92 -0
  88. package/src/tui/component/logo.tsx +896 -0
  89. package/src/tui/component/plugin-route-missing.tsx +14 -0
  90. package/src/tui/component/prompt/autocomplete.tsx +869 -0
  91. package/src/tui/component/prompt/cwd.ts +0 -0
  92. package/src/tui/component/prompt/frecency.tsx +90 -0
  93. package/src/tui/component/prompt/history.tsx +108 -0
  94. package/src/tui/component/prompt/index.tsx +1809 -0
  95. package/src/tui/component/prompt/part.ts +16 -0
  96. package/src/tui/component/prompt/stash.tsx +101 -0
  97. package/src/tui/component/prompt/traits.ts +35 -0
  98. package/src/tui/component/spinner.tsx +24 -0
  99. package/src/tui/component/startup-loading.tsx +63 -0
  100. package/src/tui/component/todo-item.tsx +32 -0
  101. package/src/tui/component/use-connected.tsx +9 -0
  102. package/src/tui/component/workspace-label.tsx +19 -0
  103. package/src/tui/config/cwd.ts +5 -0
  104. package/src/tui/config/keybind.ts +432 -0
  105. package/src/tui/config/tui-migrate.ts +154 -0
  106. package/src/tui/config/tui-schema.ts +34 -0
  107. package/src/tui/config/tui.ts +46 -0
  108. package/src/tui/context/aggregate-failures.ts +34 -0
  109. package/src/tui/context/args.tsx +15 -0
  110. package/src/tui/context/command-palette.tsx +163 -0
  111. package/src/tui/context/directory.ts +15 -0
  112. package/src/tui/context/editor-zed.ts +283 -0
  113. package/src/tui/context/editor.ts +468 -0
  114. package/src/tui/context/event-apx.ts +22 -0
  115. package/src/tui/context/event.ts +6 -0
  116. package/src/tui/context/exit.tsx +60 -0
  117. package/src/tui/context/helper.tsx +25 -0
  118. package/src/tui/context/kv.tsx +81 -0
  119. package/src/tui/context/local.tsx +608 -0
  120. package/src/tui/context/path-format.tsx +39 -0
  121. package/src/tui/context/project-apx.tsx +48 -0
  122. package/src/tui/context/project.tsx +7 -0
  123. package/src/tui/context/prompt.tsx +18 -0
  124. package/src/tui/context/route.tsx +52 -0
  125. package/src/tui/context/sdk-apx.tsx +185 -0
  126. package/src/tui/context/sdk.tsx +6 -0
  127. package/src/tui/context/sync-apx.tsx +178 -0
  128. package/src/tui/context/sync-v2.tsx +16 -0
  129. package/src/tui/context/sync.tsx +118 -0
  130. package/src/tui/context/theme/aura.json +69 -0
  131. package/src/tui/context/theme/ayu.json +80 -0
  132. package/src/tui/context/theme/carbonfox.json +248 -0
  133. package/src/tui/context/theme/catppuccin-frappe.json +230 -0
  134. package/src/tui/context/theme/catppuccin-macchiato.json +230 -0
  135. package/src/tui/context/theme/catppuccin.json +112 -0
  136. package/src/tui/context/theme/cobalt2.json +225 -0
  137. package/src/tui/context/theme/cursor.json +249 -0
  138. package/src/tui/context/theme/dracula.json +219 -0
  139. package/src/tui/context/theme/everforest.json +241 -0
  140. package/src/tui/context/theme/flexoki.json +237 -0
  141. package/src/tui/context/theme/github.json +233 -0
  142. package/src/tui/context/theme/gruvbox.json +242 -0
  143. package/src/tui/context/theme/kanagawa.json +77 -0
  144. package/src/tui/context/theme/lucent-orng.json +234 -0
  145. package/src/tui/context/theme/material.json +235 -0
  146. package/src/tui/context/theme/matrix.json +77 -0
  147. package/src/tui/context/theme/mercury.json +252 -0
  148. package/src/tui/context/theme/monokai.json +221 -0
  149. package/src/tui/context/theme/nightowl.json +221 -0
  150. package/src/tui/context/theme/nord.json +223 -0
  151. package/src/tui/context/theme/one-dark.json +84 -0
  152. package/src/tui/context/theme/opencode.json +245 -0
  153. package/src/tui/context/theme/orng.json +249 -0
  154. package/src/tui/context/theme/osaka-jade.json +93 -0
  155. package/src/tui/context/theme/palenight.json +222 -0
  156. package/src/tui/context/theme/rosepine.json +234 -0
  157. package/src/tui/context/theme/solarized.json +223 -0
  158. package/src/tui/context/theme/synthwave84.json +226 -0
  159. package/src/tui/context/theme/tokyonight.json +243 -0
  160. package/src/tui/context/theme/vercel.json +245 -0
  161. package/src/tui/context/theme/vesper.json +218 -0
  162. package/src/tui/context/theme/zenburn.json +223 -0
  163. package/src/tui/context/theme.tsx +1247 -0
  164. package/src/tui/context/tui-config.tsx +9 -0
  165. package/src/tui/event.ts +16 -0
  166. package/src/tui/feature-plugins/home/footer.tsx +94 -0
  167. package/src/tui/feature-plugins/home/tips-view.tsx +166 -0
  168. package/src/tui/feature-plugins/home/tips.tsx +59 -0
  169. package/src/tui/feature-plugins/sidebar/context.tsx +65 -0
  170. package/src/tui/feature-plugins/sidebar/files.tsx +63 -0
  171. package/src/tui/feature-plugins/sidebar/footer.tsx +94 -0
  172. package/src/tui/feature-plugins/sidebar/lsp.tsx +65 -0
  173. package/src/tui/feature-plugins/sidebar/mcp.tsx +97 -0
  174. package/src/tui/feature-plugins/sidebar/todo.tsx +49 -0
  175. package/src/tui/feature-plugins/system/plugins.tsx +269 -0
  176. package/src/tui/feature-plugins/system/session-v2.tsx +1143 -0
  177. package/src/tui/feature-plugins/system/which-key.tsx +608 -0
  178. package/src/tui/keymap.tsx +166 -0
  179. package/src/tui/layer.ts +6 -0
  180. package/src/tui/plugin/api.tsx +381 -0
  181. package/src/tui/plugin/command-shim.ts +109 -0
  182. package/src/tui/plugin/internal.ts +33 -0
  183. package/src/tui/plugin/runtime.ts +1069 -0
  184. package/src/tui/plugin/slots.tsx +60 -0
  185. package/src/tui/routes/home.tsx +96 -0
  186. package/src/tui/routes/session/dialog-fork-from-timeline.tsx +76 -0
  187. package/src/tui/routes/session/dialog-message.tsx +108 -0
  188. package/src/tui/routes/session/dialog-subagent.tsx +26 -0
  189. package/src/tui/routes/session/dialog-timeline.tsx +47 -0
  190. package/src/tui/routes/session/footer.tsx +91 -0
  191. package/src/tui/routes/session/index.tsx +188 -0
  192. package/src/tui/routes/session/permission.tsx +722 -0
  193. package/src/tui/routes/session/question.tsx +490 -0
  194. package/src/tui/routes/session/sidebar.tsx +102 -0
  195. package/src/tui/routes/session/subagent-footer.tsx +133 -0
  196. package/src/tui/run.ts +84 -0
  197. package/src/tui/thread.ts +261 -0
  198. package/src/tui/tsconfig.json +40 -0
  199. package/src/tui/ui/dialog-alert.tsx +66 -0
  200. package/src/tui/ui/dialog-confirm.tsx +108 -0
  201. package/src/tui/ui/dialog-export-options.tsx +217 -0
  202. package/src/tui/ui/dialog-help.tsx +40 -0
  203. package/src/tui/ui/dialog-prompt.tsx +101 -0
  204. package/src/tui/ui/dialog-select.tsx +553 -0
  205. package/src/tui/ui/dialog.tsx +211 -0
  206. package/src/tui/ui/link.tsx +34 -0
  207. package/src/tui/ui/spinner.ts +368 -0
  208. package/src/tui/ui/toast.tsx +111 -0
  209. package/src/tui/util/clipboard.ts +217 -0
  210. package/src/tui/util/editor.ts +37 -0
  211. package/src/tui/util/model.ts +23 -0
  212. package/src/tui/util/provider-origin.ts +7 -0
  213. package/src/tui/util/revert-diff.ts +18 -0
  214. package/src/tui/util/scroll.ts +25 -0
  215. package/src/tui/util/selection.ts +65 -0
  216. package/src/tui/util/signal.ts +41 -0
  217. package/src/tui/util/sound.ts +156 -0
  218. package/src/tui/util/transcript.ts +112 -0
  219. package/src/tui/validate-session.ts +29 -0
  220. package/src/tui/win32.ts +130 -0
  221. package/src/tui/worker.ts +104 -0
@@ -0,0 +1,237 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "black": "#100F0F",
5
+ "base950": "#1C1B1A",
6
+ "base900": "#282726",
7
+ "base850": "#343331",
8
+ "base800": "#403E3C",
9
+ "base700": "#575653",
10
+ "base600": "#6F6E69",
11
+ "base500": "#878580",
12
+ "base300": "#B7B5AC",
13
+ "base200": "#CECDC3",
14
+ "base150": "#DAD8CE",
15
+ "base100": "#E6E4D9",
16
+ "base50": "#F2F0E5",
17
+ "paper": "#FFFCF0",
18
+ "red400": "#D14D41",
19
+ "red600": "#AF3029",
20
+ "orange400": "#DA702C",
21
+ "orange600": "#BC5215",
22
+ "yellow400": "#D0A215",
23
+ "yellow600": "#AD8301",
24
+ "green400": "#879A39",
25
+ "green600": "#66800B",
26
+ "cyan400": "#3AA99F",
27
+ "cyan600": "#24837B",
28
+ "blue400": "#4385BE",
29
+ "blue600": "#205EA6",
30
+ "purple400": "#8B7EC8",
31
+ "purple600": "#5E409D",
32
+ "magenta400": "#CE5D97",
33
+ "magenta600": "#A02F6F"
34
+ },
35
+ "theme": {
36
+ "primary": {
37
+ "dark": "orange400",
38
+ "light": "blue600"
39
+ },
40
+ "secondary": {
41
+ "dark": "blue400",
42
+ "light": "purple600"
43
+ },
44
+ "accent": {
45
+ "dark": "purple400",
46
+ "light": "orange600"
47
+ },
48
+ "error": {
49
+ "dark": "red400",
50
+ "light": "red600"
51
+ },
52
+ "warning": {
53
+ "dark": "orange400",
54
+ "light": "orange600"
55
+ },
56
+ "success": {
57
+ "dark": "green400",
58
+ "light": "green600"
59
+ },
60
+ "info": {
61
+ "dark": "cyan400",
62
+ "light": "cyan600"
63
+ },
64
+ "text": {
65
+ "dark": "base200",
66
+ "light": "black"
67
+ },
68
+ "textMuted": {
69
+ "dark": "base600",
70
+ "light": "base600"
71
+ },
72
+ "background": {
73
+ "dark": "black",
74
+ "light": "paper"
75
+ },
76
+ "backgroundPanel": {
77
+ "dark": "base950",
78
+ "light": "base50"
79
+ },
80
+ "backgroundElement": {
81
+ "dark": "base900",
82
+ "light": "base100"
83
+ },
84
+ "border": {
85
+ "dark": "base700",
86
+ "light": "base300"
87
+ },
88
+ "borderActive": {
89
+ "dark": "base600",
90
+ "light": "base500"
91
+ },
92
+ "borderSubtle": {
93
+ "dark": "base800",
94
+ "light": "base200"
95
+ },
96
+ "diffAdded": {
97
+ "dark": "green400",
98
+ "light": "green600"
99
+ },
100
+ "diffRemoved": {
101
+ "dark": "red400",
102
+ "light": "red600"
103
+ },
104
+ "diffContext": {
105
+ "dark": "base600",
106
+ "light": "base600"
107
+ },
108
+ "diffHunkHeader": {
109
+ "dark": "blue400",
110
+ "light": "blue600"
111
+ },
112
+ "diffHighlightAdded": {
113
+ "dark": "green400",
114
+ "light": "green600"
115
+ },
116
+ "diffHighlightRemoved": {
117
+ "dark": "red400",
118
+ "light": "red600"
119
+ },
120
+ "diffAddedBg": {
121
+ "dark": "#1A2D1A",
122
+ "light": "#D5E5D5"
123
+ },
124
+ "diffRemovedBg": {
125
+ "dark": "#2D1A1A",
126
+ "light": "#F7D8DB"
127
+ },
128
+ "diffContextBg": {
129
+ "dark": "base950",
130
+ "light": "base50"
131
+ },
132
+ "diffLineNumber": {
133
+ "dark": "#888883",
134
+ "light": "#5a5955"
135
+ },
136
+ "diffAddedLineNumberBg": {
137
+ "dark": "#152515",
138
+ "light": "#C5D5C5"
139
+ },
140
+ "diffRemovedLineNumberBg": {
141
+ "dark": "#251515",
142
+ "light": "#E7C8CB"
143
+ },
144
+ "markdownText": {
145
+ "dark": "base200",
146
+ "light": "black"
147
+ },
148
+ "markdownHeading": {
149
+ "dark": "purple400",
150
+ "light": "purple600"
151
+ },
152
+ "markdownLink": {
153
+ "dark": "blue400",
154
+ "light": "blue600"
155
+ },
156
+ "markdownLinkText": {
157
+ "dark": "cyan400",
158
+ "light": "cyan600"
159
+ },
160
+ "markdownCode": {
161
+ "dark": "cyan400",
162
+ "light": "cyan600"
163
+ },
164
+ "markdownBlockQuote": {
165
+ "dark": "yellow400",
166
+ "light": "yellow600"
167
+ },
168
+ "markdownEmph": {
169
+ "dark": "yellow400",
170
+ "light": "yellow600"
171
+ },
172
+ "markdownStrong": {
173
+ "dark": "orange400",
174
+ "light": "orange600"
175
+ },
176
+ "markdownHorizontalRule": {
177
+ "dark": "base600",
178
+ "light": "base600"
179
+ },
180
+ "markdownListItem": {
181
+ "dark": "orange400",
182
+ "light": "orange600"
183
+ },
184
+ "markdownListEnumeration": {
185
+ "dark": "cyan400",
186
+ "light": "cyan600"
187
+ },
188
+ "markdownImage": {
189
+ "dark": "magenta400",
190
+ "light": "magenta600"
191
+ },
192
+ "markdownImageText": {
193
+ "dark": "cyan400",
194
+ "light": "cyan600"
195
+ },
196
+ "markdownCodeBlock": {
197
+ "dark": "base200",
198
+ "light": "black"
199
+ },
200
+ "syntaxComment": {
201
+ "dark": "base600",
202
+ "light": "base600"
203
+ },
204
+ "syntaxKeyword": {
205
+ "dark": "green400",
206
+ "light": "green600"
207
+ },
208
+ "syntaxFunction": {
209
+ "dark": "orange400",
210
+ "light": "orange600"
211
+ },
212
+ "syntaxVariable": {
213
+ "dark": "blue400",
214
+ "light": "blue600"
215
+ },
216
+ "syntaxString": {
217
+ "dark": "cyan400",
218
+ "light": "cyan600"
219
+ },
220
+ "syntaxNumber": {
221
+ "dark": "purple400",
222
+ "light": "purple600"
223
+ },
224
+ "syntaxType": {
225
+ "dark": "yellow400",
226
+ "light": "yellow600"
227
+ },
228
+ "syntaxOperator": {
229
+ "dark": "base300",
230
+ "light": "base600"
231
+ },
232
+ "syntaxPunctuation": {
233
+ "dark": "base300",
234
+ "light": "base600"
235
+ }
236
+ }
237
+ }
@@ -0,0 +1,233 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "darkBg": "#0d1117",
5
+ "darkBgAlt": "#010409",
6
+ "darkBgPanel": "#161b22",
7
+ "darkFg": "#c9d1d9",
8
+ "darkFgMuted": "#8b949e",
9
+ "darkBlue": "#58a6ff",
10
+ "darkGreen": "#3fb950",
11
+ "darkRed": "#f85149",
12
+ "darkOrange": "#d29922",
13
+ "darkPurple": "#bc8cff",
14
+ "darkPink": "#ff7b72",
15
+ "darkYellow": "#e3b341",
16
+ "darkCyan": "#39c5cf",
17
+ "lightBg": "#ffffff",
18
+ "lightBgAlt": "#f6f8fa",
19
+ "lightBgPanel": "#f0f3f6",
20
+ "lightFg": "#24292f",
21
+ "lightFgMuted": "#57606a",
22
+ "lightBlue": "#0969da",
23
+ "lightGreen": "#1a7f37",
24
+ "lightRed": "#cf222e",
25
+ "lightOrange": "#bc4c00",
26
+ "lightPurple": "#8250df",
27
+ "lightPink": "#bf3989",
28
+ "lightYellow": "#9a6700",
29
+ "lightCyan": "#1b7c83"
30
+ },
31
+ "theme": {
32
+ "primary": {
33
+ "dark": "darkBlue",
34
+ "light": "lightBlue"
35
+ },
36
+ "secondary": {
37
+ "dark": "darkPurple",
38
+ "light": "lightPurple"
39
+ },
40
+ "accent": {
41
+ "dark": "darkCyan",
42
+ "light": "lightCyan"
43
+ },
44
+ "error": {
45
+ "dark": "darkRed",
46
+ "light": "lightRed"
47
+ },
48
+ "warning": {
49
+ "dark": "darkYellow",
50
+ "light": "lightYellow"
51
+ },
52
+ "success": {
53
+ "dark": "darkGreen",
54
+ "light": "lightGreen"
55
+ },
56
+ "info": {
57
+ "dark": "darkOrange",
58
+ "light": "lightOrange"
59
+ },
60
+ "text": {
61
+ "dark": "darkFg",
62
+ "light": "lightFg"
63
+ },
64
+ "textMuted": {
65
+ "dark": "darkFgMuted",
66
+ "light": "lightFgMuted"
67
+ },
68
+ "background": {
69
+ "dark": "darkBg",
70
+ "light": "lightBg"
71
+ },
72
+ "backgroundPanel": {
73
+ "dark": "darkBgAlt",
74
+ "light": "lightBgAlt"
75
+ },
76
+ "backgroundElement": {
77
+ "dark": "darkBgPanel",
78
+ "light": "lightBgPanel"
79
+ },
80
+ "border": {
81
+ "dark": "#30363d",
82
+ "light": "#d0d7de"
83
+ },
84
+ "borderActive": {
85
+ "dark": "darkBlue",
86
+ "light": "lightBlue"
87
+ },
88
+ "borderSubtle": {
89
+ "dark": "#21262d",
90
+ "light": "#d8dee4"
91
+ },
92
+ "diffAdded": {
93
+ "dark": "darkGreen",
94
+ "light": "lightGreen"
95
+ },
96
+ "diffRemoved": {
97
+ "dark": "darkRed",
98
+ "light": "lightRed"
99
+ },
100
+ "diffContext": {
101
+ "dark": "darkFgMuted",
102
+ "light": "lightFgMuted"
103
+ },
104
+ "diffHunkHeader": {
105
+ "dark": "darkBlue",
106
+ "light": "lightBlue"
107
+ },
108
+ "diffHighlightAdded": {
109
+ "dark": "#3fb950",
110
+ "light": "#1a7f37"
111
+ },
112
+ "diffHighlightRemoved": {
113
+ "dark": "#f85149",
114
+ "light": "#cf222e"
115
+ },
116
+ "diffAddedBg": {
117
+ "dark": "#033a16",
118
+ "light": "#dafbe1"
119
+ },
120
+ "diffRemovedBg": {
121
+ "dark": "#67060c",
122
+ "light": "#ffebe9"
123
+ },
124
+ "diffContextBg": {
125
+ "dark": "darkBgAlt",
126
+ "light": "lightBgAlt"
127
+ },
128
+ "diffLineNumber": {
129
+ "dark": "#95999e",
130
+ "light": "textMuted"
131
+ },
132
+ "diffAddedLineNumberBg": {
133
+ "dark": "#033a16",
134
+ "light": "#dafbe1"
135
+ },
136
+ "diffRemovedLineNumberBg": {
137
+ "dark": "#67060c",
138
+ "light": "#ffebe9"
139
+ },
140
+ "markdownText": {
141
+ "dark": "darkFg",
142
+ "light": "lightFg"
143
+ },
144
+ "markdownHeading": {
145
+ "dark": "darkBlue",
146
+ "light": "lightBlue"
147
+ },
148
+ "markdownLink": {
149
+ "dark": "darkBlue",
150
+ "light": "lightBlue"
151
+ },
152
+ "markdownLinkText": {
153
+ "dark": "darkCyan",
154
+ "light": "lightCyan"
155
+ },
156
+ "markdownCode": {
157
+ "dark": "darkPink",
158
+ "light": "lightPink"
159
+ },
160
+ "markdownBlockQuote": {
161
+ "dark": "darkFgMuted",
162
+ "light": "lightFgMuted"
163
+ },
164
+ "markdownEmph": {
165
+ "dark": "darkYellow",
166
+ "light": "lightYellow"
167
+ },
168
+ "markdownStrong": {
169
+ "dark": "darkOrange",
170
+ "light": "lightOrange"
171
+ },
172
+ "markdownHorizontalRule": {
173
+ "dark": "#30363d",
174
+ "light": "#d0d7de"
175
+ },
176
+ "markdownListItem": {
177
+ "dark": "darkBlue",
178
+ "light": "lightBlue"
179
+ },
180
+ "markdownListEnumeration": {
181
+ "dark": "darkCyan",
182
+ "light": "lightCyan"
183
+ },
184
+ "markdownImage": {
185
+ "dark": "darkBlue",
186
+ "light": "lightBlue"
187
+ },
188
+ "markdownImageText": {
189
+ "dark": "darkCyan",
190
+ "light": "lightCyan"
191
+ },
192
+ "markdownCodeBlock": {
193
+ "dark": "darkFg",
194
+ "light": "lightFg"
195
+ },
196
+ "syntaxComment": {
197
+ "dark": "darkFgMuted",
198
+ "light": "lightFgMuted"
199
+ },
200
+ "syntaxKeyword": {
201
+ "dark": "darkPink",
202
+ "light": "lightRed"
203
+ },
204
+ "syntaxFunction": {
205
+ "dark": "darkPurple",
206
+ "light": "lightPurple"
207
+ },
208
+ "syntaxVariable": {
209
+ "dark": "darkOrange",
210
+ "light": "lightOrange"
211
+ },
212
+ "syntaxString": {
213
+ "dark": "darkCyan",
214
+ "light": "lightBlue"
215
+ },
216
+ "syntaxNumber": {
217
+ "dark": "darkBlue",
218
+ "light": "lightCyan"
219
+ },
220
+ "syntaxType": {
221
+ "dark": "darkOrange",
222
+ "light": "lightOrange"
223
+ },
224
+ "syntaxOperator": {
225
+ "dark": "darkPink",
226
+ "light": "lightRed"
227
+ },
228
+ "syntaxPunctuation": {
229
+ "dark": "darkFg",
230
+ "light": "lightFg"
231
+ }
232
+ }
233
+ }
@@ -0,0 +1,242 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "darkBg0": "#282828",
5
+ "darkBg1": "#3c3836",
6
+ "darkBg2": "#504945",
7
+ "darkBg3": "#665c54",
8
+ "darkFg0": "#fbf1c7",
9
+ "darkFg1": "#ebdbb2",
10
+ "darkGray": "#928374",
11
+ "darkRed": "#cc241d",
12
+ "darkGreen": "#98971a",
13
+ "darkYellow": "#d79921",
14
+ "darkBlue": "#458588",
15
+ "darkPurple": "#b16286",
16
+ "darkAqua": "#689d6a",
17
+ "darkOrange": "#d65d0e",
18
+ "darkRedBright": "#fb4934",
19
+ "darkGreenBright": "#b8bb26",
20
+ "darkYellowBright": "#fabd2f",
21
+ "darkBlueBright": "#83a598",
22
+ "darkPurpleBright": "#d3869b",
23
+ "darkAquaBright": "#8ec07c",
24
+ "darkOrangeBright": "#fe8019",
25
+ "lightBg0": "#fbf1c7",
26
+ "lightBg1": "#ebdbb2",
27
+ "lightBg2": "#d5c4a1",
28
+ "lightBg3": "#bdae93",
29
+ "lightFg0": "#282828",
30
+ "lightFg1": "#3c3836",
31
+ "lightGray": "#7c6f64",
32
+ "lightRed": "#9d0006",
33
+ "lightGreen": "#79740e",
34
+ "lightYellow": "#b57614",
35
+ "lightBlue": "#076678",
36
+ "lightPurple": "#8f3f71",
37
+ "lightAqua": "#427b58",
38
+ "lightOrange": "#af3a03"
39
+ },
40
+ "theme": {
41
+ "primary": {
42
+ "dark": "darkBlueBright",
43
+ "light": "lightBlue"
44
+ },
45
+ "secondary": {
46
+ "dark": "darkPurpleBright",
47
+ "light": "lightPurple"
48
+ },
49
+ "accent": {
50
+ "dark": "darkAquaBright",
51
+ "light": "lightAqua"
52
+ },
53
+ "error": {
54
+ "dark": "darkRedBright",
55
+ "light": "lightRed"
56
+ },
57
+ "warning": {
58
+ "dark": "darkOrangeBright",
59
+ "light": "lightOrange"
60
+ },
61
+ "success": {
62
+ "dark": "darkGreenBright",
63
+ "light": "lightGreen"
64
+ },
65
+ "info": {
66
+ "dark": "darkYellowBright",
67
+ "light": "lightYellow"
68
+ },
69
+ "text": {
70
+ "dark": "darkFg1",
71
+ "light": "lightFg1"
72
+ },
73
+ "textMuted": {
74
+ "dark": "darkGray",
75
+ "light": "lightGray"
76
+ },
77
+ "background": {
78
+ "dark": "darkBg0",
79
+ "light": "lightBg0"
80
+ },
81
+ "backgroundPanel": {
82
+ "dark": "darkBg1",
83
+ "light": "lightBg1"
84
+ },
85
+ "backgroundElement": {
86
+ "dark": "darkBg2",
87
+ "light": "lightBg2"
88
+ },
89
+ "border": {
90
+ "dark": "darkBg3",
91
+ "light": "lightBg3"
92
+ },
93
+ "borderActive": {
94
+ "dark": "darkFg1",
95
+ "light": "lightFg1"
96
+ },
97
+ "borderSubtle": {
98
+ "dark": "darkBg2",
99
+ "light": "lightBg2"
100
+ },
101
+ "diffAdded": {
102
+ "dark": "darkGreen",
103
+ "light": "lightGreen"
104
+ },
105
+ "diffRemoved": {
106
+ "dark": "darkRed",
107
+ "light": "lightRed"
108
+ },
109
+ "diffContext": {
110
+ "dark": "darkGray",
111
+ "light": "lightGray"
112
+ },
113
+ "diffHunkHeader": {
114
+ "dark": "darkAqua",
115
+ "light": "lightAqua"
116
+ },
117
+ "diffHighlightAdded": {
118
+ "dark": "darkGreenBright",
119
+ "light": "lightGreen"
120
+ },
121
+ "diffHighlightRemoved": {
122
+ "dark": "darkRedBright",
123
+ "light": "lightRed"
124
+ },
125
+ "diffAddedBg": {
126
+ "dark": "#32302f",
127
+ "light": "#dcd8a4"
128
+ },
129
+ "diffRemovedBg": {
130
+ "dark": "#322929",
131
+ "light": "#e2c7c3"
132
+ },
133
+ "diffContextBg": {
134
+ "dark": "darkBg1",
135
+ "light": "lightBg1"
136
+ },
137
+ "diffLineNumber": {
138
+ "dark": "#a8a29e",
139
+ "light": "#564f43"
140
+ },
141
+ "diffAddedLineNumberBg": {
142
+ "dark": "#2a2827",
143
+ "light": "#cec99e"
144
+ },
145
+ "diffRemovedLineNumberBg": {
146
+ "dark": "#2a2222",
147
+ "light": "#d3bdb9"
148
+ },
149
+ "markdownText": {
150
+ "dark": "darkFg1",
151
+ "light": "lightFg1"
152
+ },
153
+ "markdownHeading": {
154
+ "dark": "darkBlueBright",
155
+ "light": "lightBlue"
156
+ },
157
+ "markdownLink": {
158
+ "dark": "darkAquaBright",
159
+ "light": "lightAqua"
160
+ },
161
+ "markdownLinkText": {
162
+ "dark": "darkGreenBright",
163
+ "light": "lightGreen"
164
+ },
165
+ "markdownCode": {
166
+ "dark": "darkYellowBright",
167
+ "light": "lightYellow"
168
+ },
169
+ "markdownBlockQuote": {
170
+ "dark": "darkGray",
171
+ "light": "lightGray"
172
+ },
173
+ "markdownEmph": {
174
+ "dark": "darkPurpleBright",
175
+ "light": "lightPurple"
176
+ },
177
+ "markdownStrong": {
178
+ "dark": "darkOrangeBright",
179
+ "light": "lightOrange"
180
+ },
181
+ "markdownHorizontalRule": {
182
+ "dark": "darkGray",
183
+ "light": "lightGray"
184
+ },
185
+ "markdownListItem": {
186
+ "dark": "darkBlueBright",
187
+ "light": "lightBlue"
188
+ },
189
+ "markdownListEnumeration": {
190
+ "dark": "darkAquaBright",
191
+ "light": "lightAqua"
192
+ },
193
+ "markdownImage": {
194
+ "dark": "darkAquaBright",
195
+ "light": "lightAqua"
196
+ },
197
+ "markdownImageText": {
198
+ "dark": "darkGreenBright",
199
+ "light": "lightGreen"
200
+ },
201
+ "markdownCodeBlock": {
202
+ "dark": "darkFg1",
203
+ "light": "lightFg1"
204
+ },
205
+ "syntaxComment": {
206
+ "dark": "darkGray",
207
+ "light": "lightGray"
208
+ },
209
+ "syntaxKeyword": {
210
+ "dark": "darkRedBright",
211
+ "light": "lightRed"
212
+ },
213
+ "syntaxFunction": {
214
+ "dark": "darkGreenBright",
215
+ "light": "lightGreen"
216
+ },
217
+ "syntaxVariable": {
218
+ "dark": "darkBlueBright",
219
+ "light": "lightBlue"
220
+ },
221
+ "syntaxString": {
222
+ "dark": "darkYellowBright",
223
+ "light": "lightYellow"
224
+ },
225
+ "syntaxNumber": {
226
+ "dark": "darkPurpleBright",
227
+ "light": "lightPurple"
228
+ },
229
+ "syntaxType": {
230
+ "dark": "darkAquaBright",
231
+ "light": "lightAqua"
232
+ },
233
+ "syntaxOperator": {
234
+ "dark": "darkOrangeBright",
235
+ "light": "lightOrange"
236
+ },
237
+ "syntaxPunctuation": {
238
+ "dark": "darkFg1",
239
+ "light": "lightFg1"
240
+ }
241
+ }
242
+ }