@iaforged/context-code 1.1.7 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/README.md +56 -0
  2. package/dist/src/commands/agent/agent.js +62 -0
  3. package/dist/src/commands/agent/index.js +1 -1
  4. package/dist/src/commands/model/model.js +9 -5
  5. package/dist/src/commands/orchestrate/index.js +2 -2
  6. package/dist/src/commands/orchestrate/orchestrate.js +12 -627
  7. package/dist/src/commands/tasks/index.js +1 -1
  8. package/dist/src/commands/tasks/tasks.js +8 -3
  9. package/dist/src/commands/team/index.js +2 -2
  10. package/dist/src/commands/team/team.js +12 -589
  11. package/dist/src/commands/timeline/index.js +8 -0
  12. package/dist/src/commands/timeline/timeline.js +194 -0
  13. package/dist/src/commands/workspace/workspace.js +3 -3
  14. package/dist/src/commands.js +2 -6
  15. package/dist/src/components/AgentActivitySidebar.js +50 -0
  16. package/dist/src/components/AgentProgressLine.js +5 -5
  17. package/dist/src/components/ModelPicker.js +252 -441
  18. package/dist/src/components/PromptInput/Notifications.js +1 -1
  19. package/dist/src/components/PromptInput/PromptInput.js +7 -3
  20. package/dist/src/components/PromptInput/PromptInputFooter.js +10 -29
  21. package/dist/src/components/Spinner/TeammateSpinnerLine.js +20 -62
  22. package/dist/src/components/Spinner/TeammateSpinnerTree.js +16 -258
  23. package/dist/src/components/Spinner/teammateSelectHint.js +1 -1
  24. package/dist/src/components/Spinner/utils.js +3 -6
  25. package/dist/src/components/ThemeBrowser.js +120 -0
  26. package/dist/src/components/ThemePicker.js +113 -321
  27. package/dist/src/components/design-system/ThemeProvider.js +3 -0
  28. package/dist/src/components/mcp/MCPListPanel.js +138 -444
  29. package/dist/src/components/permissions/SandboxPermissionRequest.js +5 -5
  30. package/dist/src/components/teams/TeamStatus.js +7 -71
  31. package/dist/src/constants/spinnerVerbs.js +80 -180
  32. package/dist/src/context/modalStackContext.js +12 -0
  33. package/dist/src/hooks/useTextInput.js +28 -18
  34. package/dist/src/main.js +12 -0
  35. package/dist/src/screens/REPL.js +386 -320
  36. package/dist/src/services/api/errors.js +1 -1
  37. package/dist/src/services/api/openai.js +70 -22
  38. package/dist/src/services/api/withRetry.js +3 -2
  39. package/dist/src/skills/loadSkillsDir.js +1 -0
  40. package/dist/src/tools/AgentTool/UI.js +8 -8
  41. package/dist/src/tools/AgentTool/loadAgentsDir.js +9 -4
  42. package/dist/src/tools/AgentTool/providerAgents.js +71 -0
  43. package/dist/src/tools/BashTool/bashSecurity.js +1 -1
  44. package/dist/src/utils/handlePromptSubmit.js +12 -2
  45. package/dist/src/utils/processUserInput/processSlashCommand.js +9 -5
  46. package/dist/src/utils/sembleMcp/common.js +5 -0
  47. package/dist/src/utils/sembleMcp/setup.js +119 -0
  48. package/dist/src/utils/theme.js +24 -3
  49. package/dist/src/utils/themes/bootstrap.js +109 -0
  50. package/dist/src/utils/themes/builtin/opencode/_index.json +41 -0
  51. package/dist/src/utils/themes/builtin/opencode/amoled.json +49 -0
  52. package/dist/src/utils/themes/builtin/opencode/aura.json +51 -0
  53. package/dist/src/utils/themes/builtin/opencode/ayu.json +51 -0
  54. package/dist/src/utils/themes/builtin/opencode/carbonfox.json +53 -0
  55. package/dist/src/utils/themes/builtin/opencode/catppuccin-frappe.json +85 -0
  56. package/dist/src/utils/themes/builtin/opencode/catppuccin-macchiato.json +85 -0
  57. package/dist/src/utils/themes/builtin/opencode/catppuccin.json +45 -0
  58. package/dist/src/utils/themes/builtin/opencode/cobalt2.json +87 -0
  59. package/dist/src/utils/themes/builtin/opencode/cursor.json +91 -0
  60. package/dist/src/utils/themes/builtin/opencode/dracula.json +49 -0
  61. package/dist/src/utils/themes/builtin/opencode/everforest.json +89 -0
  62. package/dist/src/utils/themes/builtin/opencode/flexoki.json +86 -0
  63. package/dist/src/utils/themes/builtin/opencode/github.json +85 -0
  64. package/dist/src/utils/themes/builtin/opencode/gruvbox.json +45 -0
  65. package/dist/src/utils/themes/builtin/opencode/kanagawa.json +89 -0
  66. package/dist/src/utils/themes/builtin/opencode/lucent-orng.json +87 -0
  67. package/dist/src/utils/themes/builtin/opencode/material.json +87 -0
  68. package/dist/src/utils/themes/builtin/opencode/matrix.json +91 -0
  69. package/dist/src/utils/themes/builtin/opencode/mercury.json +86 -0
  70. package/dist/src/utils/themes/builtin/opencode/monokai.json +49 -0
  71. package/dist/src/utils/themes/builtin/opencode/nightowl.json +46 -0
  72. package/dist/src/utils/themes/builtin/opencode/nord.json +46 -0
  73. package/dist/src/utils/themes/builtin/opencode/oc-2.json +88 -0
  74. package/dist/src/utils/themes/builtin/opencode/one-dark.json +89 -0
  75. package/dist/src/utils/themes/builtin/opencode/onedarkpro.json +45 -0
  76. package/dist/src/utils/themes/builtin/opencode/opencode.json +89 -0
  77. package/dist/src/utils/themes/builtin/opencode/orng.json +87 -0
  78. package/dist/src/utils/themes/builtin/opencode/osaka-jade.json +88 -0
  79. package/dist/src/utils/themes/builtin/opencode/palenight.json +85 -0
  80. package/dist/src/utils/themes/builtin/opencode/rosepine.json +85 -0
  81. package/dist/src/utils/themes/builtin/opencode/shadesofpurple.json +51 -0
  82. package/dist/src/utils/themes/builtin/opencode/solarized.json +49 -0
  83. package/dist/src/utils/themes/builtin/opencode/synthwave84.json +87 -0
  84. package/dist/src/utils/themes/builtin/opencode/tokyonight.json +47 -0
  85. package/dist/src/utils/themes/builtin/opencode/vercel.json +90 -0
  86. package/dist/src/utils/themes/builtin/opencode/vesper.json +51 -0
  87. package/dist/src/utils/themes/builtin/opencode/zenburn.json +87 -0
  88. package/dist/src/utils/themes/index.js +4 -0
  89. package/dist/src/utils/themes/loader.js +147 -0
  90. package/dist/src/utils/themes/opencodeMapper.js +124 -0
  91. package/dist/src/utils/themes/resolver.js +66 -0
  92. package/dist/src/utils/themes/types.js +1 -0
  93. package/docs/MCP_SERVERS.md +27 -1
  94. package/docs/comandos.md +16 -4
  95. package/package.json +1 -1
