@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.
- package/package.json +40 -5
- package/src/cli/commands/log.js +113 -0
- package/src/cli/commands/overlay.js +253 -0
- package/src/cli/commands/sys.js +88 -16
- package/src/cli/index.js +23 -1
- package/src/cli/terminal-chat/renderer.js +71 -56
- package/src/cli-ts/commands/agent.ts +173 -0
- package/src/cli-ts/commands/chat.ts +119 -0
- package/src/cli-ts/commands/daemon.ts +112 -0
- package/src/cli-ts/commands/exec.ts +109 -0
- package/src/cli-ts/commands/mcp.ts +235 -0
- package/src/cli-ts/commands/session.ts +224 -0
- package/src/cli-ts/commands/status.ts +61 -0
- package/src/cli-ts/http.ts +36 -0
- package/src/cli-ts/index.ts +73 -0
- package/src/cli-ts/ui.ts +107 -0
- package/src/core/logging.js +81 -0
- package/src/daemon/api.js +58 -0
- package/src/daemon/engines/anthropic.js +60 -1
- package/src/daemon/engines/index.js +2 -1
- package/src/daemon/engines/ollama.js +70 -3
- package/src/daemon/index.js +58 -0
- package/src/daemon/overlay-ws.js +40 -0
- package/src/daemon/plugins/index.js +2 -1
- package/src/daemon/plugins/overlay.js +177 -0
- package/src/daemon/plugins/telegram.js +15 -3
- package/src/daemon/super-agent.js +102 -19
- package/src/daemon/transcription.js +262 -59
- package/src/daemon/whisper-server.py +57 -6
- package/src/overlay/index.html +44 -0
- package/src/overlay/main.js +480 -0
- package/src/overlay/package.json +3 -0
- package/src/overlay/preload.js +34 -0
- package/src/overlay/renderer.js +371 -0
- package/src/overlay/style.css +250 -0
- package/src/tui/_shims/cli-error.ts +6 -0
- package/src/tui/_shims/cli-logo.ts +18 -0
- package/src/tui/_shims/cli-ui.ts +1 -0
- package/src/tui/_shims/config-console-state.ts +7 -0
- package/src/tui/_shims/core-any.ts +30 -0
- package/src/tui/_shims/core-binary.ts +13 -0
- package/src/tui/_shims/core-flag.ts +3 -0
- package/src/tui/_shims/core-log.ts +14 -0
- package/src/tui/_shims/lsp-language.ts +1 -0
- package/src/tui/_shims/opencode-any.ts +135 -0
- package/src/tui/_shims/opencode-sdk-v2.ts +48 -0
- package/src/tui/_shims/plugin-tui.ts +13 -0
- package/src/tui/_shims/provider-provider.ts +10 -0
- package/src/tui/_shims/session-retry.ts +1 -0
- package/src/tui/_shims/session-schema.ts +15 -0
- package/src/tui/_shims/session-session.ts +3 -0
- package/src/tui/_shims/snapshot.ts +4 -0
- package/src/tui/_shims/tool-any.ts +18 -0
- package/src/tui/_shims/util-error.ts +7 -0
- package/src/tui/_shims/util-filesystem.ts +79 -0
- package/src/tui/_shims/util-format.ts +7 -0
- package/src/tui/_shims/util-iife.ts +3 -0
- package/src/tui/_shims/util-locale.ts +10 -0
- package/src/tui/_shims/util-process.ts +38 -0
- package/src/tui/app.tsx +783 -0
- package/src/tui/asset/charge.wav +0 -0
- package/src/tui/asset/pulse-a.wav +0 -0
- package/src/tui/asset/pulse-b.wav +0 -0
- package/src/tui/asset/pulse-c.wav +0 -0
- package/src/tui/attach.ts +100 -0
- package/src/tui/component/bg-pulse-render.ts +436 -0
- package/src/tui/component/bg-pulse.tsx +99 -0
- package/src/tui/component/border.tsx +21 -0
- package/src/tui/component/dialog-agent.tsx +31 -0
- package/src/tui/component/dialog-console-org.tsx +103 -0
- package/src/tui/component/dialog-mcp.tsx +85 -0
- package/src/tui/component/dialog-model.tsx +175 -0
- package/src/tui/component/dialog-provider.tsx +456 -0
- package/src/tui/component/dialog-retry-action.tsx +160 -0
- package/src/tui/component/dialog-session-delete-failed.tsx +99 -0
- package/src/tui/component/dialog-session-list.tsx +323 -0
- package/src/tui/component/dialog-session-rename.tsx +31 -0
- package/src/tui/component/dialog-skill.tsx +36 -0
- package/src/tui/component/dialog-stash.tsx +87 -0
- package/src/tui/component/dialog-status.tsx +168 -0
- package/src/tui/component/dialog-tag.tsx +44 -0
- package/src/tui/component/dialog-theme-list.tsx +50 -0
- package/src/tui/component/dialog-variant.tsx +39 -0
- package/src/tui/component/dialog-workspace-create.tsx +302 -0
- package/src/tui/component/dialog-workspace-file-changes.tsx +138 -0
- package/src/tui/component/dialog-workspace-unavailable.tsx +69 -0
- package/src/tui/component/error-component.tsx +92 -0
- package/src/tui/component/logo.tsx +896 -0
- package/src/tui/component/plugin-route-missing.tsx +14 -0
- package/src/tui/component/prompt/autocomplete.tsx +869 -0
- package/src/tui/component/prompt/cwd.ts +0 -0
- package/src/tui/component/prompt/frecency.tsx +90 -0
- package/src/tui/component/prompt/history.tsx +108 -0
- package/src/tui/component/prompt/index.tsx +1809 -0
- package/src/tui/component/prompt/part.ts +16 -0
- package/src/tui/component/prompt/stash.tsx +101 -0
- package/src/tui/component/prompt/traits.ts +35 -0
- package/src/tui/component/spinner.tsx +24 -0
- package/src/tui/component/startup-loading.tsx +63 -0
- package/src/tui/component/todo-item.tsx +32 -0
- package/src/tui/component/use-connected.tsx +9 -0
- package/src/tui/component/workspace-label.tsx +19 -0
- package/src/tui/config/cwd.ts +5 -0
- package/src/tui/config/keybind.ts +432 -0
- package/src/tui/config/tui-migrate.ts +154 -0
- package/src/tui/config/tui-schema.ts +34 -0
- package/src/tui/config/tui.ts +46 -0
- package/src/tui/context/aggregate-failures.ts +34 -0
- package/src/tui/context/args.tsx +15 -0
- package/src/tui/context/command-palette.tsx +163 -0
- package/src/tui/context/directory.ts +15 -0
- package/src/tui/context/editor-zed.ts +283 -0
- package/src/tui/context/editor.ts +468 -0
- package/src/tui/context/event-apx.ts +22 -0
- package/src/tui/context/event.ts +6 -0
- package/src/tui/context/exit.tsx +60 -0
- package/src/tui/context/helper.tsx +25 -0
- package/src/tui/context/kv.tsx +81 -0
- package/src/tui/context/local.tsx +608 -0
- package/src/tui/context/path-format.tsx +39 -0
- package/src/tui/context/project-apx.tsx +48 -0
- package/src/tui/context/project.tsx +7 -0
- package/src/tui/context/prompt.tsx +18 -0
- package/src/tui/context/route.tsx +52 -0
- package/src/tui/context/sdk-apx.tsx +185 -0
- package/src/tui/context/sdk.tsx +6 -0
- package/src/tui/context/sync-apx.tsx +178 -0
- package/src/tui/context/sync-v2.tsx +16 -0
- package/src/tui/context/sync.tsx +118 -0
- package/src/tui/context/theme/aura.json +69 -0
- package/src/tui/context/theme/ayu.json +80 -0
- package/src/tui/context/theme/carbonfox.json +248 -0
- package/src/tui/context/theme/catppuccin-frappe.json +230 -0
- package/src/tui/context/theme/catppuccin-macchiato.json +230 -0
- package/src/tui/context/theme/catppuccin.json +112 -0
- package/src/tui/context/theme/cobalt2.json +225 -0
- package/src/tui/context/theme/cursor.json +249 -0
- package/src/tui/context/theme/dracula.json +219 -0
- package/src/tui/context/theme/everforest.json +241 -0
- package/src/tui/context/theme/flexoki.json +237 -0
- package/src/tui/context/theme/github.json +233 -0
- package/src/tui/context/theme/gruvbox.json +242 -0
- package/src/tui/context/theme/kanagawa.json +77 -0
- package/src/tui/context/theme/lucent-orng.json +234 -0
- package/src/tui/context/theme/material.json +235 -0
- package/src/tui/context/theme/matrix.json +77 -0
- package/src/tui/context/theme/mercury.json +252 -0
- package/src/tui/context/theme/monokai.json +221 -0
- package/src/tui/context/theme/nightowl.json +221 -0
- package/src/tui/context/theme/nord.json +223 -0
- package/src/tui/context/theme/one-dark.json +84 -0
- package/src/tui/context/theme/opencode.json +245 -0
- package/src/tui/context/theme/orng.json +249 -0
- package/src/tui/context/theme/osaka-jade.json +93 -0
- package/src/tui/context/theme/palenight.json +222 -0
- package/src/tui/context/theme/rosepine.json +234 -0
- package/src/tui/context/theme/solarized.json +223 -0
- package/src/tui/context/theme/synthwave84.json +226 -0
- package/src/tui/context/theme/tokyonight.json +243 -0
- package/src/tui/context/theme/vercel.json +245 -0
- package/src/tui/context/theme/vesper.json +218 -0
- package/src/tui/context/theme/zenburn.json +223 -0
- package/src/tui/context/theme.tsx +1247 -0
- package/src/tui/context/tui-config.tsx +9 -0
- package/src/tui/event.ts +16 -0
- package/src/tui/feature-plugins/home/footer.tsx +94 -0
- package/src/tui/feature-plugins/home/tips-view.tsx +166 -0
- package/src/tui/feature-plugins/home/tips.tsx +59 -0
- package/src/tui/feature-plugins/sidebar/context.tsx +65 -0
- package/src/tui/feature-plugins/sidebar/files.tsx +63 -0
- package/src/tui/feature-plugins/sidebar/footer.tsx +94 -0
- package/src/tui/feature-plugins/sidebar/lsp.tsx +65 -0
- package/src/tui/feature-plugins/sidebar/mcp.tsx +97 -0
- package/src/tui/feature-plugins/sidebar/todo.tsx +49 -0
- package/src/tui/feature-plugins/system/plugins.tsx +269 -0
- package/src/tui/feature-plugins/system/session-v2.tsx +1143 -0
- package/src/tui/feature-plugins/system/which-key.tsx +608 -0
- package/src/tui/keymap.tsx +166 -0
- package/src/tui/layer.ts +6 -0
- package/src/tui/plugin/api.tsx +381 -0
- package/src/tui/plugin/command-shim.ts +109 -0
- package/src/tui/plugin/internal.ts +33 -0
- package/src/tui/plugin/runtime.ts +1069 -0
- package/src/tui/plugin/slots.tsx +60 -0
- package/src/tui/routes/home.tsx +96 -0
- package/src/tui/routes/session/dialog-fork-from-timeline.tsx +76 -0
- package/src/tui/routes/session/dialog-message.tsx +108 -0
- package/src/tui/routes/session/dialog-subagent.tsx +26 -0
- package/src/tui/routes/session/dialog-timeline.tsx +47 -0
- package/src/tui/routes/session/footer.tsx +91 -0
- package/src/tui/routes/session/index.tsx +188 -0
- package/src/tui/routes/session/permission.tsx +722 -0
- package/src/tui/routes/session/question.tsx +490 -0
- package/src/tui/routes/session/sidebar.tsx +102 -0
- package/src/tui/routes/session/subagent-footer.tsx +133 -0
- package/src/tui/run.ts +84 -0
- package/src/tui/thread.ts +261 -0
- package/src/tui/tsconfig.json +40 -0
- package/src/tui/ui/dialog-alert.tsx +66 -0
- package/src/tui/ui/dialog-confirm.tsx +108 -0
- package/src/tui/ui/dialog-export-options.tsx +217 -0
- package/src/tui/ui/dialog-help.tsx +40 -0
- package/src/tui/ui/dialog-prompt.tsx +101 -0
- package/src/tui/ui/dialog-select.tsx +553 -0
- package/src/tui/ui/dialog.tsx +211 -0
- package/src/tui/ui/link.tsx +34 -0
- package/src/tui/ui/spinner.ts +368 -0
- package/src/tui/ui/toast.tsx +111 -0
- package/src/tui/util/clipboard.ts +217 -0
- package/src/tui/util/editor.ts +37 -0
- package/src/tui/util/model.ts +23 -0
- package/src/tui/util/provider-origin.ts +7 -0
- package/src/tui/util/revert-diff.ts +18 -0
- package/src/tui/util/scroll.ts +25 -0
- package/src/tui/util/selection.ts +65 -0
- package/src/tui/util/signal.ts +41 -0
- package/src/tui/util/sound.ts +156 -0
- package/src/tui/util/transcript.ts +112 -0
- package/src/tui/validate-session.ts +29 -0
- package/src/tui/win32.ts +130 -0
- package/src/tui/worker.ts +104 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"darkBg": "#0B0E14",
|
|
5
|
+
"darkBgAlt": "#0D1017",
|
|
6
|
+
"darkLine": "#11151C",
|
|
7
|
+
"darkPanel": "#0F131A",
|
|
8
|
+
"darkFg": "#BFBDB6",
|
|
9
|
+
"darkFgMuted": "#565B66",
|
|
10
|
+
"darkGutter": "#6C7380",
|
|
11
|
+
"darkTag": "#39BAE6",
|
|
12
|
+
"darkFunc": "#FFB454",
|
|
13
|
+
"darkEntity": "#59C2FF",
|
|
14
|
+
"darkString": "#AAD94C",
|
|
15
|
+
"darkRegexp": "#95E6CB",
|
|
16
|
+
"darkMarkup": "#F07178",
|
|
17
|
+
"darkKeyword": "#FF8F40",
|
|
18
|
+
"darkSpecial": "#E6B673",
|
|
19
|
+
"darkComment": "#ACB6BF",
|
|
20
|
+
"darkConstant": "#D2A6FF",
|
|
21
|
+
"darkOperator": "#F29668",
|
|
22
|
+
"darkAdded": "#7FD962",
|
|
23
|
+
"darkRemoved": "#F26D78",
|
|
24
|
+
"darkAccent": "#E6B450",
|
|
25
|
+
"darkError": "#D95757",
|
|
26
|
+
"darkIndentActive": "#6C7380"
|
|
27
|
+
},
|
|
28
|
+
"theme": {
|
|
29
|
+
"primary": "darkEntity",
|
|
30
|
+
"secondary": "darkConstant",
|
|
31
|
+
"accent": "darkAccent",
|
|
32
|
+
"error": "darkError",
|
|
33
|
+
"warning": "darkSpecial",
|
|
34
|
+
"success": "darkAdded",
|
|
35
|
+
"info": "darkTag",
|
|
36
|
+
"text": "darkFg",
|
|
37
|
+
"textMuted": "darkFgMuted",
|
|
38
|
+
"background": "darkBg",
|
|
39
|
+
"backgroundPanel": "darkPanel",
|
|
40
|
+
"backgroundElement": "darkBgAlt",
|
|
41
|
+
"border": "darkGutter",
|
|
42
|
+
"borderActive": "darkIndentActive",
|
|
43
|
+
"borderSubtle": "darkLine",
|
|
44
|
+
"diffAdded": "darkAdded",
|
|
45
|
+
"diffRemoved": "darkRemoved",
|
|
46
|
+
"diffContext": "darkComment",
|
|
47
|
+
"diffHunkHeader": "darkComment",
|
|
48
|
+
"diffHighlightAdded": "darkString",
|
|
49
|
+
"diffHighlightRemoved": "darkMarkup",
|
|
50
|
+
"diffAddedBg": "#20303b",
|
|
51
|
+
"diffRemovedBg": "#37222c",
|
|
52
|
+
"diffContextBg": "darkPanel",
|
|
53
|
+
"diffLineNumber": "diffContext",
|
|
54
|
+
"diffAddedLineNumberBg": "#1b2b34",
|
|
55
|
+
"diffRemovedLineNumberBg": "#2d1f26",
|
|
56
|
+
"markdownText": "darkFg",
|
|
57
|
+
"markdownHeading": "darkConstant",
|
|
58
|
+
"markdownLink": "darkEntity",
|
|
59
|
+
"markdownLinkText": "darkTag",
|
|
60
|
+
"markdownCode": "darkString",
|
|
61
|
+
"markdownBlockQuote": "darkSpecial",
|
|
62
|
+
"markdownEmph": "darkSpecial",
|
|
63
|
+
"markdownStrong": "darkFunc",
|
|
64
|
+
"markdownHorizontalRule": "darkFgMuted",
|
|
65
|
+
"markdownListItem": "darkEntity",
|
|
66
|
+
"markdownListEnumeration": "darkTag",
|
|
67
|
+
"markdownImage": "darkEntity",
|
|
68
|
+
"markdownImageText": "darkTag",
|
|
69
|
+
"markdownCodeBlock": "darkFg",
|
|
70
|
+
"syntaxComment": "darkComment",
|
|
71
|
+
"syntaxKeyword": "darkKeyword",
|
|
72
|
+
"syntaxFunction": "darkFunc",
|
|
73
|
+
"syntaxVariable": "darkEntity",
|
|
74
|
+
"syntaxString": "darkString",
|
|
75
|
+
"syntaxNumber": "darkConstant",
|
|
76
|
+
"syntaxType": "darkSpecial",
|
|
77
|
+
"syntaxOperator": "darkOperator",
|
|
78
|
+
"syntaxPunctuation": "darkFg"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"bg0": "#0d0d0d",
|
|
5
|
+
"bg1": "#161616",
|
|
6
|
+
"bg1a": "#1a1a1a",
|
|
7
|
+
"bg2": "#1e1e1e",
|
|
8
|
+
"bg3": "#262626",
|
|
9
|
+
"bg4": "#303030",
|
|
10
|
+
"fg0": "#ffffff",
|
|
11
|
+
"fg1": "#f2f4f8",
|
|
12
|
+
"fg2": "#a9afbc",
|
|
13
|
+
"fg3": "#7d848f",
|
|
14
|
+
"lbg0": "#ffffff",
|
|
15
|
+
"lbg1": "#f4f4f4",
|
|
16
|
+
"lbg2": "#e8e8e8",
|
|
17
|
+
"lbg3": "#dcdcdc",
|
|
18
|
+
"lfg0": "#000000",
|
|
19
|
+
"lfg1": "#161616",
|
|
20
|
+
"lfg2": "#525252",
|
|
21
|
+
"lfg3": "#6f6f6f",
|
|
22
|
+
"red": "#ee5396",
|
|
23
|
+
"green": "#25be6a",
|
|
24
|
+
"yellow": "#08bdba",
|
|
25
|
+
"blue": "#78a9ff",
|
|
26
|
+
"magenta": "#be95ff",
|
|
27
|
+
"cyan": "#33b1ff",
|
|
28
|
+
"white": "#dfdfe0",
|
|
29
|
+
"orange": "#3ddbd9",
|
|
30
|
+
"pink": "#ff7eb6",
|
|
31
|
+
"blueBright": "#8cb6ff",
|
|
32
|
+
"cyanBright": "#52c7ff",
|
|
33
|
+
"greenBright": "#46c880",
|
|
34
|
+
"redLight": "#9f1853",
|
|
35
|
+
"greenLight": "#198038",
|
|
36
|
+
"yellowLight": "#007d79",
|
|
37
|
+
"blueLight": "#0043ce",
|
|
38
|
+
"magentaLight": "#6929c4",
|
|
39
|
+
"cyanLight": "#0072c3",
|
|
40
|
+
"warning": "#f1c21b",
|
|
41
|
+
"diffGreen": "#50fa7b",
|
|
42
|
+
"diffRed": "#ff6b6b",
|
|
43
|
+
"diffGreenBg": "#0f2418",
|
|
44
|
+
"diffRedBg": "#2a1216"
|
|
45
|
+
},
|
|
46
|
+
"theme": {
|
|
47
|
+
"primary": {
|
|
48
|
+
"dark": "cyan",
|
|
49
|
+
"light": "blueLight"
|
|
50
|
+
},
|
|
51
|
+
"secondary": {
|
|
52
|
+
"dark": "blue",
|
|
53
|
+
"light": "blueLight"
|
|
54
|
+
},
|
|
55
|
+
"accent": {
|
|
56
|
+
"dark": "pink",
|
|
57
|
+
"light": "redLight"
|
|
58
|
+
},
|
|
59
|
+
"error": {
|
|
60
|
+
"dark": "red",
|
|
61
|
+
"light": "redLight"
|
|
62
|
+
},
|
|
63
|
+
"warning": {
|
|
64
|
+
"dark": "warning",
|
|
65
|
+
"light": "yellowLight"
|
|
66
|
+
},
|
|
67
|
+
"success": {
|
|
68
|
+
"dark": "green",
|
|
69
|
+
"light": "greenLight"
|
|
70
|
+
},
|
|
71
|
+
"info": {
|
|
72
|
+
"dark": "blue",
|
|
73
|
+
"light": "blueLight"
|
|
74
|
+
},
|
|
75
|
+
"text": {
|
|
76
|
+
"dark": "fg1",
|
|
77
|
+
"light": "lfg1"
|
|
78
|
+
},
|
|
79
|
+
"textMuted": {
|
|
80
|
+
"dark": "fg3",
|
|
81
|
+
"light": "lfg3"
|
|
82
|
+
},
|
|
83
|
+
"background": {
|
|
84
|
+
"dark": "bg1",
|
|
85
|
+
"light": "lbg0"
|
|
86
|
+
},
|
|
87
|
+
"backgroundPanel": {
|
|
88
|
+
"dark": "bg1a",
|
|
89
|
+
"light": "lbg1"
|
|
90
|
+
},
|
|
91
|
+
"backgroundElement": {
|
|
92
|
+
"dark": "bg2",
|
|
93
|
+
"light": "lbg1"
|
|
94
|
+
},
|
|
95
|
+
"border": {
|
|
96
|
+
"dark": "bg4",
|
|
97
|
+
"light": "lbg3"
|
|
98
|
+
},
|
|
99
|
+
"borderActive": {
|
|
100
|
+
"dark": "cyan",
|
|
101
|
+
"light": "blueLight"
|
|
102
|
+
},
|
|
103
|
+
"borderSubtle": {
|
|
104
|
+
"dark": "bg3",
|
|
105
|
+
"light": "lbg2"
|
|
106
|
+
},
|
|
107
|
+
"diffAdded": {
|
|
108
|
+
"dark": "diffGreen",
|
|
109
|
+
"light": "greenLight"
|
|
110
|
+
},
|
|
111
|
+
"diffRemoved": {
|
|
112
|
+
"dark": "diffRed",
|
|
113
|
+
"light": "redLight"
|
|
114
|
+
},
|
|
115
|
+
"diffContext": {
|
|
116
|
+
"dark": "fg3",
|
|
117
|
+
"light": "lfg3"
|
|
118
|
+
},
|
|
119
|
+
"diffHunkHeader": {
|
|
120
|
+
"dark": "blue",
|
|
121
|
+
"light": "blueLight"
|
|
122
|
+
},
|
|
123
|
+
"diffHighlightAdded": {
|
|
124
|
+
"dark": "#7dffaa",
|
|
125
|
+
"light": "greenLight"
|
|
126
|
+
},
|
|
127
|
+
"diffHighlightRemoved": {
|
|
128
|
+
"dark": "#ff9999",
|
|
129
|
+
"light": "redLight"
|
|
130
|
+
},
|
|
131
|
+
"diffAddedBg": {
|
|
132
|
+
"dark": "diffGreenBg",
|
|
133
|
+
"light": "#defbe6"
|
|
134
|
+
},
|
|
135
|
+
"diffRemovedBg": {
|
|
136
|
+
"dark": "diffRedBg",
|
|
137
|
+
"light": "#fff1f1"
|
|
138
|
+
},
|
|
139
|
+
"diffContextBg": {
|
|
140
|
+
"dark": "bg1",
|
|
141
|
+
"light": "lbg1"
|
|
142
|
+
},
|
|
143
|
+
"diffLineNumber": {
|
|
144
|
+
"dark": "#808792",
|
|
145
|
+
"light": "textMuted"
|
|
146
|
+
},
|
|
147
|
+
"diffAddedLineNumberBg": {
|
|
148
|
+
"dark": "diffGreenBg",
|
|
149
|
+
"light": "#defbe6"
|
|
150
|
+
},
|
|
151
|
+
"diffRemovedLineNumberBg": {
|
|
152
|
+
"dark": "diffRedBg",
|
|
153
|
+
"light": "#fff1f1"
|
|
154
|
+
},
|
|
155
|
+
"markdownText": {
|
|
156
|
+
"dark": "fg1",
|
|
157
|
+
"light": "lfg1"
|
|
158
|
+
},
|
|
159
|
+
"markdownHeading": {
|
|
160
|
+
"dark": "blueBright",
|
|
161
|
+
"light": "blueLight"
|
|
162
|
+
},
|
|
163
|
+
"markdownLink": {
|
|
164
|
+
"dark": "blue",
|
|
165
|
+
"light": "blueLight"
|
|
166
|
+
},
|
|
167
|
+
"markdownLinkText": {
|
|
168
|
+
"dark": "cyan",
|
|
169
|
+
"light": "cyanLight"
|
|
170
|
+
},
|
|
171
|
+
"markdownCode": {
|
|
172
|
+
"dark": "green",
|
|
173
|
+
"light": "greenLight"
|
|
174
|
+
},
|
|
175
|
+
"markdownBlockQuote": {
|
|
176
|
+
"dark": "fg3",
|
|
177
|
+
"light": "lfg3"
|
|
178
|
+
},
|
|
179
|
+
"markdownEmph": {
|
|
180
|
+
"dark": "magenta",
|
|
181
|
+
"light": "magentaLight"
|
|
182
|
+
},
|
|
183
|
+
"markdownStrong": {
|
|
184
|
+
"dark": "fg0",
|
|
185
|
+
"light": "lfg0"
|
|
186
|
+
},
|
|
187
|
+
"markdownHorizontalRule": {
|
|
188
|
+
"dark": "bg4",
|
|
189
|
+
"light": "lbg3"
|
|
190
|
+
},
|
|
191
|
+
"markdownListItem": {
|
|
192
|
+
"dark": "cyan",
|
|
193
|
+
"light": "cyanLight"
|
|
194
|
+
},
|
|
195
|
+
"markdownListEnumeration": {
|
|
196
|
+
"dark": "cyan",
|
|
197
|
+
"light": "cyanLight"
|
|
198
|
+
},
|
|
199
|
+
"markdownImage": {
|
|
200
|
+
"dark": "blue",
|
|
201
|
+
"light": "blueLight"
|
|
202
|
+
},
|
|
203
|
+
"markdownImageText": {
|
|
204
|
+
"dark": "cyan",
|
|
205
|
+
"light": "cyanLight"
|
|
206
|
+
},
|
|
207
|
+
"markdownCodeBlock": {
|
|
208
|
+
"dark": "fg2",
|
|
209
|
+
"light": "lfg2"
|
|
210
|
+
},
|
|
211
|
+
"syntaxComment": {
|
|
212
|
+
"dark": "fg3",
|
|
213
|
+
"light": "lfg3"
|
|
214
|
+
},
|
|
215
|
+
"syntaxKeyword": {
|
|
216
|
+
"dark": "magenta",
|
|
217
|
+
"light": "magentaLight"
|
|
218
|
+
},
|
|
219
|
+
"syntaxFunction": {
|
|
220
|
+
"dark": "blueBright",
|
|
221
|
+
"light": "blueLight"
|
|
222
|
+
},
|
|
223
|
+
"syntaxVariable": {
|
|
224
|
+
"dark": "white",
|
|
225
|
+
"light": "lfg1"
|
|
226
|
+
},
|
|
227
|
+
"syntaxString": {
|
|
228
|
+
"dark": "green",
|
|
229
|
+
"light": "greenLight"
|
|
230
|
+
},
|
|
231
|
+
"syntaxNumber": {
|
|
232
|
+
"dark": "orange",
|
|
233
|
+
"light": "yellowLight"
|
|
234
|
+
},
|
|
235
|
+
"syntaxType": {
|
|
236
|
+
"dark": "yellow",
|
|
237
|
+
"light": "yellowLight"
|
|
238
|
+
},
|
|
239
|
+
"syntaxOperator": {
|
|
240
|
+
"dark": "fg2",
|
|
241
|
+
"light": "lfg2"
|
|
242
|
+
},
|
|
243
|
+
"syntaxPunctuation": {
|
|
244
|
+
"dark": "fg2",
|
|
245
|
+
"light": "lfg1"
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"frappeRosewater": "#f2d5cf",
|
|
5
|
+
"frappeFlamingo": "#eebebe",
|
|
6
|
+
"frappePink": "#f4b8e4",
|
|
7
|
+
"frappeMauve": "#ca9ee6",
|
|
8
|
+
"frappeRed": "#e78284",
|
|
9
|
+
"frappeMaroon": "#ea999c",
|
|
10
|
+
"frappePeach": "#ef9f76",
|
|
11
|
+
"frappeYellow": "#e5c890",
|
|
12
|
+
"frappeGreen": "#a6d189",
|
|
13
|
+
"frappeTeal": "#81c8be",
|
|
14
|
+
"frappeSky": "#99d1db",
|
|
15
|
+
"frappeSapphire": "#85c1dc",
|
|
16
|
+
"frappeBlue": "#8da4e2",
|
|
17
|
+
"frappeLavender": "#babbf1",
|
|
18
|
+
"frappeText": "#c6d0f5",
|
|
19
|
+
"frappeSubtext1": "#b5bfe2",
|
|
20
|
+
"frappeSubtext0": "#a5adce",
|
|
21
|
+
"frappeOverlay2": "#949cb8",
|
|
22
|
+
"frappeOverlay1": "#838ba7",
|
|
23
|
+
"frappeOverlay0": "#737994",
|
|
24
|
+
"frappeSurface2": "#626880",
|
|
25
|
+
"frappeSurface1": "#51576d",
|
|
26
|
+
"frappeSurface0": "#414559",
|
|
27
|
+
"frappeBase": "#303446",
|
|
28
|
+
"frappeMantle": "#292c3c",
|
|
29
|
+
"frappeCrust": "#232634"
|
|
30
|
+
},
|
|
31
|
+
"theme": {
|
|
32
|
+
"primary": {
|
|
33
|
+
"dark": "frappeBlue",
|
|
34
|
+
"light": "frappeBlue"
|
|
35
|
+
},
|
|
36
|
+
"secondary": {
|
|
37
|
+
"dark": "frappeMauve",
|
|
38
|
+
"light": "frappeMauve"
|
|
39
|
+
},
|
|
40
|
+
"accent": {
|
|
41
|
+
"dark": "frappePink",
|
|
42
|
+
"light": "frappePink"
|
|
43
|
+
},
|
|
44
|
+
"error": {
|
|
45
|
+
"dark": "frappeRed",
|
|
46
|
+
"light": "frappeRed"
|
|
47
|
+
},
|
|
48
|
+
"warning": {
|
|
49
|
+
"dark": "frappeYellow",
|
|
50
|
+
"light": "frappeYellow"
|
|
51
|
+
},
|
|
52
|
+
"success": {
|
|
53
|
+
"dark": "frappeGreen",
|
|
54
|
+
"light": "frappeGreen"
|
|
55
|
+
},
|
|
56
|
+
"info": {
|
|
57
|
+
"dark": "frappeTeal",
|
|
58
|
+
"light": "frappeTeal"
|
|
59
|
+
},
|
|
60
|
+
"text": {
|
|
61
|
+
"dark": "frappeText",
|
|
62
|
+
"light": "frappeText"
|
|
63
|
+
},
|
|
64
|
+
"textMuted": {
|
|
65
|
+
"dark": "frappeOverlay2",
|
|
66
|
+
"light": "frappeOverlay2"
|
|
67
|
+
},
|
|
68
|
+
"background": {
|
|
69
|
+
"dark": "frappeBase",
|
|
70
|
+
"light": "frappeBase"
|
|
71
|
+
},
|
|
72
|
+
"backgroundPanel": {
|
|
73
|
+
"dark": "frappeMantle",
|
|
74
|
+
"light": "frappeMantle"
|
|
75
|
+
},
|
|
76
|
+
"backgroundElement": {
|
|
77
|
+
"dark": "frappeCrust",
|
|
78
|
+
"light": "frappeCrust"
|
|
79
|
+
},
|
|
80
|
+
"border": {
|
|
81
|
+
"dark": "frappeSurface0",
|
|
82
|
+
"light": "frappeSurface0"
|
|
83
|
+
},
|
|
84
|
+
"borderActive": {
|
|
85
|
+
"dark": "frappeSurface1",
|
|
86
|
+
"light": "frappeSurface1"
|
|
87
|
+
},
|
|
88
|
+
"borderSubtle": {
|
|
89
|
+
"dark": "frappeSurface2",
|
|
90
|
+
"light": "frappeSurface2"
|
|
91
|
+
},
|
|
92
|
+
"diffAdded": {
|
|
93
|
+
"dark": "frappeGreen",
|
|
94
|
+
"light": "frappeGreen"
|
|
95
|
+
},
|
|
96
|
+
"diffRemoved": {
|
|
97
|
+
"dark": "frappeRed",
|
|
98
|
+
"light": "frappeRed"
|
|
99
|
+
},
|
|
100
|
+
"diffContext": {
|
|
101
|
+
"dark": "frappeOverlay2",
|
|
102
|
+
"light": "frappeOverlay2"
|
|
103
|
+
},
|
|
104
|
+
"diffHunkHeader": {
|
|
105
|
+
"dark": "frappePeach",
|
|
106
|
+
"light": "frappePeach"
|
|
107
|
+
},
|
|
108
|
+
"diffHighlightAdded": {
|
|
109
|
+
"dark": "frappeGreen",
|
|
110
|
+
"light": "frappeGreen"
|
|
111
|
+
},
|
|
112
|
+
"diffHighlightRemoved": {
|
|
113
|
+
"dark": "frappeRed",
|
|
114
|
+
"light": "frappeRed"
|
|
115
|
+
},
|
|
116
|
+
"diffAddedBg": {
|
|
117
|
+
"dark": "#29342b",
|
|
118
|
+
"light": "#29342b"
|
|
119
|
+
},
|
|
120
|
+
"diffRemovedBg": {
|
|
121
|
+
"dark": "#3a2a31",
|
|
122
|
+
"light": "#3a2a31"
|
|
123
|
+
},
|
|
124
|
+
"diffContextBg": {
|
|
125
|
+
"dark": "frappeMantle",
|
|
126
|
+
"light": "frappeMantle"
|
|
127
|
+
},
|
|
128
|
+
"diffLineNumber": "textMuted",
|
|
129
|
+
"diffAddedLineNumberBg": {
|
|
130
|
+
"dark": "#223025",
|
|
131
|
+
"light": "#223025"
|
|
132
|
+
},
|
|
133
|
+
"diffRemovedLineNumberBg": {
|
|
134
|
+
"dark": "#2f242b",
|
|
135
|
+
"light": "#2f242b"
|
|
136
|
+
},
|
|
137
|
+
"markdownText": {
|
|
138
|
+
"dark": "frappeText",
|
|
139
|
+
"light": "frappeText"
|
|
140
|
+
},
|
|
141
|
+
"markdownHeading": {
|
|
142
|
+
"dark": "frappeMauve",
|
|
143
|
+
"light": "frappeMauve"
|
|
144
|
+
},
|
|
145
|
+
"markdownLink": {
|
|
146
|
+
"dark": "frappeBlue",
|
|
147
|
+
"light": "frappeBlue"
|
|
148
|
+
},
|
|
149
|
+
"markdownLinkText": {
|
|
150
|
+
"dark": "frappeSky",
|
|
151
|
+
"light": "frappeSky"
|
|
152
|
+
},
|
|
153
|
+
"markdownCode": {
|
|
154
|
+
"dark": "frappeGreen",
|
|
155
|
+
"light": "frappeGreen"
|
|
156
|
+
},
|
|
157
|
+
"markdownBlockQuote": {
|
|
158
|
+
"dark": "frappeYellow",
|
|
159
|
+
"light": "frappeYellow"
|
|
160
|
+
},
|
|
161
|
+
"markdownEmph": {
|
|
162
|
+
"dark": "frappeYellow",
|
|
163
|
+
"light": "frappeYellow"
|
|
164
|
+
},
|
|
165
|
+
"markdownStrong": {
|
|
166
|
+
"dark": "frappePeach",
|
|
167
|
+
"light": "frappePeach"
|
|
168
|
+
},
|
|
169
|
+
"markdownHorizontalRule": {
|
|
170
|
+
"dark": "frappeSubtext0",
|
|
171
|
+
"light": "frappeSubtext0"
|
|
172
|
+
},
|
|
173
|
+
"markdownListItem": {
|
|
174
|
+
"dark": "frappeBlue",
|
|
175
|
+
"light": "frappeBlue"
|
|
176
|
+
},
|
|
177
|
+
"markdownListEnumeration": {
|
|
178
|
+
"dark": "frappeSky",
|
|
179
|
+
"light": "frappeSky"
|
|
180
|
+
},
|
|
181
|
+
"markdownImage": {
|
|
182
|
+
"dark": "frappeBlue",
|
|
183
|
+
"light": "frappeBlue"
|
|
184
|
+
},
|
|
185
|
+
"markdownImageText": {
|
|
186
|
+
"dark": "frappeSky",
|
|
187
|
+
"light": "frappeSky"
|
|
188
|
+
},
|
|
189
|
+
"markdownCodeBlock": {
|
|
190
|
+
"dark": "frappeText",
|
|
191
|
+
"light": "frappeText"
|
|
192
|
+
},
|
|
193
|
+
"syntaxComment": {
|
|
194
|
+
"dark": "frappeOverlay2",
|
|
195
|
+
"light": "frappeOverlay2"
|
|
196
|
+
},
|
|
197
|
+
"syntaxKeyword": {
|
|
198
|
+
"dark": "frappeMauve",
|
|
199
|
+
"light": "frappeMauve"
|
|
200
|
+
},
|
|
201
|
+
"syntaxFunction": {
|
|
202
|
+
"dark": "frappeBlue",
|
|
203
|
+
"light": "frappeBlue"
|
|
204
|
+
},
|
|
205
|
+
"syntaxVariable": {
|
|
206
|
+
"dark": "frappeRed",
|
|
207
|
+
"light": "frappeRed"
|
|
208
|
+
},
|
|
209
|
+
"syntaxString": {
|
|
210
|
+
"dark": "frappeGreen",
|
|
211
|
+
"light": "frappeGreen"
|
|
212
|
+
},
|
|
213
|
+
"syntaxNumber": {
|
|
214
|
+
"dark": "frappePeach",
|
|
215
|
+
"light": "frappePeach"
|
|
216
|
+
},
|
|
217
|
+
"syntaxType": {
|
|
218
|
+
"dark": "frappeYellow",
|
|
219
|
+
"light": "frappeYellow"
|
|
220
|
+
},
|
|
221
|
+
"syntaxOperator": {
|
|
222
|
+
"dark": "frappeSky",
|
|
223
|
+
"light": "frappeSky"
|
|
224
|
+
},
|
|
225
|
+
"syntaxPunctuation": {
|
|
226
|
+
"dark": "frappeText",
|
|
227
|
+
"light": "frappeText"
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|