@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,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-github",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#0d1117",
|
|
6
|
+
"bgElevated": "#161b22",
|
|
7
|
+
"bgSubtle": "#21262d",
|
|
8
|
+
"border": "#30363d",
|
|
9
|
+
"borderMuted": "#21262d",
|
|
10
|
+
"text": "#c9d1d9",
|
|
11
|
+
"textMuted": "#8b949e",
|
|
12
|
+
"textDim": "#6e7681",
|
|
13
|
+
"blue": "#58a6ff",
|
|
14
|
+
"blueLight": "#79c0ff",
|
|
15
|
+
"blueMuted": "#1f6feb",
|
|
16
|
+
"green": "#3fb950",
|
|
17
|
+
"greenLight": "#7ee787",
|
|
18
|
+
"greenDiff": "#aff5b4",
|
|
19
|
+
"greenDiffBg": "#033a16",
|
|
20
|
+
"red": "#f85149",
|
|
21
|
+
"redLight": "#ff7b72",
|
|
22
|
+
"redDiff": "#ffdcd7",
|
|
23
|
+
"redDiffBg": "#67060c",
|
|
24
|
+
"yellow": "#d29922",
|
|
25
|
+
"yellowLight": "#f2cc60",
|
|
26
|
+
"orange": "#ffa657",
|
|
27
|
+
"purple": "#d2a8ff",
|
|
28
|
+
"accent": "#58a6ff"
|
|
29
|
+
},
|
|
30
|
+
"colors": {
|
|
31
|
+
"accent": "accent",
|
|
32
|
+
"border": "border",
|
|
33
|
+
"borderAccent": "blue",
|
|
34
|
+
"borderMuted": "borderMuted",
|
|
35
|
+
"success": "green",
|
|
36
|
+
"error": "red",
|
|
37
|
+
"warning": "yellow",
|
|
38
|
+
"muted": "textMuted",
|
|
39
|
+
"dim": "textDim",
|
|
40
|
+
"text": "",
|
|
41
|
+
"thinkingText": "textMuted",
|
|
42
|
+
|
|
43
|
+
"selectedBg": "#1c2128",
|
|
44
|
+
"userMessageBg": "bgElevated",
|
|
45
|
+
"userMessageText": "",
|
|
46
|
+
"customMessageBg": "#1c1f26",
|
|
47
|
+
"customMessageText": "",
|
|
48
|
+
"customMessageLabel": "purple",
|
|
49
|
+
"toolPendingBg": "bg",
|
|
50
|
+
"toolSuccessBg": "bg",
|
|
51
|
+
"toolErrorBg": "#1a0f0d",
|
|
52
|
+
"toolText": "",
|
|
53
|
+
"toolTitle": "",
|
|
54
|
+
"toolOutput": "textMuted",
|
|
55
|
+
|
|
56
|
+
"mdHeading": "blue",
|
|
57
|
+
"mdLink": "blue",
|
|
58
|
+
"mdLinkUrl": "textDim",
|
|
59
|
+
"mdCode": "blueLight",
|
|
60
|
+
"mdCodeBlock": "text",
|
|
61
|
+
"mdCodeBlockBorder": "borderMuted",
|
|
62
|
+
"mdQuote": "textMuted",
|
|
63
|
+
"mdQuoteBorder": "borderMuted",
|
|
64
|
+
"mdHr": "border",
|
|
65
|
+
"mdListBullet": "yellowLight",
|
|
66
|
+
|
|
67
|
+
"toolDiffAdded": "greenLight",
|
|
68
|
+
"toolDiffRemoved": "redLight",
|
|
69
|
+
"toolDiffContext": "textMuted",
|
|
70
|
+
|
|
71
|
+
"link": "blue",
|
|
72
|
+
|
|
73
|
+
"syntaxComment": "textMuted",
|
|
74
|
+
"syntaxKeyword": "redLight",
|
|
75
|
+
"syntaxFunction": "purple",
|
|
76
|
+
"syntaxVariable": "blueLight",
|
|
77
|
+
"syntaxString": "#a5d6ff",
|
|
78
|
+
"syntaxNumber": "blueLight",
|
|
79
|
+
"syntaxType": "purple",
|
|
80
|
+
"syntaxOperator": "redLight",
|
|
81
|
+
"syntaxPunctuation": "text",
|
|
82
|
+
|
|
83
|
+
"thinkingOff": "borderMuted",
|
|
84
|
+
"thinkingMinimal": "textDim",
|
|
85
|
+
"thinkingLow": "blueMuted",
|
|
86
|
+
"thinkingMedium": "blue",
|
|
87
|
+
"thinkingHigh": "purple",
|
|
88
|
+
"thinkingXhigh": "#eddeff",
|
|
89
|
+
|
|
90
|
+
"bashMode": "blue",
|
|
91
|
+
|
|
92
|
+
"statusLineBg": "#010409",
|
|
93
|
+
"statusLineSep": "#30363d",
|
|
94
|
+
"statusLineModel": "purple",
|
|
95
|
+
"statusLinePath": "blueLight",
|
|
96
|
+
"statusLineGitClean": "green",
|
|
97
|
+
"statusLineGitDirty": "orange",
|
|
98
|
+
"statusLineContext": "purple",
|
|
99
|
+
"statusLineSpend": "blueLight",
|
|
100
|
+
"statusLineStaged": "green",
|
|
101
|
+
"statusLineDirty": "orange",
|
|
102
|
+
"statusLineUntracked": "blue",
|
|
103
|
+
"statusLineOutput": "purple",
|
|
104
|
+
"statusLineCost": "purple",
|
|
105
|
+
"statusLineSubagents": "yellowLight"
|
|
106
|
+
},
|
|
107
|
+
"export": {
|
|
108
|
+
"pageBg": "#010409",
|
|
109
|
+
"cardBg": "bg",
|
|
110
|
+
"infoBg": "bgSubtle"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-gruvbox",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg0": "#282828",
|
|
6
|
+
"bg1": "#3c3836",
|
|
7
|
+
"bg2": "#504945",
|
|
8
|
+
"bg3": "#665c54",
|
|
9
|
+
"bg4": "#7c6f64",
|
|
10
|
+
"gray": "#928374",
|
|
11
|
+
"fg0": "#fbf1c7",
|
|
12
|
+
"fg1": "#ebdbb2",
|
|
13
|
+
"fg2": "#d5c4a1",
|
|
14
|
+
"fg3": "#bdae93",
|
|
15
|
+
"fg4": "#a89984",
|
|
16
|
+
"red": "#fb4934",
|
|
17
|
+
"green": "#b8bb26",
|
|
18
|
+
"yellow": "#fabd2f",
|
|
19
|
+
"blue": "#83a598",
|
|
20
|
+
"purple": "#d3869b",
|
|
21
|
+
"aqua": "#8ec07c",
|
|
22
|
+
"orange": "#fe8019",
|
|
23
|
+
"neutralRed": "#cc241d",
|
|
24
|
+
"neutralGreen": "#98971a",
|
|
25
|
+
"neutralYellow": "#d79921",
|
|
26
|
+
"neutralBlue": "#458588",
|
|
27
|
+
"neutralPurple": "#b16286",
|
|
28
|
+
"neutralAqua": "#689d6a",
|
|
29
|
+
"neutralOrange": "#d65d0e",
|
|
30
|
+
"selectedBg": "#3c3836",
|
|
31
|
+
"userMsgBg": "#1d2021",
|
|
32
|
+
"toolPendingBg": "#32302f",
|
|
33
|
+
"toolSuccessBg": "#1d2021",
|
|
34
|
+
"toolErrorBg": "#3c2021",
|
|
35
|
+
"customMsgBg": "#3c2f36"
|
|
36
|
+
},
|
|
37
|
+
"colors": {
|
|
38
|
+
"accent": "orange",
|
|
39
|
+
"border": "neutralBlue",
|
|
40
|
+
"borderAccent": "aqua",
|
|
41
|
+
"borderMuted": "bg2",
|
|
42
|
+
"success": "green",
|
|
43
|
+
"error": "red",
|
|
44
|
+
"warning": "yellow",
|
|
45
|
+
"muted": "gray",
|
|
46
|
+
"dim": "bg4",
|
|
47
|
+
"text": "",
|
|
48
|
+
"thinkingText": "gray",
|
|
49
|
+
|
|
50
|
+
"selectedBg": "selectedBg",
|
|
51
|
+
"userMessageBg": "userMsgBg",
|
|
52
|
+
"userMessageText": "",
|
|
53
|
+
"customMessageBg": "customMsgBg",
|
|
54
|
+
"customMessageText": "",
|
|
55
|
+
"customMessageLabel": "purple",
|
|
56
|
+
"toolPendingBg": "toolPendingBg",
|
|
57
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
58
|
+
"toolErrorBg": "toolErrorBg",
|
|
59
|
+
"toolText": "",
|
|
60
|
+
"toolTitle": "",
|
|
61
|
+
"toolOutput": "gray",
|
|
62
|
+
|
|
63
|
+
"mdHeading": "yellow",
|
|
64
|
+
"mdLink": "aqua",
|
|
65
|
+
"mdLinkUrl": "bg4",
|
|
66
|
+
"mdCode": "purple",
|
|
67
|
+
"mdCodeBlock": "fg1",
|
|
68
|
+
"mdCodeBlockBorder": "bg2",
|
|
69
|
+
"mdQuote": "gray",
|
|
70
|
+
"mdQuoteBorder": "bg2",
|
|
71
|
+
"mdHr": "bg2",
|
|
72
|
+
"mdListBullet": "orange",
|
|
73
|
+
|
|
74
|
+
"toolDiffAdded": "green",
|
|
75
|
+
"toolDiffRemoved": "red",
|
|
76
|
+
"toolDiffContext": "gray",
|
|
77
|
+
|
|
78
|
+
"link": "aqua",
|
|
79
|
+
|
|
80
|
+
"syntaxComment": "gray",
|
|
81
|
+
"syntaxKeyword": "red",
|
|
82
|
+
"syntaxFunction": "yellow",
|
|
83
|
+
"syntaxVariable": "blue",
|
|
84
|
+
"syntaxString": "green",
|
|
85
|
+
"syntaxNumber": "purple",
|
|
86
|
+
"syntaxType": "aqua",
|
|
87
|
+
"syntaxOperator": "orange",
|
|
88
|
+
"syntaxPunctuation": "fg2",
|
|
89
|
+
|
|
90
|
+
"thinkingOff": "bg2",
|
|
91
|
+
"thinkingMinimal": "bg4",
|
|
92
|
+
"thinkingLow": "neutralBlue",
|
|
93
|
+
"thinkingMedium": "blue",
|
|
94
|
+
"thinkingHigh": "neutralPurple",
|
|
95
|
+
"thinkingXhigh": "purple",
|
|
96
|
+
|
|
97
|
+
"bashMode": "aqua",
|
|
98
|
+
|
|
99
|
+
"statusLineBg": "#1d2021",
|
|
100
|
+
"statusLineSep": "bg3",
|
|
101
|
+
"statusLineModel": "purple",
|
|
102
|
+
"statusLinePath": "aqua",
|
|
103
|
+
"statusLineGitClean": "neutralGreen",
|
|
104
|
+
"statusLineGitDirty": "neutralYellow",
|
|
105
|
+
"statusLineContext": "blue",
|
|
106
|
+
"statusLineSpend": "aqua",
|
|
107
|
+
"statusLineStaged": "neutralGreen",
|
|
108
|
+
"statusLineDirty": "neutralYellow",
|
|
109
|
+
"statusLineUntracked": "blue",
|
|
110
|
+
"statusLineOutput": "purple",
|
|
111
|
+
"statusLineCost": "purple",
|
|
112
|
+
"statusLineSubagents": "orange"
|
|
113
|
+
},
|
|
114
|
+
"export": {
|
|
115
|
+
"pageBg": "#1d2021",
|
|
116
|
+
"cardBg": "#282828",
|
|
117
|
+
"infoBg": "#3c3836"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-monochrome",
|
|
4
|
+
"vars": {
|
|
5
|
+
"accent": "#5fafaf",
|
|
6
|
+
"gray1": "#1a1a1a",
|
|
7
|
+
"gray2": "#2a2a2a",
|
|
8
|
+
"gray3": "#3a3a3a",
|
|
9
|
+
"gray4": "#555555",
|
|
10
|
+
"gray5": "#707070",
|
|
11
|
+
"gray6": "#8a8a8a",
|
|
12
|
+
"gray7": "#a5a5a5",
|
|
13
|
+
"gray8": "#c0c0c0",
|
|
14
|
+
"gray9": "#e0e0e0",
|
|
15
|
+
"errorRed": "#8a5555",
|
|
16
|
+
"warningYellow": "#8a8a55",
|
|
17
|
+
"successGreen": "#558a55"
|
|
18
|
+
},
|
|
19
|
+
"colors": {
|
|
20
|
+
"accent": "accent",
|
|
21
|
+
"border": "gray4",
|
|
22
|
+
"borderAccent": "accent",
|
|
23
|
+
"borderMuted": "gray3",
|
|
24
|
+
"success": "successGreen",
|
|
25
|
+
"error": "errorRed",
|
|
26
|
+
"warning": "warningYellow",
|
|
27
|
+
"muted": "gray6",
|
|
28
|
+
"dim": "gray5",
|
|
29
|
+
"text": "",
|
|
30
|
+
"thinkingText": "gray5",
|
|
31
|
+
|
|
32
|
+
"selectedBg": "gray3",
|
|
33
|
+
"userMessageBg": "gray2",
|
|
34
|
+
"userMessageText": "",
|
|
35
|
+
"customMessageBg": "gray3",
|
|
36
|
+
"customMessageText": "",
|
|
37
|
+
"customMessageLabel": "accent",
|
|
38
|
+
"toolPendingBg": "gray1",
|
|
39
|
+
"toolSuccessBg": "gray2",
|
|
40
|
+
"toolErrorBg": "#2a1a1a",
|
|
41
|
+
"toolText": "",
|
|
42
|
+
"toolTitle": "gray8",
|
|
43
|
+
"toolOutput": "gray6",
|
|
44
|
+
|
|
45
|
+
"mdHeading": "gray9",
|
|
46
|
+
"mdLink": "accent",
|
|
47
|
+
"mdLinkUrl": "gray5",
|
|
48
|
+
"mdCode": "gray8",
|
|
49
|
+
"mdCodeBlock": "gray7",
|
|
50
|
+
"mdCodeBlockBorder": "gray4",
|
|
51
|
+
"mdQuote": "gray6",
|
|
52
|
+
"mdQuoteBorder": "gray4",
|
|
53
|
+
"mdHr": "gray4",
|
|
54
|
+
"mdListBullet": "accent",
|
|
55
|
+
|
|
56
|
+
"toolDiffAdded": "successGreen",
|
|
57
|
+
"toolDiffRemoved": "errorRed",
|
|
58
|
+
"toolDiffContext": "gray6",
|
|
59
|
+
|
|
60
|
+
"link": "accent",
|
|
61
|
+
|
|
62
|
+
"syntaxComment": "gray5",
|
|
63
|
+
"syntaxKeyword": "gray8",
|
|
64
|
+
"syntaxFunction": "gray9",
|
|
65
|
+
"syntaxVariable": "gray7",
|
|
66
|
+
"syntaxString": "gray6",
|
|
67
|
+
"syntaxNumber": "accent",
|
|
68
|
+
"syntaxType": "gray8",
|
|
69
|
+
"syntaxOperator": "gray7",
|
|
70
|
+
"syntaxPunctuation": "gray6",
|
|
71
|
+
|
|
72
|
+
"thinkingOff": "gray3",
|
|
73
|
+
"thinkingMinimal": "gray4",
|
|
74
|
+
"thinkingLow": "gray5",
|
|
75
|
+
"thinkingMedium": "gray6",
|
|
76
|
+
"thinkingHigh": "gray7",
|
|
77
|
+
"thinkingXhigh": "gray8",
|
|
78
|
+
|
|
79
|
+
"bashMode": "accent",
|
|
80
|
+
|
|
81
|
+
"statusLineBg": "#0d0d0d",
|
|
82
|
+
"statusLineSep": "gray4",
|
|
83
|
+
"statusLineModel": "gray7",
|
|
84
|
+
"statusLinePath": "accent",
|
|
85
|
+
"statusLineGitClean": "successGreen",
|
|
86
|
+
"statusLineGitDirty": "warningYellow",
|
|
87
|
+
"statusLineContext": "gray6",
|
|
88
|
+
"statusLineSpend": "accent",
|
|
89
|
+
"statusLineStaged": "successGreen",
|
|
90
|
+
"statusLineDirty": "warningYellow",
|
|
91
|
+
"statusLineUntracked": "gray6",
|
|
92
|
+
"statusLineOutput": "gray7",
|
|
93
|
+
"statusLineCost": "gray7",
|
|
94
|
+
"statusLineSubagents": "accent"
|
|
95
|
+
},
|
|
96
|
+
"export": {
|
|
97
|
+
"pageBg": "#0d0d0d",
|
|
98
|
+
"cardBg": "gray1",
|
|
99
|
+
"infoBg": "gray3"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-monokai",
|
|
4
|
+
"vars": {
|
|
5
|
+
"monokaiBg": "#272822",
|
|
6
|
+
"monokaiText": "#f8f8f2",
|
|
7
|
+
"monokaiComment": "#75715e",
|
|
8
|
+
"monokaiPink": "#f92672",
|
|
9
|
+
"monokaiGreen": "#a6e22e",
|
|
10
|
+
"monokaiYellow": "#e6db74",
|
|
11
|
+
"monokaiOrange": "#fd971f",
|
|
12
|
+
"monokaiCyan": "#66d9ef",
|
|
13
|
+
"monokaiPurple": "#ae81ff",
|
|
14
|
+
"monokaiGray": "#999999",
|
|
15
|
+
"monokaiDarkGray": "#49483e",
|
|
16
|
+
"monokaiDarkerGray": "#3e3d32",
|
|
17
|
+
"userMsgBg": "#1e1f1c",
|
|
18
|
+
"toolPendingBg": "#2a2b26",
|
|
19
|
+
"toolSuccessBg": "#242520",
|
|
20
|
+
"toolErrorBg": "#2e1f1f",
|
|
21
|
+
"customMsgBg": "#2b2530"
|
|
22
|
+
},
|
|
23
|
+
"colors": {
|
|
24
|
+
"accent": "monokaiOrange",
|
|
25
|
+
"border": "monokaiCyan",
|
|
26
|
+
"borderAccent": "monokaiPink",
|
|
27
|
+
"borderMuted": "monokaiDarkGray",
|
|
28
|
+
"success": "monokaiGreen",
|
|
29
|
+
"error": "monokaiPink",
|
|
30
|
+
"warning": "monokaiYellow",
|
|
31
|
+
"muted": "monokaiGray",
|
|
32
|
+
"dim": "monokaiComment",
|
|
33
|
+
"text": "",
|
|
34
|
+
"thinkingText": "monokaiComment",
|
|
35
|
+
|
|
36
|
+
"selectedBg": "monokaiDarkGray",
|
|
37
|
+
"userMessageBg": "userMsgBg",
|
|
38
|
+
"userMessageText": "",
|
|
39
|
+
"customMessageBg": "customMsgBg",
|
|
40
|
+
"customMessageText": "",
|
|
41
|
+
"customMessageLabel": "monokaiPurple",
|
|
42
|
+
"toolPendingBg": "toolPendingBg",
|
|
43
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
44
|
+
"toolErrorBg": "toolErrorBg",
|
|
45
|
+
"toolText": "",
|
|
46
|
+
"toolTitle": "monokaiOrange",
|
|
47
|
+
"toolOutput": "monokaiGray",
|
|
48
|
+
|
|
49
|
+
"mdHeading": "monokaiOrange",
|
|
50
|
+
"mdLink": "monokaiCyan",
|
|
51
|
+
"mdLinkUrl": "monokaiComment",
|
|
52
|
+
"mdCode": "monokaiPurple",
|
|
53
|
+
"mdCodeBlock": "monokaiText",
|
|
54
|
+
"mdCodeBlockBorder": "monokaiDarkGray",
|
|
55
|
+
"mdQuote": "monokaiGray",
|
|
56
|
+
"mdQuoteBorder": "monokaiDarkGray",
|
|
57
|
+
"mdHr": "monokaiDarkGray",
|
|
58
|
+
"mdListBullet": "monokaiOrange",
|
|
59
|
+
|
|
60
|
+
"toolDiffAdded": "monokaiGreen",
|
|
61
|
+
"toolDiffRemoved": "monokaiPink",
|
|
62
|
+
"toolDiffContext": "monokaiGray",
|
|
63
|
+
|
|
64
|
+
"link": "monokaiCyan",
|
|
65
|
+
|
|
66
|
+
"syntaxComment": "monokaiComment",
|
|
67
|
+
"syntaxKeyword": "monokaiPink",
|
|
68
|
+
"syntaxFunction": "monokaiGreen",
|
|
69
|
+
"syntaxVariable": "monokaiCyan",
|
|
70
|
+
"syntaxString": "monokaiYellow",
|
|
71
|
+
"syntaxNumber": "monokaiPurple",
|
|
72
|
+
"syntaxType": "monokaiCyan",
|
|
73
|
+
"syntaxOperator": "monokaiPink",
|
|
74
|
+
"syntaxPunctuation": "monokaiText",
|
|
75
|
+
|
|
76
|
+
"thinkingOff": "monokaiDarkGray",
|
|
77
|
+
"thinkingMinimal": "monokaiComment",
|
|
78
|
+
"thinkingLow": "monokaiCyan",
|
|
79
|
+
"thinkingMedium": "monokaiPurple",
|
|
80
|
+
"thinkingHigh": "monokaiPink",
|
|
81
|
+
"thinkingXhigh": "monokaiOrange",
|
|
82
|
+
|
|
83
|
+
"bashMode": "monokaiGreen",
|
|
84
|
+
|
|
85
|
+
"statusLineBg": "#1a1b17",
|
|
86
|
+
"statusLineSep": "#49483e",
|
|
87
|
+
"statusLineModel": "monokaiPurple",
|
|
88
|
+
"statusLinePath": "monokaiCyan",
|
|
89
|
+
"statusLineGitClean": "monokaiGreen",
|
|
90
|
+
"statusLineGitDirty": "monokaiOrange",
|
|
91
|
+
"statusLineContext": "monokaiPurple",
|
|
92
|
+
"statusLineSpend": "monokaiYellow",
|
|
93
|
+
"statusLineStaged": "monokaiGreen",
|
|
94
|
+
"statusLineDirty": "monokaiOrange",
|
|
95
|
+
"statusLineUntracked": "monokaiCyan",
|
|
96
|
+
"statusLineOutput": "monokaiPink",
|
|
97
|
+
"statusLineCost": "monokaiPink",
|
|
98
|
+
"statusLineSubagents": "monokaiOrange"
|
|
99
|
+
},
|
|
100
|
+
"export": {
|
|
101
|
+
"pageBg": "#1a1b17",
|
|
102
|
+
"cardBg": "#1e1f1c",
|
|
103
|
+
"infoBg": "#3e3d32"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-nord",
|
|
4
|
+
"vars": {
|
|
5
|
+
"nord0": "#2e3440",
|
|
6
|
+
"nord1": "#3b4252",
|
|
7
|
+
"nord2": "#434c5e",
|
|
8
|
+
"nord3": "#4c566a",
|
|
9
|
+
"nord4": "#d8dee9",
|
|
10
|
+
"nord5": "#e5e9f0",
|
|
11
|
+
"nord6": "#eceff4",
|
|
12
|
+
"nord7": "#8fbcbb",
|
|
13
|
+
"nord8": "#88c0d0",
|
|
14
|
+
"nord9": "#81a1c1",
|
|
15
|
+
"nord10": "#5e81ac",
|
|
16
|
+
"nord11": "#bf616a",
|
|
17
|
+
"nord12": "#d08770",
|
|
18
|
+
"nord13": "#ebcb8b",
|
|
19
|
+
"nord14": "#a3be8c",
|
|
20
|
+
"nord15": "#b48ead"
|
|
21
|
+
},
|
|
22
|
+
"colors": {
|
|
23
|
+
"accent": "nord8",
|
|
24
|
+
"border": "nord10",
|
|
25
|
+
"borderAccent": "nord8",
|
|
26
|
+
"borderMuted": "nord2",
|
|
27
|
+
"success": "nord14",
|
|
28
|
+
"error": "nord11",
|
|
29
|
+
"warning": "nord13",
|
|
30
|
+
"muted": "nord3",
|
|
31
|
+
"dim": "nord3",
|
|
32
|
+
"text": "",
|
|
33
|
+
"thinkingText": "nord3",
|
|
34
|
+
|
|
35
|
+
"selectedBg": "nord1",
|
|
36
|
+
"userMessageBg": "nord1",
|
|
37
|
+
"userMessageText": "",
|
|
38
|
+
"customMessageBg": "#3c384f",
|
|
39
|
+
"customMessageText": "",
|
|
40
|
+
"customMessageLabel": "nord15",
|
|
41
|
+
"toolPendingBg": "nord1",
|
|
42
|
+
"toolSuccessBg": "nord0",
|
|
43
|
+
"toolErrorBg": "#3b2f31",
|
|
44
|
+
"toolText": "",
|
|
45
|
+
"toolTitle": "nord8",
|
|
46
|
+
"toolOutput": "nord3",
|
|
47
|
+
|
|
48
|
+
"mdHeading": "nord8",
|
|
49
|
+
"mdLink": "nord8",
|
|
50
|
+
"mdLinkUrl": "nord3",
|
|
51
|
+
"mdCode": "nord7",
|
|
52
|
+
"mdCodeBlock": "nord4",
|
|
53
|
+
"mdCodeBlockBorder": "nord2",
|
|
54
|
+
"mdQuote": "nord4",
|
|
55
|
+
"mdQuoteBorder": "nord3",
|
|
56
|
+
"mdHr": "nord2",
|
|
57
|
+
"mdListBullet": "nord9",
|
|
58
|
+
|
|
59
|
+
"toolDiffAdded": "nord14",
|
|
60
|
+
"toolDiffRemoved": "nord11",
|
|
61
|
+
"toolDiffContext": "nord3",
|
|
62
|
+
|
|
63
|
+
"link": "nord8",
|
|
64
|
+
|
|
65
|
+
"syntaxComment": "nord3",
|
|
66
|
+
"syntaxKeyword": "nord9",
|
|
67
|
+
"syntaxFunction": "nord8",
|
|
68
|
+
"syntaxVariable": "nord4",
|
|
69
|
+
"syntaxString": "nord14",
|
|
70
|
+
"syntaxNumber": "nord15",
|
|
71
|
+
"syntaxType": "nord7",
|
|
72
|
+
"syntaxOperator": "nord9",
|
|
73
|
+
"syntaxPunctuation": "nord6",
|
|
74
|
+
|
|
75
|
+
"thinkingOff": "nord2",
|
|
76
|
+
"thinkingMinimal": "nord3",
|
|
77
|
+
"thinkingLow": "nord10",
|
|
78
|
+
"thinkingMedium": "nord9",
|
|
79
|
+
"thinkingHigh": "nord15",
|
|
80
|
+
"thinkingXhigh": "nord7",
|
|
81
|
+
|
|
82
|
+
"bashMode": "nord8",
|
|
83
|
+
|
|
84
|
+
"statusLineBg": "nord0",
|
|
85
|
+
"statusLineSep": "nord3",
|
|
86
|
+
"statusLineModel": "nord15",
|
|
87
|
+
"statusLinePath": "nord7",
|
|
88
|
+
"statusLineGitClean": "nord14",
|
|
89
|
+
"statusLineGitDirty": "nord13",
|
|
90
|
+
"statusLineContext": "nord9",
|
|
91
|
+
"statusLineSpend": "nord8",
|
|
92
|
+
"statusLineStaged": "nord14",
|
|
93
|
+
"statusLineDirty": "nord13",
|
|
94
|
+
"statusLineUntracked": "nord8",
|
|
95
|
+
"statusLineOutput": "nord12",
|
|
96
|
+
"statusLineCost": "nord12",
|
|
97
|
+
"statusLineSubagents": "nord8"
|
|
98
|
+
},
|
|
99
|
+
"export": {
|
|
100
|
+
"pageBg": "nord0",
|
|
101
|
+
"cardBg": "nord1",
|
|
102
|
+
"infoBg": "nord2"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-ocean",
|
|
4
|
+
"vars": {
|
|
5
|
+
"deepSeaBlue": "#0B132B",
|
|
6
|
+
"navyBlue": "#1C2541",
|
|
7
|
+
"oceanBlue": "#3A506B",
|
|
8
|
+
"teal": "#5BC0BE",
|
|
9
|
+
"aquamarine": "#6FFFE9",
|
|
10
|
+
"coral": "#FF8B6D",
|
|
11
|
+
"brightCoral": "#FF6F5E",
|
|
12
|
+
"seafoamGreen": "#A7F0E8",
|
|
13
|
+
"abyssBlack": "#050A1A",
|
|
14
|
+
"deepWater": "#0D1B2A",
|
|
15
|
+
"midWater": "#1B263B",
|
|
16
|
+
"surfaceWater": "#415A77",
|
|
17
|
+
"mutedTeal": "#778DA9",
|
|
18
|
+
"dimTeal": "#5A7B99",
|
|
19
|
+
"darkBorder": "#1E2D3F",
|
|
20
|
+
"userMsgBg": "#0F1A28",
|
|
21
|
+
"toolPendingBg": "#0D1520",
|
|
22
|
+
"toolSuccessBg": "#0A1418",
|
|
23
|
+
"toolErrorBg": "#1A0D0F",
|
|
24
|
+
"customMsgBg": "#152535"
|
|
25
|
+
},
|
|
26
|
+
"colors": {
|
|
27
|
+
"accent": "coral",
|
|
28
|
+
"border": "teal",
|
|
29
|
+
"borderAccent": "aquamarine",
|
|
30
|
+
"borderMuted": "darkBorder",
|
|
31
|
+
"success": "seafoamGreen",
|
|
32
|
+
"error": "brightCoral",
|
|
33
|
+
"warning": "#FFD166",
|
|
34
|
+
"muted": "mutedTeal",
|
|
35
|
+
"dim": "dimTeal",
|
|
36
|
+
"text": "",
|
|
37
|
+
"thinkingText": "mutedTeal",
|
|
38
|
+
|
|
39
|
+
"selectedBg": "midWater",
|
|
40
|
+
"userMessageBg": "userMsgBg",
|
|
41
|
+
"userMessageText": "",
|
|
42
|
+
"customMessageBg": "customMsgBg",
|
|
43
|
+
"customMessageText": "",
|
|
44
|
+
"customMessageLabel": "aquamarine",
|
|
45
|
+
"toolPendingBg": "toolPendingBg",
|
|
46
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
47
|
+
"toolErrorBg": "toolErrorBg",
|
|
48
|
+
"toolText": "",
|
|
49
|
+
"toolTitle": "",
|
|
50
|
+
"toolOutput": "mutedTeal",
|
|
51
|
+
|
|
52
|
+
"mdHeading": "coral",
|
|
53
|
+
"mdLink": "aquamarine",
|
|
54
|
+
"mdLinkUrl": "dimTeal",
|
|
55
|
+
"mdCode": "#D4A5FF",
|
|
56
|
+
"mdCodeBlock": "seafoamGreen",
|
|
57
|
+
"mdCodeBlockBorder": "darkBorder",
|
|
58
|
+
"mdQuote": "mutedTeal",
|
|
59
|
+
"mdQuoteBorder": "darkBorder",
|
|
60
|
+
"mdHr": "darkBorder",
|
|
61
|
+
"mdListBullet": "coral",
|
|
62
|
+
|
|
63
|
+
"toolDiffAdded": "seafoamGreen",
|
|
64
|
+
"toolDiffRemoved": "brightCoral",
|
|
65
|
+
"toolDiffContext": "mutedTeal",
|
|
66
|
+
|
|
67
|
+
"link": "aquamarine",
|
|
68
|
+
|
|
69
|
+
"syntaxComment": "#5A7B99",
|
|
70
|
+
"syntaxKeyword": "#6FFFE9",
|
|
71
|
+
"syntaxFunction": "#FFD166",
|
|
72
|
+
"syntaxVariable": "#A7F0E8",
|
|
73
|
+
"syntaxString": "#FF8B6D",
|
|
74
|
+
"syntaxNumber": "#5BC0BE",
|
|
75
|
+
"syntaxType": "#5BC0BE",
|
|
76
|
+
"syntaxOperator": "#778DA9",
|
|
77
|
+
"syntaxPunctuation": "#778DA9",
|
|
78
|
+
|
|
79
|
+
"thinkingOff": "darkBorder",
|
|
80
|
+
"thinkingMinimal": "dimTeal",
|
|
81
|
+
"thinkingLow": "oceanBlue",
|
|
82
|
+
"thinkingMedium": "teal",
|
|
83
|
+
"thinkingHigh": "aquamarine",
|
|
84
|
+
"thinkingXhigh": "#D4A5FF",
|
|
85
|
+
|
|
86
|
+
"bashMode": "aquamarine",
|
|
87
|
+
|
|
88
|
+
"statusLineBg": "abyssBlack",
|
|
89
|
+
"statusLineSep": 236,
|
|
90
|
+
"statusLineModel": "coral",
|
|
91
|
+
"statusLinePath": "teal",
|
|
92
|
+
"statusLineGitClean": "seafoamGreen",
|
|
93
|
+
"statusLineGitDirty": "#FFD166",
|
|
94
|
+
"statusLineContext": "#778DA9",
|
|
95
|
+
"statusLineSpend": "teal",
|
|
96
|
+
"statusLineStaged": 37,
|
|
97
|
+
"statusLineDirty": 214,
|
|
98
|
+
"statusLineUntracked": 87,
|
|
99
|
+
"statusLineOutput": 204,
|
|
100
|
+
"statusLineCost": 204,
|
|
101
|
+
"statusLineSubagents": "coral"
|
|
102
|
+
},
|
|
103
|
+
"export": {
|
|
104
|
+
"pageBg": "abyssBlack",
|
|
105
|
+
"cardBg": "deepWater",
|
|
106
|
+
"infoBg": "midWater"
|
|
107
|
+
}
|
|
108
|
+
}
|