@@ -0,0 +1,45 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "One Dark Pro",
4
+ "id": "onedarkpro",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#f5f6f8",
8
+ "ink": "#2b303b",
9
+ "primary": "#528bff",
10
+ "accent": "#d85462",
11
+ "success": "#4fa66d",
12
+ "warning": "#d19a66",
13
+ "error": "#e06c75",
14
+ "info": "#61afef",
15
+ "diffAdd": "#c2ebcf",
16
+ "diffDelete": "#f7c1c5"
17
+ },
18
+ "overrides": {
19
+ "syntax-comment": "#6a717d",
20
+ "syntax-keyword": "#a626a4",
21
+ "syntax-primitive": "#4078f2",
22
+ "syntax-constant": "#986801"
23
+ }
24
+ },
25
+ "dark": {
26
+ "palette": {
27
+ "neutral": "#1e222a",
28
+ "ink": "#abb2bf",
29
+ "primary": "#61afef",
30
+ "accent": "#e06c75",
31
+ "success": "#98c379",
32
+ "warning": "#e5c07b",
33
+ "error": "#e06c75",
34
+ "info": "#56b6c2",
35
+ "diffAdd": "#4b815a",
36
+ "diffDelete": "#b2555f"
37
+ },
38
+ "overrides": {
39
+ "syntax-comment": "#5c6370",
40
+ "syntax-keyword": "#c678dd",
41
+ "syntax-primitive": "#61afef",
42
+ "syntax-constant": "#d19a66"
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,89 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "OpenCode",
4
+ "id": "opencode",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#ffffff",
8
+ "ink": "#1a1a1a",
9
+ "primary": "#3b7dd8",
10
+ "accent": "#d68c27",
11
+ "success": "#3d9a57",
12
+ "warning": "#d68c27",
13
+ "error": "#d1383d",
14
+ "info": "#318795",
15
+ "diffAdd": "#4db380",
16
+ "diffDelete": "#f52a65"
17
+ },
18
+ "overrides": {
19
+ "text-weak": "#8a8a8a",
20
+ "syntax-comment": "#8a8a8a",
21
+ "syntax-keyword": "#d68c27",
22
+ "syntax-string": "#3d9a57",
23
+ "syntax-primitive": "#3b7dd8",
24
+ "syntax-variable": "#d1383d",
25
+ "syntax-property": "#318795",
26
+ "syntax-type": "#b0851f",
27
+ "syntax-constant": "#d68c27",
28
+ "syntax-operator": "#318795",
29
+ "syntax-punctuation": "#1a1a1a",
30
+ "syntax-object": "#d1383d",
31
+ "markdown-heading": "#d68c27",
32
+ "markdown-text": "#1a1a1a",
33
+ "markdown-link": "#3b7dd8",
34
+ "markdown-link-text": "#318795",
35
+ "markdown-code": "#3d9a57",
36
+ "markdown-block-quote": "#b0851f",
37
+ "markdown-emph": "#b0851f",
38
+ "markdown-strong": "#d68c27",
39
+ "markdown-horizontal-rule": "#8a8a8a",
40
+ "markdown-list-item": "#3b7dd8",
41
+ "markdown-list-enumeration": "#318795",
42
+ "markdown-image": "#3b7dd8",
43
+ "markdown-image-text": "#318795",
44
+ "markdown-code-block": "#1a1a1a"
45
+ }
46
+ },
47
+ "dark": {
48
+ "palette": {
49
+ "neutral": "#0a0a0a",
50
+ "ink": "#eeeeee",
51
+ "primary": "#fab283",
52
+ "accent": "#9d7cd8",
53
+ "success": "#7fd88f",
54
+ "warning": "#f5a742",
55
+ "error": "#e06c75",
56
+ "info": "#56b6c2",
57
+ "diffAdd": "#b8db87",
58
+ "diffDelete": "#e26a75"
59
+ },
60
+ "overrides": {
61
+ "text-weak": "#808080",
62
+ "syntax-comment": "#808080",
63
+ "syntax-keyword": "#9d7cd8",
64
+ "syntax-string": "#7fd88f",
65
+ "syntax-primitive": "#fab283",
66
+ "syntax-variable": "#e06c75",
67
+ "syntax-property": "#56b6c2",
68
+ "syntax-type": "#e5c07b",
69
+ "syntax-constant": "#f5a742",
70
+ "syntax-operator": "#56b6c2",
71
+ "syntax-punctuation": "#eeeeee",
72
+ "syntax-object": "#e06c75",
73
+ "markdown-heading": "#9d7cd8",
74
+ "markdown-text": "#eeeeee",
75
+ "markdown-link": "#fab283",
76
+ "markdown-link-text": "#56b6c2",
77
+ "markdown-code": "#7fd88f",
78
+ "markdown-block-quote": "#e5c07b",
79
+ "markdown-emph": "#e5c07b",
80
+ "markdown-strong": "#f5a742",
81
+ "markdown-horizontal-rule": "#808080",
82
+ "markdown-list-item": "#fab283",
83
+ "markdown-list-enumeration": "#56b6c2",
84
+ "markdown-image": "#fab283",
85
+ "markdown-image-text": "#56b6c2",
86
+ "markdown-code-block": "#eeeeee"
87
+ }
88
+ }
89
+ }
@@ -0,0 +1,87 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Orng",
4
+ "id": "orng",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#ffffff",
8
+ "ink": "#1a1a1a",
9
+ "primary": "#EC5B2B",
10
+ "accent": "#c94d24",
11
+ "success": "#0062d1",
12
+ "warning": "#EC5B2B",
13
+ "error": "#d1383d",
14
+ "info": "#318795",
15
+ "diffDelete": "#f52a65"
16
+ },
17
+ "overrides": {
18
+ "text-weak": "#8a8a8a",
19
+ "syntax-comment": "#8a8a8a",
20
+ "syntax-keyword": "#EC5B2B",
21
+ "syntax-string": "#0062d1",
22
+ "syntax-primitive": "#c94d24",
23
+ "syntax-variable": "#d1383d",
24
+ "syntax-property": "#318795",
25
+ "syntax-type": "#b0851f",
26
+ "syntax-constant": "#EC5B2B",
27
+ "syntax-operator": "#318795",
28
+ "syntax-punctuation": "#1a1a1a",
29
+ "syntax-object": "#d1383d",
30
+ "markdown-heading": "#EC5B2B",
31
+ "markdown-text": "#1a1a1a",
32
+ "markdown-link": "#EC5B2B",
33
+ "markdown-link-text": "#318795",
34
+ "markdown-code": "#0062d1",
35
+ "markdown-block-quote": "#b0851f",
36
+ "markdown-emph": "#b0851f",
37
+ "markdown-strong": "#EC5B2B",
38
+ "markdown-horizontal-rule": "#8a8a8a",
39
+ "markdown-list-item": "#EC5B2B",
40
+ "markdown-list-enumeration": "#318795",
41
+ "markdown-image": "#EC5B2B",
42
+ "markdown-image-text": "#318795",
43
+ "markdown-code-block": "#1a1a1a"
44
+ }
45
+ },
46
+ "dark": {
47
+ "palette": {
48
+ "neutral": "#0a0a0a",
49
+ "ink": "#eeeeee",
50
+ "primary": "#EC5B2B",
51
+ "accent": "#FFF7F1",
52
+ "success": "#6ba1e6",
53
+ "warning": "#EC5B2B",
54
+ "error": "#e06c75",
55
+ "info": "#56b6c2",
56
+ "diffDelete": "#e26a75"
57
+ },
58
+ "overrides": {
59
+ "text-weak": "#808080",
60
+ "syntax-comment": "#808080",
61
+ "syntax-keyword": "#EC5B2B",
62
+ "syntax-string": "#6ba1e6",
63
+ "syntax-primitive": "#EE7948",
64
+ "syntax-variable": "#e06c75",
65
+ "syntax-property": "#56b6c2",
66
+ "syntax-type": "#e5c07b",
67
+ "syntax-constant": "#FFF7F1",
68
+ "syntax-operator": "#56b6c2",
69
+ "syntax-punctuation": "#eeeeee",
70
+ "syntax-object": "#e06c75",
71
+ "markdown-heading": "#EC5B2B",
72
+ "markdown-text": "#eeeeee",
73
+ "markdown-link": "#EC5B2B",
74
+ "markdown-link-text": "#56b6c2",
75
+ "markdown-code": "#6ba1e6",
76
+ "markdown-block-quote": "#FFF7F1",
77
+ "markdown-emph": "#e5c07b",
78
+ "markdown-strong": "#EE7948",
79
+ "markdown-horizontal-rule": "#808080",
80
+ "markdown-list-item": "#EC5B2B",
81
+ "markdown-list-enumeration": "#56b6c2",
82
+ "markdown-image": "#EC5B2B",
83
+ "markdown-image-text": "#56b6c2",
84
+ "markdown-code-block": "#eeeeee"
85
+ }
86
+ }
87
+ }
@@ -0,0 +1,88 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Osaka Jade",
4
+ "id": "osaka-jade",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#F6F5DD",
8
+ "ink": "#111c18",
9
+ "primary": "#1faa90",
10
+ "accent": "#3d7a52",
11
+ "success": "#3d7a52",
12
+ "warning": "#b5a020",
13
+ "error": "#c7392d",
14
+ "info": "#1faa90"
15
+ },
16
+ "overrides": {
17
+ "text-weak": "#53685B",
18
+ "syntax-comment": "#53685B",
19
+ "syntax-keyword": "#1faa90",
20
+ "syntax-string": "#3d7a52",
21
+ "syntax-primitive": "#3d7560",
22
+ "syntax-variable": "#111c18",
23
+ "syntax-property": "#3d7a52",
24
+ "syntax-type": "#3d7a52",
25
+ "syntax-constant": "#a8527a",
26
+ "syntax-operator": "#b5a020",
27
+ "syntax-punctuation": "#111c18",
28
+ "syntax-object": "#111c18",
29
+ "markdown-heading": "#1faa90",
30
+ "markdown-text": "#111c18",
31
+ "markdown-link": "#1faa90",
32
+ "markdown-link-text": "#3d7a52",
33
+ "markdown-code": "#3d7a52",
34
+ "markdown-block-quote": "#53685B",
35
+ "markdown-emph": "#a8527a",
36
+ "markdown-strong": "#111c18",
37
+ "markdown-horizontal-rule": "#53685B",
38
+ "markdown-list-item": "#1faa90",
39
+ "markdown-list-enumeration": "#1faa90",
40
+ "markdown-image": "#1faa90",
41
+ "markdown-image-text": "#3d7a52",
42
+ "markdown-code-block": "#111c18"
43
+ }
44
+ },
45
+ "dark": {
46
+ "palette": {
47
+ "neutral": "#111c18",
48
+ "ink": "#C1C497",
49
+ "primary": "#2DD5B7",
50
+ "accent": "#549e6a",
51
+ "success": "#549e6a",
52
+ "warning": "#E5C736",
53
+ "error": "#FF5345",
54
+ "info": "#2DD5B7",
55
+ "interactive": "#8CD3CB",
56
+ "diffAdd": "#63b07a",
57
+ "diffDelete": "#db9f9c"
58
+ },
59
+ "overrides": {
60
+ "text-weak": "#53685B",
61
+ "syntax-comment": "#53685B",
62
+ "syntax-keyword": "#2DD5B7",
63
+ "syntax-string": "#63b07a",
64
+ "syntax-primitive": "#509475",
65
+ "syntax-variable": "#C1C497",
66
+ "syntax-property": "#549e6a",
67
+ "syntax-type": "#549e6a",
68
+ "syntax-constant": "#D2689C",
69
+ "syntax-operator": "#459451",
70
+ "syntax-punctuation": "#C1C497",
71
+ "syntax-object": "#C1C497",
72
+ "markdown-heading": "#2DD5B7",
73
+ "markdown-text": "#C1C497",
74
+ "markdown-link": "#8CD3CB",
75
+ "markdown-link-text": "#549e6a",
76
+ "markdown-code": "#63b07a",
77
+ "markdown-block-quote": "#53685B",
78
+ "markdown-emph": "#D2689C",
79
+ "markdown-strong": "#C1C497",
80
+ "markdown-horizontal-rule": "#53685B",
81
+ "markdown-list-item": "#2DD5B7",
82
+ "markdown-list-enumeration": "#8CD3CB",
83
+ "markdown-image": "#8CD3CB",
84
+ "markdown-image-text": "#549e6a",
85
+ "markdown-code-block": "#C1C497"
86
+ }
87
+ }
88
+ }
@@ -0,0 +1,85 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Palenight",
4
+ "id": "palenight",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fafafa",
8
+ "ink": "#292d3e",
9
+ "primary": "#4976eb",
10
+ "accent": "#00acc1",
11
+ "success": "#91b859",
12
+ "warning": "#ffb300",
13
+ "error": "#e53935",
14
+ "info": "#f4511e"
15
+ },
16
+ "overrides": {
17
+ "text-weak": "#8796b0",
18
+ "syntax-comment": "#8796b0",
19
+ "syntax-keyword": "#a854f2",
20
+ "syntax-string": "#91b859",
21
+ "syntax-primitive": "#4976eb",
22
+ "syntax-variable": "#292d3e",
23
+ "syntax-property": "#00acc1",
24
+ "syntax-type": "#ffb300",
25
+ "syntax-constant": "#f4511e",
26
+ "syntax-operator": "#00acc1",
27
+ "syntax-punctuation": "#292d3e",
28
+ "syntax-object": "#292d3e",
29
+ "markdown-heading": "#a854f2",
30
+ "markdown-text": "#292d3e",
31
+ "markdown-link": "#4976eb",
32
+ "markdown-link-text": "#00acc1",
33
+ "markdown-code": "#91b859",
34
+ "markdown-block-quote": "#8796b0",
35
+ "markdown-emph": "#ffb300",
36
+ "markdown-strong": "#f4511e",
37
+ "markdown-horizontal-rule": "#8796b0",
38
+ "markdown-list-item": "#4976eb",
39
+ "markdown-list-enumeration": "#00acc1",
40
+ "markdown-image": "#4976eb",
41
+ "markdown-image-text": "#00acc1",
42
+ "markdown-code-block": "#292d3e"
43
+ }
44
+ },
45
+ "dark": {
46
+ "palette": {
47
+ "neutral": "#292d3e",
48
+ "ink": "#a6accd",
49
+ "primary": "#82aaff",
50
+ "accent": "#89ddff",
51
+ "success": "#c3e88d",
52
+ "warning": "#ffcb6b",
53
+ "error": "#f07178",
54
+ "info": "#f78c6c"
55
+ },
56
+ "overrides": {
57
+ "text-weak": "#676e95",
58
+ "syntax-comment": "#676e95",
59
+ "syntax-keyword": "#c792ea",
60
+ "syntax-string": "#c3e88d",
61
+ "syntax-primitive": "#82aaff",
62
+ "syntax-variable": "#a6accd",
63
+ "syntax-property": "#89ddff",
64
+ "syntax-type": "#ffcb6b",
65
+ "syntax-constant": "#f78c6c",
66
+ "syntax-operator": "#89ddff",
67
+ "syntax-punctuation": "#a6accd",
68
+ "syntax-object": "#a6accd",
69
+ "markdown-heading": "#c792ea",
70
+ "markdown-text": "#a6accd",
71
+ "markdown-link": "#82aaff",
72
+ "markdown-link-text": "#89ddff",
73
+ "markdown-code": "#c3e88d",
74
+ "markdown-block-quote": "#676e95",
75
+ "markdown-emph": "#ffcb6b",
76
+ "markdown-strong": "#f78c6c",
77
+ "markdown-horizontal-rule": "#676e95",
78
+ "markdown-list-item": "#82aaff",
79
+ "markdown-list-enumeration": "#89ddff",
80
+ "markdown-image": "#82aaff",
81
+ "markdown-image-text": "#89ddff",
82
+ "markdown-code-block": "#a6accd"
83
+ }
84
+ }
85
+ }
@@ -0,0 +1,85 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Rose Pine",
4
+ "id": "rosepine",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#faf4ed",
8
+ "ink": "#575279",
9
+ "primary": "#31748f",
10
+ "accent": "#d7827e",
11
+ "success": "#286983",
12
+ "warning": "#ea9d34",
13
+ "error": "#b4637a",
14
+ "info": "#56949f"
15
+ },
16
+ "overrides": {
17
+ "text-weak": "#9893a5",
18
+ "syntax-comment": "#9893a5",
19
+ "syntax-keyword": "#286983",
20
+ "syntax-string": "#ea9d34",
21
+ "syntax-primitive": "#d7827e",
22
+ "syntax-variable": "#575279",
23
+ "syntax-property": "#d7827e",
24
+ "syntax-type": "#56949f",
25
+ "syntax-constant": "#907aa9",
26
+ "syntax-operator": "#797593",
27
+ "syntax-punctuation": "#797593",
28
+ "syntax-object": "#575279",
29
+ "markdown-heading": "#907aa9",
30
+ "markdown-text": "#575279",
31
+ "markdown-link": "#31748f",
32
+ "markdown-link-text": "#d7827e",
33
+ "markdown-code": "#286983",
34
+ "markdown-block-quote": "#9893a5",
35
+ "markdown-emph": "#ea9d34",
36
+ "markdown-strong": "#b4637a",
37
+ "markdown-horizontal-rule": "#dfdad9",
38
+ "markdown-list-item": "#31748f",
39
+ "markdown-list-enumeration": "#d7827e",
40
+ "markdown-image": "#31748f",
41
+ "markdown-image-text": "#d7827e",
42
+ "markdown-code-block": "#575279"
43
+ }
44
+ },
45
+ "dark": {
46
+ "palette": {
47
+ "neutral": "#191724",
48
+ "ink": "#e0def4",
49
+ "primary": "#9ccfd8",
50
+ "accent": "#ebbcba",
51
+ "success": "#31748f",
52
+ "warning": "#f6c177",
53
+ "error": "#eb6f92",
54
+ "info": "#9ccfd8"
55
+ },
56
+ "overrides": {
57
+ "text-weak": "#6e6a86",
58
+ "syntax-comment": "#6e6a86",
59
+ "syntax-keyword": "#31748f",
60
+ "syntax-string": "#f6c177",
61
+ "syntax-primitive": "#ebbcba",
62
+ "syntax-variable": "#e0def4",
63
+ "syntax-property": "#ebbcba",
64
+ "syntax-type": "#9ccfd8",
65
+ "syntax-constant": "#c4a7e7",
66
+ "syntax-operator": "#908caa",
67
+ "syntax-punctuation": "#908caa",
68
+ "syntax-object": "#e0def4",
69
+ "markdown-heading": "#c4a7e7",
70
+ "markdown-text": "#e0def4",
71
+ "markdown-link": "#9ccfd8",
72
+ "markdown-link-text": "#ebbcba",
73
+ "markdown-code": "#31748f",
74
+ "markdown-block-quote": "#6e6a86",
75
+ "markdown-emph": "#f6c177",
76
+ "markdown-strong": "#eb6f92",
77
+ "markdown-horizontal-rule": "#403d52",
78
+ "markdown-list-item": "#9ccfd8",
79
+ "markdown-list-enumeration": "#ebbcba",
80
+ "markdown-image": "#9ccfd8",
81
+ "markdown-image-text": "#ebbcba",
82
+ "markdown-code-block": "#e0def4"
83
+ }
84
+ }
85
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Shades of Purple",
4
+ "id": "shadesofpurple",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#f7ebff",
8
+ "ink": "#3b2c59",
9
+ "primary": "#7a5af8",
10
+ "accent": "#ff6bd5",
11
+ "success": "#3dd598",
12
+ "warning": "#f7c948",
13
+ "error": "#ff6bd5",
14
+ "info": "#62d4ff",
15
+ "diffAdd": "#c8f8da",
16
+ "diffDelete": "#ffc3ef"
17
+ },
18
+ "overrides": {
19
+ "syntax-comment": "#8e4be3",
20
+ "syntax-keyword": "#c45f00",
21
+ "syntax-string": "#2f8b32",
22
+ "syntax-primitive": "#a13bd6",
23
+ "syntax-property": "#008fb8",
24
+ "syntax-type": "#9d7a00",
25
+ "syntax-constant": "#e04d7a"
26
+ }
27
+ },
28
+ "dark": {
29
+ "palette": {
30
+ "neutral": "#1a102b",
31
+ "ink": "#f5f0ff",
32
+ "primary": "#c792ff",
33
+ "accent": "#ff7ac6",
34
+ "success": "#7be0b0",
35
+ "warning": "#ffd580",
36
+ "error": "#ff7ac6",
37
+ "info": "#7dd4ff",
38
+ "diffAdd": "#53c39f",
39
+ "diffDelete": "#d85aa0"
40
+ },
41
+ "overrides": {
42
+ "syntax-comment": "#b362ff",
43
+ "syntax-keyword": "#ff9d00",
44
+ "syntax-string": "#a5ff90",
45
+ "syntax-primitive": "#fb94ff",
46
+ "syntax-property": "#9effff",
47
+ "syntax-type": "#fad000",
48
+ "syntax-constant": "#ff628c"
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Solarized",
4
+ "id": "solarized",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fdf6e3",
8
+ "ink": "#586e75",
9
+ "primary": "#268bd2",
10
+ "accent": "#d33682",
11
+ "success": "#859900",
12
+ "warning": "#b58900",
13
+ "error": "#dc322f",
14
+ "info": "#2aa198",
15
+ "diffAdd": "#c6dc7a",
16
+ "diffDelete": "#f2a1a1"
17
+ },
18
+ "overrides": {
19
+ "syntax-comment": "#657b83",
20
+ "syntax-keyword": "#728600",
21
+ "syntax-string": "#1f8f88",
22
+ "syntax-primitive": "#268bd2",
23
+ "syntax-property": "#268bd2",
24
+ "syntax-constant": "#d33682"
25
+ }
26
+ },
27
+ "dark": {
28
+ "palette": {
29
+ "neutral": "#002b36",
30
+ "ink": "#93a1a1",
31
+ "primary": "#6c71c4",
32
+ "accent": "#d33682",
33
+ "success": "#859900",
34
+ "warning": "#b58900",
35
+ "error": "#dc322f",
36
+ "info": "#2aa198",
37
+ "diffAdd": "#4c7654",
38
+ "diffDelete": "#c34b4b"
39
+ },
40
+ "overrides": {
41
+ "syntax-comment": "#586e75",
42
+ "syntax-keyword": "#859900",
43
+ "syntax-string": "#2aa198",
44
+ "syntax-primitive": "#268bd2",
45
+ "syntax-property": "#268bd2",
46
+ "syntax-constant": "#d33682"
47
+ }
48
+ }
49
+ }
@@ -0,0 +1,87 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Synthwave '84",
4
+ "id": "synthwave84",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fafafa",
8
+ "ink": "#262335",
9
+ "primary": "#00bcd4",
10
+ "accent": "#9c27b0",
11
+ "success": "#4caf50",
12
+ "warning": "#ff9800",
13
+ "error": "#f44336",
14
+ "info": "#ff5722"
15
+ },
16
+ "overrides": {
17
+ "text-weak": "#5c5c8a",
18
+ "syntax-comment": "#5c5c8a",
19
+ "syntax-keyword": "#e91e63",
20
+ "syntax-string": "#ff9800",
21
+ "syntax-primitive": "#ff5722",
22
+ "syntax-variable": "#262335",
23
+ "syntax-property": "#9c27b0",
24
+ "syntax-type": "#00bcd4",
25
+ "syntax-constant": "#9c27b0",
26
+ "syntax-operator": "#e91e63",
27
+ "syntax-punctuation": "#262335",
28
+ "syntax-object": "#262335",
29
+ "markdown-heading": "#e91e63",
30
+ "markdown-text": "#262335",
31
+ "markdown-link": "#00bcd4",
32
+ "markdown-link-text": "#9c27b0",
33
+ "markdown-code": "#4caf50",
34
+ "markdown-block-quote": "#5c5c8a",
35
+ "markdown-emph": "#ff9800",
36
+ "markdown-strong": "#ff5722",
37
+ "markdown-horizontal-rule": "#e0e0e0",
38
+ "markdown-list-item": "#00bcd4",
39
+ "markdown-list-enumeration": "#9c27b0",
40
+ "markdown-image": "#00bcd4",
41
+ "markdown-image-text": "#9c27b0",
42
+ "markdown-code-block": "#262335"
43
+ }
44
+ },
45
+ "dark": {
46
+ "palette": {
47
+ "neutral": "#262335",
48
+ "ink": "#ffffff",
49
+ "primary": "#36f9f6",
50
+ "accent": "#b084eb",
51
+ "success": "#72f1b8",
52
+ "warning": "#fede5d",
53
+ "error": "#fe4450",
54
+ "info": "#ff8b39",
55
+ "diffAdd": "#97f1d8",
56
+ "diffDelete": "#ff5e5b"
57
+ },
58
+ "overrides": {
59
+ "text-weak": "#848bbd",
60
+ "syntax-comment": "#848bbd",
61
+ "syntax-keyword": "#ff7edb",
62
+ "syntax-string": "#fede5d",
63
+ "syntax-primitive": "#ff8b39",
64
+ "syntax-variable": "#ffffff",
65
+ "syntax-property": "#b084eb",
66
+ "syntax-type": "#36f9f6",
67
+ "syntax-constant": "#b084eb",
68
+ "syntax-operator": "#ff7edb",
69
+ "syntax-punctuation": "#ffffff",
70
+ "syntax-object": "#ffffff",
71
+ "markdown-heading": "#ff7edb",
72
+ "markdown-text": "#ffffff",
73
+ "markdown-link": "#36f9f6",
74
+ "markdown-link-text": "#b084eb",
75
+ "markdown-code": "#72f1b8",
76
+ "markdown-block-quote": "#848bbd",
77
+ "markdown-emph": "#fede5d",
78
+ "markdown-strong": "#ff8b39",
79
+ "markdown-horizontal-rule": "#495495",
80
+ "markdown-list-item": "#36f9f6",
81
+ "markdown-list-enumeration": "#b084eb",
82
+ "markdown-image": "#36f9f6",
83
+ "markdown-image-text": "#b084eb",
84
+ "markdown-code-block": "#ffffff"
85
+ }
86
+ }
87
+ }