@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,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-tokyo-night",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#1a1b26",
|
|
6
|
+
"bgDark": "#16161e",
|
|
7
|
+
"fg": "#a9b1d6",
|
|
8
|
+
"comment": "#51597d",
|
|
9
|
+
"cyan": "#7dcfff",
|
|
10
|
+
"blue": "#7aa2f7",
|
|
11
|
+
"purple": "#bb9af7",
|
|
12
|
+
"magenta": "#bb9af7",
|
|
13
|
+
"green": "#9ece6a",
|
|
14
|
+
"teal": "#73daca",
|
|
15
|
+
"darkTeal": "#2ac3de",
|
|
16
|
+
"orange": "#ff9e64",
|
|
17
|
+
"yellow": "#e0af68",
|
|
18
|
+
"red": "#f7768e",
|
|
19
|
+
"darkRed": "#db4b4b",
|
|
20
|
+
"gray": "#363b54",
|
|
21
|
+
"dimGray": "#51597d",
|
|
22
|
+
"lightBlue": "#c0caf5",
|
|
23
|
+
"cyan2": "#0db9d7",
|
|
24
|
+
"statusBg": "#0f1019",
|
|
25
|
+
"selectedBg": "#2a2f41"
|
|
26
|
+
},
|
|
27
|
+
"colors": {
|
|
28
|
+
"accent": "purple",
|
|
29
|
+
"border": "blue",
|
|
30
|
+
"borderAccent": "cyan",
|
|
31
|
+
"borderMuted": "gray",
|
|
32
|
+
"success": "green",
|
|
33
|
+
"error": "darkRed",
|
|
34
|
+
"warning": "yellow",
|
|
35
|
+
"muted": "comment",
|
|
36
|
+
"dim": "dimGray",
|
|
37
|
+
"text": "",
|
|
38
|
+
"thinkingText": "dimGray",
|
|
39
|
+
|
|
40
|
+
"selectedBg": "selectedBg",
|
|
41
|
+
"userMessageBg": "bgDark",
|
|
42
|
+
"userMessageText": "",
|
|
43
|
+
"customMessageBg": "#221d2e",
|
|
44
|
+
"customMessageText": "",
|
|
45
|
+
"customMessageLabel": "purple",
|
|
46
|
+
"toolPendingBg": "#1a1e2e",
|
|
47
|
+
"toolSuccessBg": "#16191f",
|
|
48
|
+
"toolErrorBg": "#291d1d",
|
|
49
|
+
"toolTitle": "purple",
|
|
50
|
+
"toolOutput": "dimGray",
|
|
51
|
+
|
|
52
|
+
"mdHeading": "purple",
|
|
53
|
+
"mdLink": "cyan",
|
|
54
|
+
"mdLinkUrl": "dimGray",
|
|
55
|
+
"mdCode": "lightBlue",
|
|
56
|
+
"mdCodeBlock": "fg",
|
|
57
|
+
"mdCodeBlockBorder": "gray",
|
|
58
|
+
"mdQuote": "comment",
|
|
59
|
+
"mdQuoteBorder": "gray",
|
|
60
|
+
"mdHr": "gray",
|
|
61
|
+
"mdListBullet": "cyan",
|
|
62
|
+
|
|
63
|
+
"toolDiffAdded": "green",
|
|
64
|
+
"toolDiffRemoved": "red",
|
|
65
|
+
"toolDiffContext": "comment",
|
|
66
|
+
|
|
67
|
+
"link": "cyan",
|
|
68
|
+
|
|
69
|
+
"syntaxComment": "comment",
|
|
70
|
+
"syntaxKeyword": "purple",
|
|
71
|
+
"syntaxFunction": "blue",
|
|
72
|
+
"syntaxVariable": "lightBlue",
|
|
73
|
+
"syntaxString": "green",
|
|
74
|
+
"syntaxNumber": "orange",
|
|
75
|
+
"syntaxType": "cyan2",
|
|
76
|
+
"syntaxOperator": "fg",
|
|
77
|
+
"syntaxPunctuation": "fg",
|
|
78
|
+
|
|
79
|
+
"thinkingOff": "gray",
|
|
80
|
+
"thinkingMinimal": "dimGray",
|
|
81
|
+
"thinkingLow": "blue",
|
|
82
|
+
"thinkingMedium": "cyan",
|
|
83
|
+
"thinkingHigh": "purple",
|
|
84
|
+
"thinkingXhigh": "#c9a0ff",
|
|
85
|
+
|
|
86
|
+
"bashMode": "cyan",
|
|
87
|
+
|
|
88
|
+
"statusLineBg": "statusBg",
|
|
89
|
+
"statusLineSep": 238,
|
|
90
|
+
"statusLineModel": "purple",
|
|
91
|
+
"statusLinePath": "cyan",
|
|
92
|
+
"statusLineGitClean": "green",
|
|
93
|
+
"statusLineGitDirty": "yellow",
|
|
94
|
+
"statusLineContext": "blue",
|
|
95
|
+
"statusLineSpend": "teal",
|
|
96
|
+
"statusLineStaged": 70,
|
|
97
|
+
"statusLineDirty": 178,
|
|
98
|
+
"statusLineUntracked": 39,
|
|
99
|
+
"statusLineOutput": 205,
|
|
100
|
+
"statusLineCost": 205,
|
|
101
|
+
"statusLineSubagents": "orange"
|
|
102
|
+
},
|
|
103
|
+
"export": {
|
|
104
|
+
"pageBg": "#16161e",
|
|
105
|
+
"cardBg": "#1a1b26",
|
|
106
|
+
"infoBg": "#2a2639"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import dark_arctic from "./dark-arctic.json" with { type: "json" };
|
|
2
|
+
import dark_catppuccin from "./dark-catppuccin.json" with { type: "json" };
|
|
3
|
+
import dark_cyberpunk from "./dark-cyberpunk.json" with { type: "json" };
|
|
4
|
+
import dark_dracula from "./dark-dracula.json" with { type: "json" };
|
|
5
|
+
import dark_forest from "./dark-forest.json" with { type: "json" };
|
|
6
|
+
import dark_github from "./dark-github.json" with { type: "json" };
|
|
7
|
+
import dark_gruvbox from "./dark-gruvbox.json" with { type: "json" };
|
|
8
|
+
import dark_monochrome from "./dark-monochrome.json" with { type: "json" };
|
|
9
|
+
import dark_monokai from "./dark-monokai.json" with { type: "json" };
|
|
10
|
+
import dark_nord from "./dark-nord.json" with { type: "json" };
|
|
11
|
+
import dark_ocean from "./dark-ocean.json" with { type: "json" };
|
|
12
|
+
import dark_one from "./dark-one.json" with { type: "json" };
|
|
13
|
+
import dark_retro from "./dark-retro.json" with { type: "json" };
|
|
14
|
+
import dark_rose_pine from "./dark-rose-pine.json" with { type: "json" };
|
|
15
|
+
import dark_solarized from "./dark-solarized.json" with { type: "json" };
|
|
16
|
+
import dark_sunset from "./dark-sunset.json" with { type: "json" };
|
|
17
|
+
import dark_synthwave from "./dark-synthwave.json" with { type: "json" };
|
|
18
|
+
import dark_tokyo_night from "./dark-tokyo-night.json" with { type: "json" };
|
|
19
|
+
import light_arctic from "./light-arctic.json" with { type: "json" };
|
|
20
|
+
import light_catppuccin from "./light-catppuccin.json" with { type: "json" };
|
|
21
|
+
import light_cyberpunk from "./light-cyberpunk.json" with { type: "json" };
|
|
22
|
+
import light_forest from "./light-forest.json" with { type: "json" };
|
|
23
|
+
import light_github from "./light-github.json" with { type: "json" };
|
|
24
|
+
import light_gruvbox from "./light-gruvbox.json" with { type: "json" };
|
|
25
|
+
import light_monochrome from "./light-monochrome.json" with { type: "json" };
|
|
26
|
+
import light_ocean from "./light-ocean.json" with { type: "json" };
|
|
27
|
+
import light_one from "./light-one.json" with { type: "json" };
|
|
28
|
+
import light_retro from "./light-retro.json" with { type: "json" };
|
|
29
|
+
import light_solarized from "./light-solarized.json" with { type: "json" };
|
|
30
|
+
import light_sunset from "./light-sunset.json" with { type: "json" };
|
|
31
|
+
import light_synthwave from "./light-synthwave.json" with { type: "json" };
|
|
32
|
+
import light_tokyo_night from "./light-tokyo-night.json" with { type: "json" };
|
|
33
|
+
|
|
34
|
+
export const defaultThemes = {
|
|
35
|
+
"dark-arctic": dark_arctic,
|
|
36
|
+
"dark-catppuccin": dark_catppuccin,
|
|
37
|
+
"dark-cyberpunk": dark_cyberpunk,
|
|
38
|
+
"dark-dracula": dark_dracula,
|
|
39
|
+
"dark-forest": dark_forest,
|
|
40
|
+
"dark-github": dark_github,
|
|
41
|
+
"dark-gruvbox": dark_gruvbox,
|
|
42
|
+
"dark-monochrome": dark_monochrome,
|
|
43
|
+
"dark-monokai": dark_monokai,
|
|
44
|
+
"dark-nord": dark_nord,
|
|
45
|
+
"dark-ocean": dark_ocean,
|
|
46
|
+
"dark-one": dark_one,
|
|
47
|
+
"dark-retro": dark_retro,
|
|
48
|
+
"dark-rose-pine": dark_rose_pine,
|
|
49
|
+
"dark-solarized": dark_solarized,
|
|
50
|
+
"dark-sunset": dark_sunset,
|
|
51
|
+
"dark-synthwave": dark_synthwave,
|
|
52
|
+
"dark-tokyo-night": dark_tokyo_night,
|
|
53
|
+
"light-arctic": light_arctic,
|
|
54
|
+
"light-catppuccin": light_catppuccin,
|
|
55
|
+
"light-cyberpunk": light_cyberpunk,
|
|
56
|
+
"light-forest": light_forest,
|
|
57
|
+
"light-github": light_github,
|
|
58
|
+
"light-gruvbox": light_gruvbox,
|
|
59
|
+
"light-monochrome": light_monochrome,
|
|
60
|
+
"light-ocean": light_ocean,
|
|
61
|
+
"light-one": light_one,
|
|
62
|
+
"light-retro": light_retro,
|
|
63
|
+
"light-solarized": light_solarized,
|
|
64
|
+
"light-sunset": light_sunset,
|
|
65
|
+
"light-synthwave": light_synthwave,
|
|
66
|
+
"light-tokyo-night": light_tokyo_night,
|
|
67
|
+
};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "light-arctic",
|
|
4
|
+
"vars": {
|
|
5
|
+
"snow0": "#FFFFFF",
|
|
6
|
+
"snow1": "#F8F9FA",
|
|
7
|
+
"snow2": "#ECEFF4",
|
|
8
|
+
"snow3": "#E5E9F0",
|
|
9
|
+
"ice0": "#D8DEE9",
|
|
10
|
+
"ice1": "#C2C9D6",
|
|
11
|
+
"ice2": "#B4BCC8",
|
|
12
|
+
"frost0": "#8FBCBB",
|
|
13
|
+
"frost1": "#88C0D0",
|
|
14
|
+
"frost2": "#81A1C1",
|
|
15
|
+
"frost3": "#5E81AC",
|
|
16
|
+
"polar0": "#2E3440",
|
|
17
|
+
"polar1": "#3B4252",
|
|
18
|
+
"polar2": "#434C5E",
|
|
19
|
+
"polar3": "#4C566A",
|
|
20
|
+
"aurora0": "#BF616A",
|
|
21
|
+
"aurora1": "#D08770",
|
|
22
|
+
"aurora2": "#EBCB8B",
|
|
23
|
+
"aurora3": "#A3BE8C",
|
|
24
|
+
"aurora4": "#B48EAD",
|
|
25
|
+
"userMsgBg": "#F0F4F8",
|
|
26
|
+
"toolPendingBg": "#EEF3FA",
|
|
27
|
+
"toolSuccessBg": "#EDF6F0",
|
|
28
|
+
"toolErrorBg": "#FAF0F0",
|
|
29
|
+
"customMsgBg": "#F3EFF8",
|
|
30
|
+
"selectedBg": "#DFE6ED"
|
|
31
|
+
},
|
|
32
|
+
"colors": {
|
|
33
|
+
"accent": "frost0",
|
|
34
|
+
"border": "frost2",
|
|
35
|
+
"borderAccent": "frost1",
|
|
36
|
+
"borderMuted": "ice1",
|
|
37
|
+
"success": "aurora3",
|
|
38
|
+
"error": "aurora0",
|
|
39
|
+
"warning": "aurora2",
|
|
40
|
+
"muted": "polar3",
|
|
41
|
+
"dim": "ice2",
|
|
42
|
+
"text": "",
|
|
43
|
+
"thinkingText": "polar3",
|
|
44
|
+
"selectedBg": "selectedBg",
|
|
45
|
+
"userMessageBg": "userMsgBg",
|
|
46
|
+
"userMessageText": "",
|
|
47
|
+
"customMessageBg": "customMsgBg",
|
|
48
|
+
"customMessageText": "",
|
|
49
|
+
"customMessageLabel": "aurora4",
|
|
50
|
+
"toolPendingBg": "toolPendingBg",
|
|
51
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
52
|
+
"toolErrorBg": "toolErrorBg",
|
|
53
|
+
"toolText": "",
|
|
54
|
+
"toolTitle": "",
|
|
55
|
+
"toolOutput": "polar3",
|
|
56
|
+
"mdHeading": "frost3",
|
|
57
|
+
"mdLink": "frost2",
|
|
58
|
+
"mdLinkUrl": "ice2",
|
|
59
|
+
"mdCode": "frost0",
|
|
60
|
+
"mdCodeBlock": "polar2",
|
|
61
|
+
"mdCodeBlockBorder": "ice1",
|
|
62
|
+
"mdQuote": "polar3",
|
|
63
|
+
"mdQuoteBorder": "ice1",
|
|
64
|
+
"mdHr": "ice1",
|
|
65
|
+
"mdListBullet": "frost1",
|
|
66
|
+
"toolDiffAdded": "aurora3",
|
|
67
|
+
"toolDiffRemoved": "aurora0",
|
|
68
|
+
"toolDiffContext": "polar3",
|
|
69
|
+
"link": "frost2",
|
|
70
|
+
"syntaxComment": "#6C7A89",
|
|
71
|
+
"syntaxKeyword": "#5E81AC",
|
|
72
|
+
"syntaxFunction": "#88C0D0",
|
|
73
|
+
"syntaxVariable": "#434C5E",
|
|
74
|
+
"syntaxString": "#A3BE8C",
|
|
75
|
+
"syntaxNumber": "#B48EAD",
|
|
76
|
+
"syntaxType": "#8FBCBB",
|
|
77
|
+
"syntaxOperator": "#4C566A",
|
|
78
|
+
"syntaxPunctuation": "#4C566A",
|
|
79
|
+
"thinkingOff": "ice1",
|
|
80
|
+
"thinkingMinimal": "ice2",
|
|
81
|
+
"thinkingLow": "frost2",
|
|
82
|
+
"thinkingMedium": "frost1",
|
|
83
|
+
"thinkingHigh": "aurora4",
|
|
84
|
+
"thinkingXhigh": "#7B68A6",
|
|
85
|
+
"bashMode": "aurora3",
|
|
86
|
+
"statusLineBg": "snow2",
|
|
87
|
+
"statusLineSep": "ice1",
|
|
88
|
+
"statusLineModel": "aurora4",
|
|
89
|
+
"statusLinePath": "frost3",
|
|
90
|
+
"statusLineGitClean": "aurora3",
|
|
91
|
+
"statusLineGitDirty": "aurora1",
|
|
92
|
+
"statusLineContext": "frost2",
|
|
93
|
+
"statusLineSpend": "frost0",
|
|
94
|
+
"statusLineStaged": 108,
|
|
95
|
+
"statusLineDirty": 173,
|
|
96
|
+
"statusLineUntracked": 109,
|
|
97
|
+
"statusLineOutput": 139,
|
|
98
|
+
"statusLineCost": 139,
|
|
99
|
+
"statusLineSubagents": "frost1"
|
|
100
|
+
},
|
|
101
|
+
"export": {
|
|
102
|
+
"pageBg": "#FAFBFC",
|
|
103
|
+
"cardBg": "#FFFFFF",
|
|
104
|
+
"infoBg": "#F0F4F8"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "light-catppuccin",
|
|
4
|
+
"vars": {
|
|
5
|
+
"rosewater": "#dc8a78",
|
|
6
|
+
"flamingo": "#dd7878",
|
|
7
|
+
"pink": "#ea76cb",
|
|
8
|
+
"mauve": "#8839ef",
|
|
9
|
+
"red": "#d20f39",
|
|
10
|
+
"maroon": "#e64553",
|
|
11
|
+
"peach": "#fe640b",
|
|
12
|
+
"yellow": "#df8e1d",
|
|
13
|
+
"green": "#40a02b",
|
|
14
|
+
"teal": "#179299",
|
|
15
|
+
"sky": "#04a5e5",
|
|
16
|
+
"sapphire": "#209fb5",
|
|
17
|
+
"blue": "#1e66f5",
|
|
18
|
+
"lavender": "#7287fd",
|
|
19
|
+
"text": "#4c4f69",
|
|
20
|
+
"subtext1": "#5c5f77",
|
|
21
|
+
"subtext0": "#6c6f85",
|
|
22
|
+
"overlay2": "#7c7f93",
|
|
23
|
+
"overlay1": "#8c8fa1",
|
|
24
|
+
"overlay0": "#9ca0b0",
|
|
25
|
+
"surface2": "#acb0be",
|
|
26
|
+
"surface1": "#bcc0cc",
|
|
27
|
+
"surface0": "#ccd0da",
|
|
28
|
+
"base": "#eff1f5",
|
|
29
|
+
"mantle": "#e6e9ef",
|
|
30
|
+
"crust": "#dce0e8"
|
|
31
|
+
},
|
|
32
|
+
"colors": {
|
|
33
|
+
"accent": "mauve",
|
|
34
|
+
"border": "lavender",
|
|
35
|
+
"borderAccent": "sapphire",
|
|
36
|
+
"borderMuted": "surface1",
|
|
37
|
+
"success": "green",
|
|
38
|
+
"error": "red",
|
|
39
|
+
"warning": "yellow",
|
|
40
|
+
"muted": "subtext0",
|
|
41
|
+
"dim": "overlay1",
|
|
42
|
+
"text": "",
|
|
43
|
+
"thinkingText": "overlay0",
|
|
44
|
+
"selectedBg": "surface0",
|
|
45
|
+
"userMessageBg": "mantle",
|
|
46
|
+
"userMessageText": "",
|
|
47
|
+
"customMessageBg": "surface0",
|
|
48
|
+
"customMessageText": "",
|
|
49
|
+
"customMessageLabel": "mauve",
|
|
50
|
+
"toolPendingBg": "surface0",
|
|
51
|
+
"toolSuccessBg": "mantle",
|
|
52
|
+
"toolErrorBg": "mantle",
|
|
53
|
+
"toolTitle": "blue",
|
|
54
|
+
"toolOutput": "subtext0",
|
|
55
|
+
"mdHeading": "peach",
|
|
56
|
+
"mdLink": "blue",
|
|
57
|
+
"mdLinkUrl": "overlay1",
|
|
58
|
+
"mdCode": "teal",
|
|
59
|
+
"mdCodeBlock": "green",
|
|
60
|
+
"mdCodeBlockBorder": "surface2",
|
|
61
|
+
"mdQuote": "subtext0",
|
|
62
|
+
"mdQuoteBorder": "surface2",
|
|
63
|
+
"mdHr": "surface2",
|
|
64
|
+
"mdListBullet": "sapphire",
|
|
65
|
+
"toolDiffAdded": "green",
|
|
66
|
+
"toolDiffRemoved": "red",
|
|
67
|
+
"toolDiffContext": "overlay0",
|
|
68
|
+
"link": "blue",
|
|
69
|
+
"syntaxComment": "overlay1",
|
|
70
|
+
"syntaxKeyword": "mauve",
|
|
71
|
+
"syntaxFunction": "blue",
|
|
72
|
+
"syntaxVariable": "text",
|
|
73
|
+
"syntaxString": "green",
|
|
74
|
+
"syntaxNumber": "peach",
|
|
75
|
+
"syntaxType": "yellow",
|
|
76
|
+
"syntaxOperator": "sky",
|
|
77
|
+
"syntaxPunctuation": "overlay2",
|
|
78
|
+
"thinkingOff": "surface1",
|
|
79
|
+
"thinkingMinimal": "overlay0",
|
|
80
|
+
"thinkingLow": "blue",
|
|
81
|
+
"thinkingMedium": "sapphire",
|
|
82
|
+
"thinkingHigh": "mauve",
|
|
83
|
+
"thinkingXhigh": "pink",
|
|
84
|
+
"bashMode": "green",
|
|
85
|
+
"statusLineBg": "crust",
|
|
86
|
+
"statusLineSep": "surface1",
|
|
87
|
+
"statusLineModel": "pink",
|
|
88
|
+
"statusLinePath": "teal",
|
|
89
|
+
"statusLineGitClean": "green",
|
|
90
|
+
"statusLineGitDirty": "yellow",
|
|
91
|
+
"statusLineContext": "lavender",
|
|
92
|
+
"statusLineSpend": "sapphire",
|
|
93
|
+
"statusLineStaged": "green",
|
|
94
|
+
"statusLineDirty": "peach",
|
|
95
|
+
"statusLineUntracked": "sky",
|
|
96
|
+
"statusLineOutput": "mauve",
|
|
97
|
+
"statusLineCost": "maroon",
|
|
98
|
+
"statusLineSubagents": "mauve"
|
|
99
|
+
},
|
|
100
|
+
"export": {
|
|
101
|
+
"pageBg": "base",
|
|
102
|
+
"cardBg": "mantle",
|
|
103
|
+
"infoBg": "surface0"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "light-cyberpunk",
|
|
4
|
+
"vars": {
|
|
5
|
+
"neonPink": "#FF007A",
|
|
6
|
+
"neonMagenta": "#EA00D9",
|
|
7
|
+
"electricBlue": "#00BFFF",
|
|
8
|
+
"deepMagenta": "#D600FF",
|
|
9
|
+
"acidGreen": "#00FF9F",
|
|
10
|
+
"cyberPurple": "#8E44AD",
|
|
11
|
+
"darkNavy": "#1B1B2A",
|
|
12
|
+
"offWhite": "#F5F5F7",
|
|
13
|
+
"lightGray": "#E8E8EA",
|
|
14
|
+
"mediumGray": "#6B6B70",
|
|
15
|
+
"dimGray": "#9A9AA0",
|
|
16
|
+
"pinkTint": "#FFE8F5",
|
|
17
|
+
"blueTint": "#E8F8FF",
|
|
18
|
+
"purpleTint": "#F0E8FF",
|
|
19
|
+
"greenTint": "#E8FFF8"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"accent": "neonMagenta",
|
|
23
|
+
"border": "electricBlue",
|
|
24
|
+
"borderAccent": "neonPink",
|
|
25
|
+
"borderMuted": "dimGray",
|
|
26
|
+
"success": "acidGreen",
|
|
27
|
+
"error": "neonPink",
|
|
28
|
+
"warning": "#FFEA00",
|
|
29
|
+
"muted": "mediumGray",
|
|
30
|
+
"dim": "dimGray",
|
|
31
|
+
"text": "darkNavy",
|
|
32
|
+
"thinkingText": "cyberPurple",
|
|
33
|
+
|
|
34
|
+
"selectedBg": "purpleTint",
|
|
35
|
+
"userMessageBg": "pinkTint",
|
|
36
|
+
"userMessageText": "darkNavy",
|
|
37
|
+
"customMessageBg": "blueTint",
|
|
38
|
+
"customMessageText": "darkNavy",
|
|
39
|
+
"customMessageLabel": "neonMagenta",
|
|
40
|
+
"toolPendingBg": "purpleTint",
|
|
41
|
+
"toolSuccessBg": "greenTint",
|
|
42
|
+
"toolErrorBg": "pinkTint",
|
|
43
|
+
"toolText": "darkNavy",
|
|
44
|
+
"toolTitle": "neonMagenta",
|
|
45
|
+
"toolOutput": "mediumGray",
|
|
46
|
+
|
|
47
|
+
"mdHeading": "neonMagenta",
|
|
48
|
+
"mdLink": "electricBlue",
|
|
49
|
+
"mdLinkUrl": "cyberPurple",
|
|
50
|
+
"mdCode": "neonPink",
|
|
51
|
+
"mdCodeBlock": "deepMagenta",
|
|
52
|
+
"mdCodeBlockBorder": "electricBlue",
|
|
53
|
+
"mdQuote": "cyberPurple",
|
|
54
|
+
"mdQuoteBorder": "neonMagenta",
|
|
55
|
+
"mdHr": "electricBlue",
|
|
56
|
+
"mdListBullet": "acidGreen",
|
|
57
|
+
|
|
58
|
+
"toolDiffAdded": "acidGreen",
|
|
59
|
+
"toolDiffRemoved": "neonPink",
|
|
60
|
+
"toolDiffContext": "mediumGray",
|
|
61
|
+
|
|
62
|
+
"link": "electricBlue",
|
|
63
|
+
|
|
64
|
+
"syntaxComment": "#6B6B70",
|
|
65
|
+
"syntaxKeyword": "#D600FF",
|
|
66
|
+
"syntaxFunction": "#EA00D9",
|
|
67
|
+
"syntaxVariable": "#1B1B2A",
|
|
68
|
+
"syntaxString": "#FF007A",
|
|
69
|
+
"syntaxNumber": "#00FF9F",
|
|
70
|
+
"syntaxType": "#00BFFF",
|
|
71
|
+
"syntaxOperator": "#8E44AD",
|
|
72
|
+
"syntaxPunctuation": "#6B6B70",
|
|
73
|
+
|
|
74
|
+
"thinkingOff": "lightGray",
|
|
75
|
+
"thinkingMinimal": "dimGray",
|
|
76
|
+
"thinkingLow": "electricBlue",
|
|
77
|
+
"thinkingMedium": "cyberPurple",
|
|
78
|
+
"thinkingHigh": "neonMagenta",
|
|
79
|
+
"thinkingXhigh": "deepMagenta",
|
|
80
|
+
|
|
81
|
+
"bashMode": "acidGreen",
|
|
82
|
+
|
|
83
|
+
"statusLineBg": "lightGray",
|
|
84
|
+
"statusLineSep": "neonMagenta",
|
|
85
|
+
"statusLineModel": "deepMagenta",
|
|
86
|
+
"statusLinePath": "electricBlue",
|
|
87
|
+
"statusLineGitClean": "acidGreen",
|
|
88
|
+
"statusLineGitDirty": "neonPink",
|
|
89
|
+
"statusLineContext": "cyberPurple",
|
|
90
|
+
"statusLineSpend": "neonMagenta",
|
|
91
|
+
"statusLineStaged": "#00FF9F",
|
|
92
|
+
"statusLineDirty": "#FFEA00",
|
|
93
|
+
"statusLineUntracked": "#00BFFF",
|
|
94
|
+
"statusLineOutput": "deepMagenta",
|
|
95
|
+
"statusLineCost": "neonPink",
|
|
96
|
+
"statusLineSubagents": "neonMagenta"
|
|
97
|
+
},
|
|
98
|
+
"export": {
|
|
99
|
+
"pageBg": "offWhite",
|
|
100
|
+
"cardBg": "#FFFFFF",
|
|
101
|
+
"infoBg": "purpleTint"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "light-forest",
|
|
4
|
+
"vars": {
|
|
5
|
+
"fernGreen": "#4f7942",
|
|
6
|
+
"mossGreen": "#7e8c54",
|
|
7
|
+
"sageGreen": "#9caf88",
|
|
8
|
+
"oliveBrown": "#636b2f",
|
|
9
|
+
"cream": "#fdfbd4",
|
|
10
|
+
"bark": "#8b7355",
|
|
11
|
+
"softBrown": "#a0877f",
|
|
12
|
+
"lichen": "#c2c6a7",
|
|
13
|
+
"sunlitGreen": "#b5c99a",
|
|
14
|
+
"forestShadow": "#3d5a3c",
|
|
15
|
+
"earthGray": "#7a7466",
|
|
16
|
+
"lightEarth": "#e8e4d9",
|
|
17
|
+
"burnishedOrange": "#be5103",
|
|
18
|
+
"deepOlive": "#4f5c2e",
|
|
19
|
+
"paleLeaf": "#dde5b6",
|
|
20
|
+
"softMint": "#d4e4c9",
|
|
21
|
+
"acornBrown": "#8c6d46",
|
|
22
|
+
"morningDew": "#f8f6e8",
|
|
23
|
+
"twilightGreen": "#2d4a2c",
|
|
24
|
+
"amberGlow": "#c99a3e"
|
|
25
|
+
},
|
|
26
|
+
"colors": {
|
|
27
|
+
"accent": "fernGreen",
|
|
28
|
+
"border": "mossGreen",
|
|
29
|
+
"borderAccent": "fernGreen",
|
|
30
|
+
"borderMuted": "lichen",
|
|
31
|
+
"success": "sageGreen",
|
|
32
|
+
"error": "burnishedOrange",
|
|
33
|
+
"warning": "oliveBrown",
|
|
34
|
+
"muted": "earthGray",
|
|
35
|
+
"dim": "bark",
|
|
36
|
+
"text": "",
|
|
37
|
+
"thinkingText": "earthGray",
|
|
38
|
+
"selectedBg": "softMint",
|
|
39
|
+
|
|
40
|
+
"userMessageBg": "lightEarth",
|
|
41
|
+
"userMessageText": "",
|
|
42
|
+
"customMessageBg": "paleLeaf",
|
|
43
|
+
"customMessageText": "",
|
|
44
|
+
"customMessageLabel": "deepOlive",
|
|
45
|
+
"toolPendingBg": "cream",
|
|
46
|
+
"toolSuccessBg": "sunlitGreen",
|
|
47
|
+
"toolErrorBg": "#f0e8e0",
|
|
48
|
+
"toolTitle": "forestShadow",
|
|
49
|
+
"toolOutput": "earthGray",
|
|
50
|
+
|
|
51
|
+
"mdHeading": "oliveBrown",
|
|
52
|
+
"mdLink": "fernGreen",
|
|
53
|
+
"mdLinkUrl": "bark",
|
|
54
|
+
"mdCode": "mossGreen",
|
|
55
|
+
"mdCodeBlock": "forestShadow",
|
|
56
|
+
"mdCodeBlockBorder": "earthGray",
|
|
57
|
+
"mdQuote": "earthGray",
|
|
58
|
+
"mdQuoteBorder": "lichen",
|
|
59
|
+
"mdHr": "lichen",
|
|
60
|
+
"mdListBullet": "sageGreen",
|
|
61
|
+
|
|
62
|
+
"toolDiffAdded": "sageGreen",
|
|
63
|
+
"toolDiffRemoved": "burnishedOrange",
|
|
64
|
+
"toolDiffContext": "earthGray",
|
|
65
|
+
|
|
66
|
+
"link": "fernGreen",
|
|
67
|
+
|
|
68
|
+
"syntaxComment": "#7a7466",
|
|
69
|
+
"syntaxKeyword": "#3d5a3c",
|
|
70
|
+
"syntaxFunction": "#636b2f",
|
|
71
|
+
"syntaxVariable": "#4f7942",
|
|
72
|
+
"syntaxString": "#8b7355",
|
|
73
|
+
"syntaxNumber": "#7e8c54",
|
|
74
|
+
"syntaxType": "#4f5c2e",
|
|
75
|
+
"syntaxOperator": "#3d5a3c",
|
|
76
|
+
"syntaxPunctuation": "#636b2f",
|
|
77
|
+
|
|
78
|
+
"thinkingOff": "lichen",
|
|
79
|
+
"thinkingMinimal": "#9caf88",
|
|
80
|
+
"thinkingLow": "#7e8c54",
|
|
81
|
+
"thinkingMedium": "#4f7942",
|
|
82
|
+
"thinkingHigh": "#3d5a3c",
|
|
83
|
+
"thinkingXhigh": "#2d4a2c",
|
|
84
|
+
|
|
85
|
+
"bashMode": "sageGreen",
|
|
86
|
+
|
|
87
|
+
"statusLineBg": "morningDew",
|
|
88
|
+
"statusLineSep": 144,
|
|
89
|
+
"statusLineModel": "deepOlive",
|
|
90
|
+
"statusLinePath": "fernGreen",
|
|
91
|
+
"statusLineGitClean": "sageGreen",
|
|
92
|
+
"statusLineGitDirty": "amberGlow",
|
|
93
|
+
"statusLineContext": "mossGreen",
|
|
94
|
+
"statusLineSpend": "acornBrown",
|
|
95
|
+
"statusLineStaged": 107,
|
|
96
|
+
"statusLineDirty": 136,
|
|
97
|
+
"statusLineUntracked": 65,
|
|
98
|
+
"statusLineOutput": 131,
|
|
99
|
+
"statusLineCost": 131,
|
|
100
|
+
"statusLineSubagents": "oliveBrown"
|
|
101
|
+
},
|
|
102
|
+
"export": {
|
|
103
|
+
"pageBg": "#f5f3ed",
|
|
104
|
+
"cardBg": "#ffffff",
|
|
105
|
+
"infoBg": "cream"
|
|
106
|
+
}
|
|
107
|
+
}
|