@oh-my-pi/pi-coding-agent 0.1.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/CHANGELOG.md +1629 -0
- package/README.md +1041 -0
- package/docs/compaction.md +403 -0
- package/docs/config-usage.md +113 -0
- package/docs/custom-tools.md +541 -0
- package/docs/extension-loading.md +1004 -0
- package/docs/hooks.md +867 -0
- package/docs/rpc.md +1040 -0
- package/docs/sdk.md +994 -0
- package/docs/session-tree-plan.md +441 -0
- package/docs/session.md +240 -0
- package/docs/skills.md +290 -0
- package/docs/theme.md +670 -0
- package/docs/tree.md +197 -0
- package/docs/tui.md +341 -0
- package/examples/README.md +21 -0
- package/examples/custom-tools/README.md +124 -0
- package/examples/custom-tools/hello/index.ts +20 -0
- package/examples/custom-tools/question/index.ts +84 -0
- package/examples/custom-tools/subagent/README.md +172 -0
- package/examples/custom-tools/subagent/agents/planner.md +37 -0
- package/examples/custom-tools/subagent/agents/scout.md +50 -0
- package/examples/custom-tools/subagent/agents/worker.md +24 -0
- package/examples/custom-tools/subagent/agents.ts +156 -0
- package/examples/custom-tools/subagent/commands/implement-and-review.md +10 -0
- package/examples/custom-tools/subagent/commands/implement.md +10 -0
- package/examples/custom-tools/subagent/commands/scout-and-plan.md +9 -0
- package/examples/custom-tools/subagent/index.ts +1002 -0
- package/examples/custom-tools/todo/index.ts +212 -0
- package/examples/hooks/README.md +56 -0
- package/examples/hooks/auto-commit-on-exit.ts +49 -0
- package/examples/hooks/confirm-destructive.ts +59 -0
- package/examples/hooks/custom-compaction.ts +116 -0
- package/examples/hooks/dirty-repo-guard.ts +52 -0
- package/examples/hooks/file-trigger.ts +41 -0
- package/examples/hooks/git-checkpoint.ts +53 -0
- package/examples/hooks/handoff.ts +150 -0
- package/examples/hooks/permission-gate.ts +34 -0
- package/examples/hooks/protected-paths.ts +30 -0
- package/examples/hooks/qna.ts +119 -0
- package/examples/hooks/snake.ts +343 -0
- package/examples/hooks/status-line.ts +40 -0
- package/examples/sdk/01-minimal.ts +22 -0
- package/examples/sdk/02-custom-model.ts +49 -0
- package/examples/sdk/03-custom-prompt.ts +44 -0
- package/examples/sdk/04-skills.ts +44 -0
- package/examples/sdk/05-tools.ts +90 -0
- package/examples/sdk/06-hooks.ts +61 -0
- package/examples/sdk/07-context-files.ts +36 -0
- package/examples/sdk/08-slash-commands.ts +42 -0
- package/examples/sdk/09-api-keys-and-oauth.ts +55 -0
- package/examples/sdk/10-settings.ts +38 -0
- package/examples/sdk/11-sessions.ts +48 -0
- package/examples/sdk/12-full-control.ts +95 -0
- package/examples/sdk/README.md +154 -0
- package/package.json +89 -0
- package/src/bun-imports.d.ts +16 -0
- package/src/capability/context-file.ts +40 -0
- package/src/capability/extension.ts +48 -0
- package/src/capability/hook.ts +40 -0
- package/src/capability/index.ts +616 -0
- package/src/capability/instruction.ts +37 -0
- package/src/capability/mcp.ts +52 -0
- package/src/capability/prompt.ts +35 -0
- package/src/capability/rule.ts +56 -0
- package/src/capability/settings.ts +35 -0
- package/src/capability/skill.ts +49 -0
- package/src/capability/slash-command.ts +40 -0
- package/src/capability/system-prompt.ts +35 -0
- package/src/capability/tool.ts +38 -0
- package/src/capability/types.ts +166 -0
- package/src/cli/args.ts +259 -0
- package/src/cli/file-processor.ts +121 -0
- package/src/cli/list-models.ts +104 -0
- package/src/cli/plugin-cli.ts +661 -0
- package/src/cli/session-picker.ts +41 -0
- package/src/cli/update-cli.ts +274 -0
- package/src/cli.ts +10 -0
- package/src/config.ts +391 -0
- package/src/core/agent-session.ts +2178 -0
- package/src/core/auth-storage.ts +258 -0
- package/src/core/bash-executor.ts +197 -0
- package/src/core/compaction/branch-summarization.ts +315 -0
- package/src/core/compaction/compaction.ts +664 -0
- package/src/core/compaction/index.ts +7 -0
- package/src/core/compaction/utils.ts +153 -0
- package/src/core/custom-commands/bundled/review/index.ts +156 -0
- package/src/core/custom-commands/index.ts +15 -0
- package/src/core/custom-commands/loader.ts +226 -0
- package/src/core/custom-commands/types.ts +112 -0
- package/src/core/custom-tools/index.ts +22 -0
- package/src/core/custom-tools/loader.ts +248 -0
- package/src/core/custom-tools/types.ts +185 -0
- package/src/core/custom-tools/wrapper.ts +29 -0
- package/src/core/exec.ts +139 -0
- package/src/core/export-html/index.ts +159 -0
- package/src/core/export-html/template.css +774 -0
- package/src/core/export-html/template.generated.ts +2 -0
- package/src/core/export-html/template.html +45 -0
- package/src/core/export-html/template.js +1185 -0
- package/src/core/export-html/template.macro.ts +24 -0
- package/src/core/file-mentions.ts +54 -0
- package/src/core/hooks/index.ts +16 -0
- package/src/core/hooks/loader.ts +288 -0
- package/src/core/hooks/runner.ts +434 -0
- package/src/core/hooks/tool-wrapper.ts +98 -0
- package/src/core/hooks/types.ts +770 -0
- package/src/core/index.ts +53 -0
- package/src/core/logger.ts +112 -0
- package/src/core/mcp/client.ts +185 -0
- package/src/core/mcp/config.ts +248 -0
- package/src/core/mcp/index.ts +45 -0
- package/src/core/mcp/loader.ts +99 -0
- package/src/core/mcp/manager.ts +235 -0
- package/src/core/mcp/tool-bridge.ts +156 -0
- package/src/core/mcp/transports/http.ts +316 -0
- package/src/core/mcp/transports/index.ts +6 -0
- package/src/core/mcp/transports/stdio.ts +252 -0
- package/src/core/mcp/types.ts +228 -0
- package/src/core/messages.ts +211 -0
- package/src/core/model-registry.ts +334 -0
- package/src/core/model-resolver.ts +494 -0
- package/src/core/plugins/doctor.ts +67 -0
- package/src/core/plugins/index.ts +38 -0
- package/src/core/plugins/installer.ts +189 -0
- package/src/core/plugins/loader.ts +339 -0
- package/src/core/plugins/manager.ts +672 -0
- package/src/core/plugins/parser.ts +105 -0
- package/src/core/plugins/paths.ts +37 -0
- package/src/core/plugins/types.ts +190 -0
- package/src/core/sdk.ts +900 -0
- package/src/core/session-manager.ts +1837 -0
- package/src/core/settings-manager.ts +860 -0
- package/src/core/skills.ts +352 -0
- package/src/core/slash-commands.ts +132 -0
- package/src/core/system-prompt.ts +442 -0
- package/src/core/timings.ts +25 -0
- package/src/core/title-generator.ts +110 -0
- package/src/core/tools/ask.ts +193 -0
- package/src/core/tools/bash-interceptor.ts +120 -0
- package/src/core/tools/bash.ts +91 -0
- package/src/core/tools/context.ts +32 -0
- package/src/core/tools/edit-diff.ts +487 -0
- package/src/core/tools/edit.ts +140 -0
- package/src/core/tools/exa/company.ts +59 -0
- package/src/core/tools/exa/index.ts +63 -0
- package/src/core/tools/exa/linkedin.ts +59 -0
- package/src/core/tools/exa/mcp-client.ts +368 -0
- package/src/core/tools/exa/render.ts +200 -0
- package/src/core/tools/exa/researcher.ts +90 -0
- package/src/core/tools/exa/search.ts +338 -0
- package/src/core/tools/exa/types.ts +167 -0
- package/src/core/tools/exa/websets.ts +248 -0
- package/src/core/tools/find.ts +244 -0
- package/src/core/tools/grep.ts +584 -0
- package/src/core/tools/index.ts +283 -0
- package/src/core/tools/ls.ts +142 -0
- package/src/core/tools/lsp/client.ts +767 -0
- package/src/core/tools/lsp/clients/biome-client.ts +207 -0
- package/src/core/tools/lsp/clients/index.ts +49 -0
- package/src/core/tools/lsp/clients/lsp-linter-client.ts +98 -0
- package/src/core/tools/lsp/config.ts +845 -0
- package/src/core/tools/lsp/edits.ts +110 -0
- package/src/core/tools/lsp/index.ts +1364 -0
- package/src/core/tools/lsp/render.ts +560 -0
- package/src/core/tools/lsp/rust-analyzer.ts +145 -0
- package/src/core/tools/lsp/types.ts +495 -0
- package/src/core/tools/lsp/utils.ts +526 -0
- package/src/core/tools/notebook.ts +182 -0
- package/src/core/tools/output.ts +198 -0
- package/src/core/tools/path-utils.ts +61 -0
- package/src/core/tools/read.ts +507 -0
- package/src/core/tools/renderers.ts +820 -0
- package/src/core/tools/review.ts +275 -0
- package/src/core/tools/rulebook.ts +124 -0
- package/src/core/tools/task/agents.ts +158 -0
- package/src/core/tools/task/artifacts.ts +114 -0
- package/src/core/tools/task/commands.ts +157 -0
- package/src/core/tools/task/discovery.ts +217 -0
- package/src/core/tools/task/executor.ts +531 -0
- package/src/core/tools/task/index.ts +548 -0
- package/src/core/tools/task/model-resolver.ts +176 -0
- package/src/core/tools/task/parallel.ts +38 -0
- package/src/core/tools/task/render.ts +502 -0
- package/src/core/tools/task/subprocess-tool-registry.ts +89 -0
- package/src/core/tools/task/types.ts +142 -0
- package/src/core/tools/truncate.ts +265 -0
- package/src/core/tools/web-fetch.ts +2511 -0
- package/src/core/tools/web-search/auth.ts +199 -0
- package/src/core/tools/web-search/index.ts +583 -0
- package/src/core/tools/web-search/providers/anthropic.ts +198 -0
- package/src/core/tools/web-search/providers/exa.ts +196 -0
- package/src/core/tools/web-search/providers/perplexity.ts +195 -0
- package/src/core/tools/web-search/render.ts +372 -0
- package/src/core/tools/web-search/types.ts +180 -0
- package/src/core/tools/write.ts +63 -0
- package/src/core/ttsr.ts +211 -0
- package/src/core/utils.ts +187 -0
- package/src/discovery/agents-md.ts +75 -0
- package/src/discovery/builtin.ts +647 -0
- package/src/discovery/claude.ts +623 -0
- package/src/discovery/cline.ts +104 -0
- package/src/discovery/codex.ts +571 -0
- package/src/discovery/cursor.ts +266 -0
- package/src/discovery/gemini.ts +368 -0
- package/src/discovery/github.ts +120 -0
- package/src/discovery/helpers.test.ts +127 -0
- package/src/discovery/helpers.ts +249 -0
- package/src/discovery/index.ts +84 -0
- package/src/discovery/mcp-json.ts +127 -0
- package/src/discovery/vscode.ts +99 -0
- package/src/discovery/windsurf.ts +219 -0
- package/src/index.ts +192 -0
- package/src/main.ts +507 -0
- package/src/migrations.ts +156 -0
- package/src/modes/cleanup.ts +23 -0
- package/src/modes/index.ts +48 -0
- package/src/modes/interactive/components/armin.ts +382 -0
- package/src/modes/interactive/components/assistant-message.ts +86 -0
- package/src/modes/interactive/components/bash-execution.ts +199 -0
- package/src/modes/interactive/components/bordered-loader.ts +41 -0
- package/src/modes/interactive/components/branch-summary-message.ts +42 -0
- package/src/modes/interactive/components/compaction-summary-message.ts +45 -0
- package/src/modes/interactive/components/custom-editor.ts +122 -0
- package/src/modes/interactive/components/diff.ts +147 -0
- package/src/modes/interactive/components/dynamic-border.ts +25 -0
- package/src/modes/interactive/components/extensions/extension-dashboard.ts +296 -0
- package/src/modes/interactive/components/extensions/extension-list.ts +479 -0
- package/src/modes/interactive/components/extensions/index.ts +9 -0
- package/src/modes/interactive/components/extensions/inspector-panel.ts +313 -0
- package/src/modes/interactive/components/extensions/state-manager.ts +558 -0
- package/src/modes/interactive/components/extensions/types.ts +191 -0
- package/src/modes/interactive/components/hook-editor.ts +117 -0
- package/src/modes/interactive/components/hook-input.ts +64 -0
- package/src/modes/interactive/components/hook-message.ts +96 -0
- package/src/modes/interactive/components/hook-selector.ts +91 -0
- package/src/modes/interactive/components/model-selector.ts +560 -0
- package/src/modes/interactive/components/oauth-selector.ts +136 -0
- package/src/modes/interactive/components/plugin-settings.ts +481 -0
- package/src/modes/interactive/components/queue-mode-selector.ts +56 -0
- package/src/modes/interactive/components/session-selector.ts +220 -0
- package/src/modes/interactive/components/settings-defs.ts +597 -0
- package/src/modes/interactive/components/settings-selector.ts +545 -0
- package/src/modes/interactive/components/show-images-selector.ts +45 -0
- package/src/modes/interactive/components/status-line/index.ts +4 -0
- package/src/modes/interactive/components/status-line/presets.ts +94 -0
- package/src/modes/interactive/components/status-line/segments.ts +350 -0
- package/src/modes/interactive/components/status-line/separators.ts +55 -0
- package/src/modes/interactive/components/status-line/types.ts +81 -0
- package/src/modes/interactive/components/status-line-segment-editor.ts +357 -0
- package/src/modes/interactive/components/status-line.ts +384 -0
- package/src/modes/interactive/components/theme-selector.ts +62 -0
- package/src/modes/interactive/components/thinking-selector.ts +64 -0
- package/src/modes/interactive/components/tool-execution.ts +946 -0
- package/src/modes/interactive/components/tree-selector.ts +877 -0
- package/src/modes/interactive/components/ttsr-notification.ts +82 -0
- package/src/modes/interactive/components/user-message-selector.ts +159 -0
- package/src/modes/interactive/components/user-message.ts +18 -0
- package/src/modes/interactive/components/visual-truncate.ts +50 -0
- package/src/modes/interactive/components/welcome.ts +228 -0
- package/src/modes/interactive/interactive-mode.ts +2669 -0
- package/src/modes/interactive/theme/dark.json +102 -0
- package/src/modes/interactive/theme/defaults/dark-arctic.json +111 -0
- package/src/modes/interactive/theme/defaults/dark-catppuccin.json +106 -0
- package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +109 -0
- package/src/modes/interactive/theme/defaults/dark-dracula.json +105 -0
- package/src/modes/interactive/theme/defaults/dark-forest.json +103 -0
- package/src/modes/interactive/theme/defaults/dark-github.json +112 -0
- package/src/modes/interactive/theme/defaults/dark-gruvbox.json +119 -0
- package/src/modes/interactive/theme/defaults/dark-monochrome.json +101 -0
- package/src/modes/interactive/theme/defaults/dark-monokai.json +105 -0
- package/src/modes/interactive/theme/defaults/dark-nord.json +104 -0
- package/src/modes/interactive/theme/defaults/dark-ocean.json +108 -0
- package/src/modes/interactive/theme/defaults/dark-one.json +107 -0
- package/src/modes/interactive/theme/defaults/dark-retro.json +99 -0
- package/src/modes/interactive/theme/defaults/dark-rose-pine.json +95 -0
- package/src/modes/interactive/theme/defaults/dark-solarized.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-sunset.json +106 -0
- package/src/modes/interactive/theme/defaults/dark-synthwave.json +102 -0
- package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +108 -0
- package/src/modes/interactive/theme/defaults/index.ts +67 -0
- package/src/modes/interactive/theme/defaults/light-arctic.json +106 -0
- package/src/modes/interactive/theme/defaults/light-catppuccin.json +105 -0
- package/src/modes/interactive/theme/defaults/light-cyberpunk.json +103 -0
- package/src/modes/interactive/theme/defaults/light-forest.json +107 -0
- package/src/modes/interactive/theme/defaults/light-github.json +114 -0
- package/src/modes/interactive/theme/defaults/light-gruvbox.json +115 -0
- package/src/modes/interactive/theme/defaults/light-monochrome.json +100 -0
- package/src/modes/interactive/theme/defaults/light-ocean.json +106 -0
- package/src/modes/interactive/theme/defaults/light-one.json +105 -0
- package/src/modes/interactive/theme/defaults/light-retro.json +105 -0
- package/src/modes/interactive/theme/defaults/light-solarized.json +101 -0
- package/src/modes/interactive/theme/defaults/light-sunset.json +106 -0
- package/src/modes/interactive/theme/defaults/light-synthwave.json +105 -0
- package/src/modes/interactive/theme/defaults/light-tokyo-night.json +118 -0
- package/src/modes/interactive/theme/light.json +99 -0
- package/src/modes/interactive/theme/theme-schema.json +424 -0
- package/src/modes/interactive/theme/theme.ts +2211 -0
- package/src/modes/print-mode.ts +163 -0
- package/src/modes/rpc/rpc-client.ts +527 -0
- package/src/modes/rpc/rpc-mode.ts +494 -0
- package/src/modes/rpc/rpc-types.ts +203 -0
- package/src/prompts/architect-plan.md +10 -0
- package/src/prompts/branch-summary-preamble.md +3 -0
- package/src/prompts/branch-summary.md +28 -0
- package/src/prompts/browser.md +71 -0
- package/src/prompts/compaction-summary.md +34 -0
- package/src/prompts/compaction-turn-prefix.md +16 -0
- package/src/prompts/compaction-update-summary.md +41 -0
- package/src/prompts/explore.md +82 -0
- package/src/prompts/implement-with-critic.md +11 -0
- package/src/prompts/implement.md +11 -0
- package/src/prompts/init.md +30 -0
- package/src/prompts/plan.md +54 -0
- package/src/prompts/reviewer.md +81 -0
- package/src/prompts/summarization-system.md +3 -0
- package/src/prompts/system-prompt.md +27 -0
- package/src/prompts/task.md +56 -0
- package/src/prompts/title-system.md +8 -0
- package/src/prompts/tools/ask.md +24 -0
- package/src/prompts/tools/bash.md +23 -0
- package/src/prompts/tools/edit.md +9 -0
- package/src/prompts/tools/find.md +6 -0
- package/src/prompts/tools/grep.md +12 -0
- package/src/prompts/tools/lsp.md +14 -0
- package/src/prompts/tools/output.md +23 -0
- package/src/prompts/tools/read.md +25 -0
- package/src/prompts/tools/web-fetch.md +8 -0
- package/src/prompts/tools/web-search.md +10 -0
- package/src/prompts/tools/write.md +10 -0
- package/src/utils/changelog.ts +99 -0
- package/src/utils/clipboard.ts +265 -0
- package/src/utils/fuzzy.ts +108 -0
- package/src/utils/mime.ts +30 -0
- package/src/utils/shell-snapshot.ts +218 -0
- package/src/utils/shell.ts +364 -0
- package/src/utils/tools-manager.ts +265 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-one",
|
|
4
|
+
"vars": {
|
|
5
|
+
"mono1": "#abb2bf",
|
|
6
|
+
"mono2": "#828997",
|
|
7
|
+
"mono3": "#5c6370",
|
|
8
|
+
"hue1": "#56b6c2",
|
|
9
|
+
"hue2": "#61afef",
|
|
10
|
+
"hue3": "#c678dd",
|
|
11
|
+
"hue4": "#98c379",
|
|
12
|
+
"hue5": "#e06c75",
|
|
13
|
+
"hue52": "#be5046",
|
|
14
|
+
"hue6": "#d19a66",
|
|
15
|
+
"hue62": "#e5c07b",
|
|
16
|
+
"syntaxBg": "#282c34",
|
|
17
|
+
"syntaxAccent": "#528bff",
|
|
18
|
+
"selectedBg": "#3e4451",
|
|
19
|
+
"userMsgBg": "#21252b",
|
|
20
|
+
"toolPendingBg": "#2c313a",
|
|
21
|
+
"toolSuccessBg": "#232831",
|
|
22
|
+
"toolErrorBg": "#3a2d2e",
|
|
23
|
+
"customMsgBg": "#2e2a33"
|
|
24
|
+
},
|
|
25
|
+
"colors": {
|
|
26
|
+
"accent": "hue62",
|
|
27
|
+
"border": "hue2",
|
|
28
|
+
"borderAccent": "hue1",
|
|
29
|
+
"borderMuted": "mono3",
|
|
30
|
+
"success": "hue4",
|
|
31
|
+
"error": "hue5",
|
|
32
|
+
"warning": "hue6",
|
|
33
|
+
"muted": "mono2",
|
|
34
|
+
"dim": "mono3",
|
|
35
|
+
"text": "",
|
|
36
|
+
"thinkingText": "mono2",
|
|
37
|
+
"selectedBg": "selectedBg",
|
|
38
|
+
|
|
39
|
+
"userMessageBg": "userMsgBg",
|
|
40
|
+
"userMessageText": "",
|
|
41
|
+
"customMessageBg": "customMsgBg",
|
|
42
|
+
"customMessageText": "",
|
|
43
|
+
"customMessageLabel": "hue3",
|
|
44
|
+
"toolPendingBg": "toolPendingBg",
|
|
45
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
46
|
+
"toolErrorBg": "toolErrorBg",
|
|
47
|
+
"toolText": "",
|
|
48
|
+
"toolTitle": "",
|
|
49
|
+
"toolOutput": "mono2",
|
|
50
|
+
|
|
51
|
+
"mdHeading": "hue62",
|
|
52
|
+
"mdLink": "hue2",
|
|
53
|
+
"mdLinkUrl": "mono3",
|
|
54
|
+
"mdCode": "hue3",
|
|
55
|
+
"mdCodeBlock": "hue1",
|
|
56
|
+
"mdCodeBlockBorder": "mono3",
|
|
57
|
+
"mdQuote": "mono2",
|
|
58
|
+
"mdQuoteBorder": "mono3",
|
|
59
|
+
"mdHr": "mono3",
|
|
60
|
+
"mdListBullet": "hue62",
|
|
61
|
+
|
|
62
|
+
"toolDiffAdded": "hue4",
|
|
63
|
+
"toolDiffRemoved": "hue5",
|
|
64
|
+
"toolDiffContext": "mono2",
|
|
65
|
+
|
|
66
|
+
"link": "hue2",
|
|
67
|
+
|
|
68
|
+
"syntaxComment": "mono3",
|
|
69
|
+
"syntaxKeyword": "hue3",
|
|
70
|
+
"syntaxFunction": "hue2",
|
|
71
|
+
"syntaxVariable": "hue5",
|
|
72
|
+
"syntaxString": "hue4",
|
|
73
|
+
"syntaxNumber": "hue6",
|
|
74
|
+
"syntaxType": "hue62",
|
|
75
|
+
"syntaxOperator": "hue1",
|
|
76
|
+
"syntaxPunctuation": "mono1",
|
|
77
|
+
|
|
78
|
+
"thinkingOff": "mono3",
|
|
79
|
+
"thinkingMinimal": "mono2",
|
|
80
|
+
"thinkingLow": "hue2",
|
|
81
|
+
"thinkingMedium": "syntaxAccent",
|
|
82
|
+
"thinkingHigh": "hue3",
|
|
83
|
+
"thinkingXhigh": "#e5b9ff",
|
|
84
|
+
|
|
85
|
+
"bashMode": "hue1",
|
|
86
|
+
|
|
87
|
+
"statusLineBg": "#1e2227",
|
|
88
|
+
"statusLineSep": "#3e4451",
|
|
89
|
+
"statusLineModel": "hue3",
|
|
90
|
+
"statusLinePath": "hue1",
|
|
91
|
+
"statusLineGitClean": "hue4",
|
|
92
|
+
"statusLineGitDirty": "hue6",
|
|
93
|
+
"statusLineContext": "syntaxAccent",
|
|
94
|
+
"statusLineSpend": "hue1",
|
|
95
|
+
"statusLineStaged": "hue4",
|
|
96
|
+
"statusLineDirty": "hue6",
|
|
97
|
+
"statusLineUntracked": "hue2",
|
|
98
|
+
"statusLineOutput": "hue3",
|
|
99
|
+
"statusLineCost": "hue5",
|
|
100
|
+
"statusLineSubagents": "hue62"
|
|
101
|
+
},
|
|
102
|
+
"export": {
|
|
103
|
+
"pageBg": "#1e2227",
|
|
104
|
+
"cardBg": "#282c34",
|
|
105
|
+
"infoBg": "#3e3428"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-retro",
|
|
4
|
+
"vars": {
|
|
5
|
+
"phosphor": "#ffb000",
|
|
6
|
+
"phosphorBright": "#ffc633",
|
|
7
|
+
"phosphorDim": "#cc8800",
|
|
8
|
+
"phosphorVeryDim": "#664400",
|
|
9
|
+
"crtBlack": "#0a0a0a",
|
|
10
|
+
"crtDarkBg": "#121008",
|
|
11
|
+
"crtBg": "#1a1510",
|
|
12
|
+
"crtGlow": "#ffe680",
|
|
13
|
+
"errorRed": "#ff6b6b",
|
|
14
|
+
"warnYellow": "#ffdd33",
|
|
15
|
+
"successGreen": "#88dd66",
|
|
16
|
+
"glowBlue": "#66b3ff"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "phosphorBright",
|
|
20
|
+
"border": "phosphorDim",
|
|
21
|
+
"borderAccent": "phosphorBright",
|
|
22
|
+
"borderMuted": "phosphorVeryDim",
|
|
23
|
+
"success": "successGreen",
|
|
24
|
+
"error": "errorRed",
|
|
25
|
+
"warning": "warnYellow",
|
|
26
|
+
"muted": "phosphorDim",
|
|
27
|
+
"dim": "phosphorVeryDim",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "phosphorDim",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "#1f1a10",
|
|
32
|
+
"userMessageBg": "crtDarkBg",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#1a1210",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "phosphorBright",
|
|
37
|
+
"toolPendingBg": "crtBg",
|
|
38
|
+
"toolSuccessBg": "#101510",
|
|
39
|
+
"toolErrorBg": "#1a0f0f",
|
|
40
|
+
"toolTitle": "phosphorBright",
|
|
41
|
+
"toolOutput": "phosphorDim",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "phosphorBright",
|
|
44
|
+
"mdLink": "glowBlue",
|
|
45
|
+
"mdLinkUrl": "phosphorVeryDim",
|
|
46
|
+
"mdCode": "phosphorBright",
|
|
47
|
+
"mdCodeBlock": "phosphor",
|
|
48
|
+
"mdCodeBlockBorder": "phosphorVeryDim",
|
|
49
|
+
"mdQuote": "phosphorDim",
|
|
50
|
+
"mdQuoteBorder": "phosphorVeryDim",
|
|
51
|
+
"mdHr": "phosphorVeryDim",
|
|
52
|
+
"mdListBullet": "phosphorBright",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "successGreen",
|
|
55
|
+
"toolDiffRemoved": "errorRed",
|
|
56
|
+
"toolDiffContext": "phosphorDim",
|
|
57
|
+
|
|
58
|
+
"link": "glowBlue",
|
|
59
|
+
|
|
60
|
+
"syntaxComment": "phosphorVeryDim",
|
|
61
|
+
"syntaxKeyword": "phosphorBright",
|
|
62
|
+
"syntaxFunction": "phosphor",
|
|
63
|
+
"syntaxVariable": "phosphor",
|
|
64
|
+
"syntaxString": "phosphorBright",
|
|
65
|
+
"syntaxNumber": "phosphorBright",
|
|
66
|
+
"syntaxType": "phosphor",
|
|
67
|
+
"syntaxOperator": "phosphorDim",
|
|
68
|
+
"syntaxPunctuation": "phosphorDim",
|
|
69
|
+
|
|
70
|
+
"thinkingOff": "phosphorVeryDim",
|
|
71
|
+
"thinkingMinimal": "phosphorVeryDim",
|
|
72
|
+
"thinkingLow": "phosphorDim",
|
|
73
|
+
"thinkingMedium": "phosphor",
|
|
74
|
+
"thinkingHigh": "phosphorBright",
|
|
75
|
+
"thinkingXhigh": "crtGlow",
|
|
76
|
+
|
|
77
|
+
"bashMode": "glowBlue",
|
|
78
|
+
|
|
79
|
+
"statusLineBg": "crtBlack",
|
|
80
|
+
"statusLineSep": 238,
|
|
81
|
+
"statusLineModel": "phosphorBright",
|
|
82
|
+
"statusLinePath": "glowBlue",
|
|
83
|
+
"statusLineGitClean": "successGreen",
|
|
84
|
+
"statusLineGitDirty": "warnYellow",
|
|
85
|
+
"statusLineContext": "phosphorDim",
|
|
86
|
+
"statusLineSpend": "phosphor",
|
|
87
|
+
"statusLineStaged": 142,
|
|
88
|
+
"statusLineDirty": 214,
|
|
89
|
+
"statusLineUntracked": 39,
|
|
90
|
+
"statusLineOutput": 209,
|
|
91
|
+
"statusLineCost": 209,
|
|
92
|
+
"statusLineSubagents": "phosphorBright"
|
|
93
|
+
},
|
|
94
|
+
"export": {
|
|
95
|
+
"pageBg": "crtBlack",
|
|
96
|
+
"cardBg": "crtDarkBg",
|
|
97
|
+
"infoBg": "crtBg"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-rose-pine",
|
|
4
|
+
"vars": {
|
|
5
|
+
"base": "#191724",
|
|
6
|
+
"surface": "#1f1d2e",
|
|
7
|
+
"overlay": "#26233a",
|
|
8
|
+
"muted": "#6e6a86",
|
|
9
|
+
"subtle": "#908caa",
|
|
10
|
+
"text": "#e0def4",
|
|
11
|
+
"love": "#eb6f92",
|
|
12
|
+
"gold": "#f6c177",
|
|
13
|
+
"rose": "#ebbcba",
|
|
14
|
+
"pine": "#31748f",
|
|
15
|
+
"foam": "#9ccfd8",
|
|
16
|
+
"iris": "#c4a7e7",
|
|
17
|
+
"highlightLow": "#21202e",
|
|
18
|
+
"highlightMed": "#403d52",
|
|
19
|
+
"highlightHigh": "#524f67"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"accent": "iris",
|
|
23
|
+
"border": "pine",
|
|
24
|
+
"borderAccent": "foam",
|
|
25
|
+
"borderMuted": "highlightMed",
|
|
26
|
+
"success": "foam",
|
|
27
|
+
"error": "love",
|
|
28
|
+
"warning": "gold",
|
|
29
|
+
"muted": "muted",
|
|
30
|
+
"dim": "subtle",
|
|
31
|
+
"text": "",
|
|
32
|
+
"thinkingText": "subtle",
|
|
33
|
+
"selectedBg": "overlay",
|
|
34
|
+
"userMessageBg": "highlightLow",
|
|
35
|
+
"userMessageText": "",
|
|
36
|
+
"customMessageBg": "overlay",
|
|
37
|
+
"customMessageText": "",
|
|
38
|
+
"customMessageLabel": "iris",
|
|
39
|
+
"toolPendingBg": "surface",
|
|
40
|
+
"toolSuccessBg": "highlightLow",
|
|
41
|
+
"toolErrorBg": "#2d1f26",
|
|
42
|
+
"toolTitle": "foam",
|
|
43
|
+
"toolText": "",
|
|
44
|
+
"toolOutput": "muted",
|
|
45
|
+
"mdHeading": "iris",
|
|
46
|
+
"mdLink": "foam",
|
|
47
|
+
"mdLinkUrl": "subtle",
|
|
48
|
+
"mdCode": "rose",
|
|
49
|
+
"mdCodeBlock": "text",
|
|
50
|
+
"mdCodeBlockBorder": "highlightMed",
|
|
51
|
+
"mdQuote": "muted",
|
|
52
|
+
"mdQuoteBorder": "highlightMed",
|
|
53
|
+
"mdHr": "highlightMed",
|
|
54
|
+
"mdListBullet": "iris",
|
|
55
|
+
"toolDiffAdded": "foam",
|
|
56
|
+
"toolDiffRemoved": "love",
|
|
57
|
+
"toolDiffContext": "muted",
|
|
58
|
+
"link": "foam",
|
|
59
|
+
"syntaxComment": "muted",
|
|
60
|
+
"syntaxKeyword": "pine",
|
|
61
|
+
"syntaxFunction": "rose",
|
|
62
|
+
"syntaxVariable": "text",
|
|
63
|
+
"syntaxString": "gold",
|
|
64
|
+
"syntaxNumber": "rose",
|
|
65
|
+
"syntaxType": "foam",
|
|
66
|
+
"syntaxOperator": "subtle",
|
|
67
|
+
"syntaxPunctuation": "subtle",
|
|
68
|
+
"thinkingOff": "highlightMed",
|
|
69
|
+
"thinkingMinimal": "subtle",
|
|
70
|
+
"thinkingLow": "pine",
|
|
71
|
+
"thinkingMedium": "foam",
|
|
72
|
+
"thinkingHigh": "iris",
|
|
73
|
+
"thinkingXhigh": "#e0c1ff",
|
|
74
|
+
"bashMode": "foam",
|
|
75
|
+
"statusLineBg": "overlay",
|
|
76
|
+
"statusLineSep": "highlightMed",
|
|
77
|
+
"statusLineModel": "iris",
|
|
78
|
+
"statusLinePath": "foam",
|
|
79
|
+
"statusLineGitClean": "foam",
|
|
80
|
+
"statusLineGitDirty": "gold",
|
|
81
|
+
"statusLineContext": "subtle",
|
|
82
|
+
"statusLineSpend": "rose",
|
|
83
|
+
"statusLineStaged": "foam",
|
|
84
|
+
"statusLineDirty": "gold",
|
|
85
|
+
"statusLineUntracked": "love",
|
|
86
|
+
"statusLineOutput": "pine",
|
|
87
|
+
"statusLineCost": "rose",
|
|
88
|
+
"statusLineSubagents": "iris"
|
|
89
|
+
},
|
|
90
|
+
"export": {
|
|
91
|
+
"pageBg": "base",
|
|
92
|
+
"cardBg": "surface",
|
|
93
|
+
"infoBg": "overlay"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-solarized",
|
|
4
|
+
"vars": {
|
|
5
|
+
"base03": "#002b36",
|
|
6
|
+
"base02": "#073642",
|
|
7
|
+
"base01": "#586e75",
|
|
8
|
+
"base00": "#657b83",
|
|
9
|
+
"base0": "#839496",
|
|
10
|
+
"base1": "#93a1a1",
|
|
11
|
+
"base2": "#eee8d5",
|
|
12
|
+
"base3": "#fdf6e3",
|
|
13
|
+
"yellow": "#b58900",
|
|
14
|
+
"orange": "#cb4b16",
|
|
15
|
+
"red": "#dc322f",
|
|
16
|
+
"magenta": "#d33682",
|
|
17
|
+
"violet": "#6c71c4",
|
|
18
|
+
"blue": "#268bd2",
|
|
19
|
+
"cyan": "#2aa198",
|
|
20
|
+
"green": "#859900"
|
|
21
|
+
},
|
|
22
|
+
"colors": {
|
|
23
|
+
"accent": "blue",
|
|
24
|
+
"border": "base01",
|
|
25
|
+
"borderAccent": "cyan",
|
|
26
|
+
"borderMuted": "base02",
|
|
27
|
+
"success": "green",
|
|
28
|
+
"error": "red",
|
|
29
|
+
"warning": "yellow",
|
|
30
|
+
"muted": "base01",
|
|
31
|
+
"dim": "base00",
|
|
32
|
+
"text": "",
|
|
33
|
+
"thinkingText": "base01",
|
|
34
|
+
"selectedBg": "base02",
|
|
35
|
+
"userMessageBg": "base02",
|
|
36
|
+
"userMessageText": "",
|
|
37
|
+
"customMessageBg": "base02",
|
|
38
|
+
"customMessageText": "",
|
|
39
|
+
"customMessageLabel": "violet",
|
|
40
|
+
"toolPendingBg": "base03",
|
|
41
|
+
"toolSuccessBg": "base03",
|
|
42
|
+
"toolErrorBg": "base03",
|
|
43
|
+
"toolText": "base0",
|
|
44
|
+
"toolTitle": "",
|
|
45
|
+
"toolOutput": "base01",
|
|
46
|
+
"mdHeading": "yellow",
|
|
47
|
+
"mdLink": "blue",
|
|
48
|
+
"mdLinkUrl": "base01",
|
|
49
|
+
"mdCode": "cyan",
|
|
50
|
+
"mdCodeBlock": "base0",
|
|
51
|
+
"mdCodeBlockBorder": "base01",
|
|
52
|
+
"mdQuote": "base01",
|
|
53
|
+
"mdQuoteBorder": "base01",
|
|
54
|
+
"mdHr": "base01",
|
|
55
|
+
"mdListBullet": "yellow",
|
|
56
|
+
"toolDiffAdded": "green",
|
|
57
|
+
"toolDiffRemoved": "red",
|
|
58
|
+
"toolDiffContext": "base01",
|
|
59
|
+
"link": "blue",
|
|
60
|
+
"syntaxComment": "base01",
|
|
61
|
+
"syntaxKeyword": "green",
|
|
62
|
+
"syntaxFunction": "blue",
|
|
63
|
+
"syntaxVariable": "cyan",
|
|
64
|
+
"syntaxString": "cyan",
|
|
65
|
+
"syntaxNumber": "violet",
|
|
66
|
+
"syntaxType": "yellow",
|
|
67
|
+
"syntaxOperator": "base0",
|
|
68
|
+
"syntaxPunctuation": "base0",
|
|
69
|
+
"thinkingOff": "base02",
|
|
70
|
+
"thinkingMinimal": "base01",
|
|
71
|
+
"thinkingLow": "cyan",
|
|
72
|
+
"thinkingMedium": "blue",
|
|
73
|
+
"thinkingHigh": "violet",
|
|
74
|
+
"thinkingXhigh": "magenta",
|
|
75
|
+
"bashMode": "cyan",
|
|
76
|
+
"statusLineBg": "base03",
|
|
77
|
+
"statusLineSep": "base01",
|
|
78
|
+
"statusLineModel": "magenta",
|
|
79
|
+
"statusLinePath": "cyan",
|
|
80
|
+
"statusLineGitClean": "green",
|
|
81
|
+
"statusLineGitDirty": "yellow",
|
|
82
|
+
"statusLineContext": "violet",
|
|
83
|
+
"statusLineSpend": "cyan",
|
|
84
|
+
"statusLineStaged": "green",
|
|
85
|
+
"statusLineDirty": "yellow",
|
|
86
|
+
"statusLineUntracked": "blue",
|
|
87
|
+
"statusLineOutput": "magenta",
|
|
88
|
+
"statusLineCost": "orange",
|
|
89
|
+
"statusLineSubagents": "blue"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "base03",
|
|
93
|
+
"cardBg": "base02",
|
|
94
|
+
"infoBg": "base02"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-sunset",
|
|
4
|
+
"vars": {
|
|
5
|
+
"golden": "#FFC345",
|
|
6
|
+
"amber": "#FF9E4A",
|
|
7
|
+
"coral": "#FF785E",
|
|
8
|
+
"deepPurple": "#614E72",
|
|
9
|
+
"twilightBlue": "#214675",
|
|
10
|
+
"violet": "#7C4BE5",
|
|
11
|
+
"magenta": "#A93EB9",
|
|
12
|
+
"deepViolet": "#45046B",
|
|
13
|
+
"warmOrange": "#FA9C32",
|
|
14
|
+
"emberRed": "#E44C1D",
|
|
15
|
+
"softPink": "#FDBAE7",
|
|
16
|
+
"dimViolet": "#5E508D",
|
|
17
|
+
"darkPurple": "#2a1f35",
|
|
18
|
+
"darkestPurple": "#1a1323",
|
|
19
|
+
"accentGlow": "#FF9E4A",
|
|
20
|
+
"horizonGlow": "#FF6B35",
|
|
21
|
+
"duskGray": "#4a4552",
|
|
22
|
+
"twilightGray": "#352f3d"
|
|
23
|
+
},
|
|
24
|
+
"colors": {
|
|
25
|
+
"accent": "accentGlow",
|
|
26
|
+
"border": "deepPurple",
|
|
27
|
+
"borderAccent": "golden",
|
|
28
|
+
"borderMuted": "twilightGray",
|
|
29
|
+
"success": "#89d281",
|
|
30
|
+
"error": "emberRed",
|
|
31
|
+
"warning": "golden",
|
|
32
|
+
"muted": "duskGray",
|
|
33
|
+
"dim": "dimViolet",
|
|
34
|
+
"text": "",
|
|
35
|
+
"thinkingText": "duskGray",
|
|
36
|
+
|
|
37
|
+
"selectedBg": "#2d2436",
|
|
38
|
+
"userMessageBg": "#251a1f",
|
|
39
|
+
"userMessageText": "",
|
|
40
|
+
"customMessageBg": "darkPurple",
|
|
41
|
+
"customMessageText": "",
|
|
42
|
+
"customMessageLabel": "softPink",
|
|
43
|
+
"toolPendingBg": "#1f1a28",
|
|
44
|
+
"toolSuccessBg": "#1a1620",
|
|
45
|
+
"toolErrorBg": "#2a1a1a",
|
|
46
|
+
"toolText": "",
|
|
47
|
+
"toolTitle": "",
|
|
48
|
+
"toolOutput": "duskGray",
|
|
49
|
+
|
|
50
|
+
"mdHeading": "golden",
|
|
51
|
+
"mdLink": "violet",
|
|
52
|
+
"mdLinkUrl": "dimViolet",
|
|
53
|
+
"mdCode": "softPink",
|
|
54
|
+
"mdCodeBlock": "#FFB89E",
|
|
55
|
+
"mdCodeBlockBorder": "twilightGray",
|
|
56
|
+
"mdQuote": "duskGray",
|
|
57
|
+
"mdQuoteBorder": "twilightGray",
|
|
58
|
+
"mdHr": "twilightGray",
|
|
59
|
+
"mdListBullet": "accentGlow",
|
|
60
|
+
|
|
61
|
+
"toolDiffAdded": "#89d281",
|
|
62
|
+
"toolDiffRemoved": "emberRed",
|
|
63
|
+
"toolDiffContext": "duskGray",
|
|
64
|
+
|
|
65
|
+
"link": "violet",
|
|
66
|
+
|
|
67
|
+
"syntaxComment": "#7a6f85",
|
|
68
|
+
"syntaxKeyword": "violet",
|
|
69
|
+
"syntaxFunction": "golden",
|
|
70
|
+
"syntaxVariable": "coral",
|
|
71
|
+
"syntaxString": "warmOrange",
|
|
72
|
+
"syntaxNumber": "#FFB89E",
|
|
73
|
+
"syntaxType": "magenta",
|
|
74
|
+
"syntaxOperator": "#c9bdd0",
|
|
75
|
+
"syntaxPunctuation": "#b3a8ba",
|
|
76
|
+
|
|
77
|
+
"thinkingOff": "twilightGray",
|
|
78
|
+
"thinkingMinimal": "dimViolet",
|
|
79
|
+
"thinkingLow": "deepPurple",
|
|
80
|
+
"thinkingMedium": "violet",
|
|
81
|
+
"thinkingHigh": "magenta",
|
|
82
|
+
"thinkingXhigh": "softPink",
|
|
83
|
+
|
|
84
|
+
"bashMode": "horizonGlow",
|
|
85
|
+
|
|
86
|
+
"statusLineBg": "#0f0a14",
|
|
87
|
+
"statusLineSep": 237,
|
|
88
|
+
"statusLineModel": "softPink",
|
|
89
|
+
"statusLinePath": "twilightBlue",
|
|
90
|
+
"statusLineGitClean": "#89d281",
|
|
91
|
+
"statusLineGitDirty": "amber",
|
|
92
|
+
"statusLineContext": "dimViolet",
|
|
93
|
+
"statusLineSpend": "coral",
|
|
94
|
+
"statusLineStaged": 70,
|
|
95
|
+
"statusLineDirty": 215,
|
|
96
|
+
"statusLineUntracked": 213,
|
|
97
|
+
"statusLineOutput": 205,
|
|
98
|
+
"statusLineCost": 205,
|
|
99
|
+
"statusLineSubagents": "golden"
|
|
100
|
+
},
|
|
101
|
+
"export": {
|
|
102
|
+
"pageBg": "#120d18",
|
|
103
|
+
"cardBg": "#1c1424",
|
|
104
|
+
"infoBg": "#2d1f28"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-synthwave",
|
|
4
|
+
"vars": {
|
|
5
|
+
"hotPink": "#ff2975",
|
|
6
|
+
"neonMagenta": "#f222ff",
|
|
7
|
+
"electricPurple": "#8c1eff",
|
|
8
|
+
"cyberPurple": "#8a04ed",
|
|
9
|
+
"darkIndigo": "#240c76",
|
|
10
|
+
"deepPurple": "#5c2c6d",
|
|
11
|
+
"neonCyan": "#00ffff",
|
|
12
|
+
"chrome": "#c0c0c8",
|
|
13
|
+
"chromeDark": "#8b8b95",
|
|
14
|
+
"neonBlue": "#0080ff",
|
|
15
|
+
"neonOrange": "#ff901f",
|
|
16
|
+
"gold": "#ffd319",
|
|
17
|
+
"vaporPink": "#ef9af2",
|
|
18
|
+
"darkBg": "#0c0c0c",
|
|
19
|
+
"darkPurpleBg": "#1a0e2e",
|
|
20
|
+
"deepVioletBg": "#2d1b3d",
|
|
21
|
+
"selectedBg": "#2a1342",
|
|
22
|
+
"userMsgBg": "#1f0c36",
|
|
23
|
+
"toolPendingBg": "#1a0e2e",
|
|
24
|
+
"toolSuccessBg": "#0f1a1f",
|
|
25
|
+
"toolErrorBg": "#2e0a1a",
|
|
26
|
+
"customMsgBg": "#2a1342"
|
|
27
|
+
},
|
|
28
|
+
"colors": {
|
|
29
|
+
"accent": "hotPink",
|
|
30
|
+
"border": "electricPurple",
|
|
31
|
+
"borderAccent": "neonMagenta",
|
|
32
|
+
"borderMuted": "deepPurple",
|
|
33
|
+
"success": "neonCyan",
|
|
34
|
+
"error": "hotPink",
|
|
35
|
+
"warning": "gold",
|
|
36
|
+
"muted": "chromeDark",
|
|
37
|
+
"dim": "deepPurple",
|
|
38
|
+
"text": "",
|
|
39
|
+
"thinkingText": "chromeDark",
|
|
40
|
+
"selectedBg": "selectedBg",
|
|
41
|
+
"userMessageBg": "userMsgBg",
|
|
42
|
+
"userMessageText": "",
|
|
43
|
+
"customMessageBg": "customMsgBg",
|
|
44
|
+
"customMessageText": "",
|
|
45
|
+
"customMessageLabel": "vaporPink",
|
|
46
|
+
"toolPendingBg": "toolPendingBg",
|
|
47
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
48
|
+
"toolErrorBg": "toolErrorBg",
|
|
49
|
+
"toolText": "",
|
|
50
|
+
"toolTitle": "",
|
|
51
|
+
"toolOutput": "chromeDark",
|
|
52
|
+
"mdHeading": "neonMagenta",
|
|
53
|
+
"mdLink": "neonCyan",
|
|
54
|
+
"mdLinkUrl": "deepPurple",
|
|
55
|
+
"mdCode": "vaporPink",
|
|
56
|
+
"mdCodeBlock": "chrome",
|
|
57
|
+
"mdCodeBlockBorder": "electricPurple",
|
|
58
|
+
"mdQuote": "chromeDark",
|
|
59
|
+
"mdQuoteBorder": "deepPurple",
|
|
60
|
+
"mdHr": "electricPurple",
|
|
61
|
+
"mdListBullet": "hotPink",
|
|
62
|
+
"toolDiffAdded": "neonCyan",
|
|
63
|
+
"toolDiffRemoved": "hotPink",
|
|
64
|
+
"toolDiffContext": "chromeDark",
|
|
65
|
+
"link": "neonCyan",
|
|
66
|
+
"syntaxComment": "deepPurple",
|
|
67
|
+
"syntaxKeyword": "neonMagenta",
|
|
68
|
+
"syntaxFunction": "gold",
|
|
69
|
+
"syntaxVariable": "chrome",
|
|
70
|
+
"syntaxString": "neonOrange",
|
|
71
|
+
"syntaxNumber": "vaporPink",
|
|
72
|
+
"syntaxType": "neonCyan",
|
|
73
|
+
"syntaxOperator": "hotPink",
|
|
74
|
+
"syntaxPunctuation": "chrome",
|
|
75
|
+
"thinkingOff": "deepPurple",
|
|
76
|
+
"thinkingMinimal": "chromeDark",
|
|
77
|
+
"thinkingLow": "electricPurple",
|
|
78
|
+
"thinkingMedium": "neonMagenta",
|
|
79
|
+
"thinkingHigh": "hotPink",
|
|
80
|
+
"thinkingXhigh": "neonCyan",
|
|
81
|
+
"bashMode": "neonCyan",
|
|
82
|
+
"statusLineBg": "darkBg",
|
|
83
|
+
"statusLineSep": 240,
|
|
84
|
+
"statusLineModel": "vaporPink",
|
|
85
|
+
"statusLinePath": "neonCyan",
|
|
86
|
+
"statusLineGitClean": "neonCyan",
|
|
87
|
+
"statusLineGitDirty": "neonOrange",
|
|
88
|
+
"statusLineContext": "electricPurple",
|
|
89
|
+
"statusLineSpend": "chrome",
|
|
90
|
+
"statusLineStaged": "neonCyan",
|
|
91
|
+
"statusLineDirty": "neonOrange",
|
|
92
|
+
"statusLineUntracked": "hotPink",
|
|
93
|
+
"statusLineOutput": "neonMagenta",
|
|
94
|
+
"statusLineCost": "vaporPink",
|
|
95
|
+
"statusLineSubagents": "hotPink"
|
|
96
|
+
},
|
|
97
|
+
"export": {
|
|
98
|
+
"pageBg": "#0c0c0c",
|
|
99
|
+
"cardBg": "#1a0e2e",
|
|
100
|
+
"infoBg": "#2a1342"
|
|
101
|
+
}
|
|
102
|
+
}
|