@iaforged/context-code 1.1.9 → 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 (78) hide show
  1. package/README.md +24 -0
  2. package/dist/src/commands/model/model.js +9 -5
  3. package/dist/src/commands/timeline/index.js +8 -0
  4. package/dist/src/commands/timeline/timeline.js +194 -0
  5. package/dist/src/commands.js +2 -0
  6. package/dist/src/components/AgentActivitySidebar.js +50 -0
  7. package/dist/src/components/AgentProgressLine.js +5 -5
  8. package/dist/src/components/ModelPicker.js +252 -441
  9. package/dist/src/components/PromptInput/PromptInputFooter.js +10 -29
  10. package/dist/src/components/Spinner/TeammateSpinnerLine.js +20 -62
  11. package/dist/src/components/Spinner/TeammateSpinnerTree.js +16 -258
  12. package/dist/src/components/Spinner/teammateSelectHint.js +1 -1
  13. package/dist/src/components/Spinner/utils.js +3 -6
  14. package/dist/src/components/ThemeBrowser.js +120 -0
  15. package/dist/src/components/ThemePicker.js +113 -321
  16. package/dist/src/components/design-system/ThemeProvider.js +3 -0
  17. package/dist/src/components/mcp/MCPListPanel.js +138 -444
  18. package/dist/src/components/permissions/SandboxPermissionRequest.js +5 -5
  19. package/dist/src/components/teams/TeamStatus.js +7 -71
  20. package/dist/src/constants/spinnerVerbs.js +80 -180
  21. package/dist/src/context/modalStackContext.js +12 -0
  22. package/dist/src/hooks/useTextInput.js +28 -18
  23. package/dist/src/main.js +12 -0
  24. package/dist/src/screens/REPL.js +386 -320
  25. package/dist/src/skills/loadSkillsDir.js +1 -0
  26. package/dist/src/tools/AgentTool/UI.js +8 -8
  27. package/dist/src/tools/BashTool/bashSecurity.js +1 -1
  28. package/dist/src/utils/handlePromptSubmit.js +12 -2
  29. package/dist/src/utils/processUserInput/processSlashCommand.js +9 -5
  30. package/dist/src/utils/sembleMcp/common.js +5 -0
  31. package/dist/src/utils/sembleMcp/setup.js +119 -0
  32. package/dist/src/utils/theme.js +24 -3
  33. package/dist/src/utils/themes/bootstrap.js +109 -0
  34. package/dist/src/utils/themes/builtin/opencode/_index.json +41 -0
  35. package/dist/src/utils/themes/builtin/opencode/amoled.json +49 -0
  36. package/dist/src/utils/themes/builtin/opencode/aura.json +51 -0
  37. package/dist/src/utils/themes/builtin/opencode/ayu.json +51 -0
  38. package/dist/src/utils/themes/builtin/opencode/carbonfox.json +53 -0
  39. package/dist/src/utils/themes/builtin/opencode/catppuccin-frappe.json +85 -0
  40. package/dist/src/utils/themes/builtin/opencode/catppuccin-macchiato.json +85 -0
  41. package/dist/src/utils/themes/builtin/opencode/catppuccin.json +45 -0
  42. package/dist/src/utils/themes/builtin/opencode/cobalt2.json +87 -0
  43. package/dist/src/utils/themes/builtin/opencode/cursor.json +91 -0
  44. package/dist/src/utils/themes/builtin/opencode/dracula.json +49 -0
  45. package/dist/src/utils/themes/builtin/opencode/everforest.json +89 -0
  46. package/dist/src/utils/themes/builtin/opencode/flexoki.json +86 -0
  47. package/dist/src/utils/themes/builtin/opencode/github.json +85 -0
  48. package/dist/src/utils/themes/builtin/opencode/gruvbox.json +45 -0
  49. package/dist/src/utils/themes/builtin/opencode/kanagawa.json +89 -0
  50. package/dist/src/utils/themes/builtin/opencode/lucent-orng.json +87 -0
  51. package/dist/src/utils/themes/builtin/opencode/material.json +87 -0
  52. package/dist/src/utils/themes/builtin/opencode/matrix.json +91 -0
  53. package/dist/src/utils/themes/builtin/opencode/mercury.json +86 -0
  54. package/dist/src/utils/themes/builtin/opencode/monokai.json +49 -0
  55. package/dist/src/utils/themes/builtin/opencode/nightowl.json +46 -0
  56. package/dist/src/utils/themes/builtin/opencode/nord.json +46 -0
  57. package/dist/src/utils/themes/builtin/opencode/oc-2.json +88 -0
  58. package/dist/src/utils/themes/builtin/opencode/one-dark.json +89 -0
  59. package/dist/src/utils/themes/builtin/opencode/onedarkpro.json +45 -0
  60. package/dist/src/utils/themes/builtin/opencode/opencode.json +89 -0
  61. package/dist/src/utils/themes/builtin/opencode/orng.json +87 -0
  62. package/dist/src/utils/themes/builtin/opencode/osaka-jade.json +88 -0
  63. package/dist/src/utils/themes/builtin/opencode/palenight.json +85 -0
  64. package/dist/src/utils/themes/builtin/opencode/rosepine.json +85 -0
  65. package/dist/src/utils/themes/builtin/opencode/shadesofpurple.json +51 -0
  66. package/dist/src/utils/themes/builtin/opencode/solarized.json +49 -0
  67. package/dist/src/utils/themes/builtin/opencode/synthwave84.json +87 -0
  68. package/dist/src/utils/themes/builtin/opencode/tokyonight.json +47 -0
  69. package/dist/src/utils/themes/builtin/opencode/vercel.json +90 -0
  70. package/dist/src/utils/themes/builtin/opencode/vesper.json +51 -0
  71. package/dist/src/utils/themes/builtin/opencode/zenburn.json +87 -0
  72. package/dist/src/utils/themes/index.js +4 -0
  73. package/dist/src/utils/themes/loader.js +147 -0
  74. package/dist/src/utils/themes/opencodeMapper.js +124 -0
  75. package/dist/src/utils/themes/resolver.js +66 -0
  76. package/dist/src/utils/themes/types.js +1 -0
  77. package/docs/MCP_SERVERS.md +27 -1
  78. package/package.json +1 -1
@@ -0,0 +1,86 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Flexoki",
4
+ "id": "flexoki",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#FFFCF0",
8
+ "ink": "#100F0F",
9
+ "primary": "#205EA6",
10
+ "accent": "#BC5215",
11
+ "success": "#66800B",
12
+ "warning": "#BC5215",
13
+ "error": "#AF3029",
14
+ "info": "#24837B"
15
+ },
16
+ "overrides": {
17
+ "text-weak": "#6F6E69",
18
+ "syntax-comment": "#6F6E69",
19
+ "syntax-keyword": "#66800B",
20
+ "syntax-string": "#24837B",
21
+ "syntax-primitive": "#BC5215",
22
+ "syntax-variable": "#205EA6",
23
+ "syntax-property": "#24837B",
24
+ "syntax-type": "#AD8301",
25
+ "syntax-constant": "#5E409D",
26
+ "syntax-operator": "#6F6E69",
27
+ "syntax-punctuation": "#6F6E69",
28
+ "syntax-object": "#205EA6",
29
+ "markdown-heading": "#5E409D",
30
+ "markdown-text": "#100F0F",
31
+ "markdown-link": "#205EA6",
32
+ "markdown-link-text": "#24837B",
33
+ "markdown-code": "#24837B",
34
+ "markdown-block-quote": "#AD8301",
35
+ "markdown-emph": "#AD8301",
36
+ "markdown-strong": "#BC5215",
37
+ "markdown-horizontal-rule": "#6F6E69",
38
+ "markdown-list-item": "#BC5215",
39
+ "markdown-list-enumeration": "#24837B",
40
+ "markdown-image": "#A02F6F",
41
+ "markdown-image-text": "#24837B",
42
+ "markdown-code-block": "#100F0F"
43
+ }
44
+ },
45
+ "dark": {
46
+ "palette": {
47
+ "neutral": "#100F0F",
48
+ "ink": "#CECDC3",
49
+ "primary": "#DA702C",
50
+ "accent": "#8B7EC8",
51
+ "success": "#879A39",
52
+ "warning": "#DA702C",
53
+ "error": "#D14D41",
54
+ "info": "#3AA99F",
55
+ "interactive": "#4385BE"
56
+ },
57
+ "overrides": {
58
+ "text-weak": "#6F6E69",
59
+ "syntax-comment": "#6F6E69",
60
+ "syntax-keyword": "#879A39",
61
+ "syntax-string": "#3AA99F",
62
+ "syntax-primitive": "#DA702C",
63
+ "syntax-variable": "#4385BE",
64
+ "syntax-property": "#3AA99F",
65
+ "syntax-type": "#D0A215",
66
+ "syntax-constant": "#8B7EC8",
67
+ "syntax-operator": "#B7B5AC",
68
+ "syntax-punctuation": "#B7B5AC",
69
+ "syntax-object": "#4385BE",
70
+ "markdown-heading": "#8B7EC8",
71
+ "markdown-text": "#CECDC3",
72
+ "markdown-link": "#4385BE",
73
+ "markdown-link-text": "#3AA99F",
74
+ "markdown-code": "#3AA99F",
75
+ "markdown-block-quote": "#D0A215",
76
+ "markdown-emph": "#D0A215",
77
+ "markdown-strong": "#DA702C",
78
+ "markdown-horizontal-rule": "#6F6E69",
79
+ "markdown-list-item": "#DA702C",
80
+ "markdown-list-enumeration": "#3AA99F",
81
+ "markdown-image": "#CE5D97",
82
+ "markdown-image-text": "#3AA99F",
83
+ "markdown-code-block": "#CECDC3"
84
+ }
85
+ }
86
+ }
@@ -0,0 +1,85 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "GitHub",
4
+ "id": "github",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#ffffff",
8
+ "ink": "#24292f",
9
+ "primary": "#0969da",
10
+ "accent": "#1b7c83",
11
+ "success": "#1a7f37",
12
+ "warning": "#9a6700",
13
+ "error": "#cf222e",
14
+ "info": "#bc4c00"
15
+ },
16
+ "overrides": {
17
+ "text-weak": "#57606a",
18
+ "syntax-comment": "#57606a",
19
+ "syntax-keyword": "#cf222e",
20
+ "syntax-string": "#0969da",
21
+ "syntax-primitive": "#8250df",
22
+ "syntax-variable": "#bc4c00",
23
+ "syntax-property": "#1b7c83",
24
+ "syntax-type": "#bc4c00",
25
+ "syntax-constant": "#1b7c83",
26
+ "syntax-operator": "#cf222e",
27
+ "syntax-punctuation": "#24292f",
28
+ "syntax-object": "#bc4c00",
29
+ "markdown-heading": "#0969da",
30
+ "markdown-text": "#24292f",
31
+ "markdown-link": "#0969da",
32
+ "markdown-link-text": "#1b7c83",
33
+ "markdown-code": "#bf3989",
34
+ "markdown-block-quote": "#57606a",
35
+ "markdown-emph": "#9a6700",
36
+ "markdown-strong": "#bc4c00",
37
+ "markdown-horizontal-rule": "#d0d7de",
38
+ "markdown-list-item": "#0969da",
39
+ "markdown-list-enumeration": "#1b7c83",
40
+ "markdown-image": "#0969da",
41
+ "markdown-image-text": "#1b7c83",
42
+ "markdown-code-block": "#24292f"
43
+ }
44
+ },
45
+ "dark": {
46
+ "palette": {
47
+ "neutral": "#0d1117",
48
+ "ink": "#c9d1d9",
49
+ "primary": "#58a6ff",
50
+ "accent": "#39c5cf",
51
+ "success": "#3fb950",
52
+ "warning": "#e3b341",
53
+ "error": "#f85149",
54
+ "info": "#d29922"
55
+ },
56
+ "overrides": {
57
+ "text-weak": "#8b949e",
58
+ "syntax-comment": "#8b949e",
59
+ "syntax-keyword": "#ff7b72",
60
+ "syntax-string": "#39c5cf",
61
+ "syntax-primitive": "#bc8cff",
62
+ "syntax-variable": "#d29922",
63
+ "syntax-property": "#39c5cf",
64
+ "syntax-type": "#d29922",
65
+ "syntax-constant": "#58a6ff",
66
+ "syntax-operator": "#ff7b72",
67
+ "syntax-punctuation": "#c9d1d9",
68
+ "syntax-object": "#d29922",
69
+ "markdown-heading": "#58a6ff",
70
+ "markdown-text": "#c9d1d9",
71
+ "markdown-link": "#58a6ff",
72
+ "markdown-link-text": "#39c5cf",
73
+ "markdown-code": "#ff7b72",
74
+ "markdown-block-quote": "#8b949e",
75
+ "markdown-emph": "#e3b341",
76
+ "markdown-strong": "#d29922",
77
+ "markdown-horizontal-rule": "#30363d",
78
+ "markdown-list-item": "#58a6ff",
79
+ "markdown-list-enumeration": "#39c5cf",
80
+ "markdown-image": "#58a6ff",
81
+ "markdown-image-text": "#39c5cf",
82
+ "markdown-code-block": "#c9d1d9"
83
+ }
84
+ }
85
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Gruvbox",
4
+ "id": "gruvbox",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fbf1c7",
8
+ "ink": "#3c3836",
9
+ "primary": "#076678",
10
+ "accent": "#9d0006",
11
+ "success": "#79740e",
12
+ "warning": "#b57614",
13
+ "error": "#9d0006",
14
+ "info": "#8f3f71",
15
+ "diffAdd": "#79740e",
16
+ "diffDelete": "#9d0006"
17
+ },
18
+ "overrides": {
19
+ "syntax-comment": "#928374",
20
+ "syntax-keyword": "#9d0006",
21
+ "syntax-primitive": "#076678",
22
+ "syntax-constant": "#8f3f71"
23
+ }
24
+ },
25
+ "dark": {
26
+ "palette": {
27
+ "neutral": "#282828",
28
+ "ink": "#ebdbb2",
29
+ "primary": "#83a598",
30
+ "accent": "#fb4934",
31
+ "success": "#b8bb26",
32
+ "warning": "#fabd2f",
33
+ "error": "#fb4934",
34
+ "info": "#d3869b",
35
+ "diffAdd": "#b8bb26",
36
+ "diffDelete": "#fb4934"
37
+ },
38
+ "overrides": {
39
+ "syntax-comment": "#928374",
40
+ "syntax-keyword": "#fb4934",
41
+ "syntax-primitive": "#83a598",
42
+ "syntax-constant": "#d3869b"
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,89 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Kanagawa",
4
+ "id": "kanagawa",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#F2E9DE",
8
+ "ink": "#54433A",
9
+ "primary": "#2D4F67",
10
+ "accent": "#D27E99",
11
+ "success": "#98BB6C",
12
+ "warning": "#D7A657",
13
+ "error": "#E82424",
14
+ "info": "#76946A",
15
+ "diffAdd": "#89AF5B",
16
+ "diffDelete": "#D61F1F"
17
+ },
18
+ "overrides": {
19
+ "text-weak": "#9E9389",
20
+ "syntax-comment": "#9E9389",
21
+ "syntax-keyword": "#957FB8",
22
+ "syntax-string": "#98BB6C",
23
+ "syntax-primitive": "#2D4F67",
24
+ "syntax-variable": "#54433A",
25
+ "syntax-property": "#76946A",
26
+ "syntax-type": "#C38D9D",
27
+ "syntax-constant": "#D7A657",
28
+ "syntax-operator": "#D27E99",
29
+ "syntax-punctuation": "#54433A",
30
+ "syntax-object": "#54433A",
31
+ "markdown-heading": "#957FB8",
32
+ "markdown-text": "#54433A",
33
+ "markdown-link": "#2D4F67",
34
+ "markdown-link-text": "#76946A",
35
+ "markdown-code": "#98BB6C",
36
+ "markdown-block-quote": "#9E9389",
37
+ "markdown-emph": "#C38D9D",
38
+ "markdown-strong": "#D7A657",
39
+ "markdown-horizontal-rule": "#9E9389",
40
+ "markdown-list-item": "#2D4F67",
41
+ "markdown-list-enumeration": "#76946A",
42
+ "markdown-image": "#2D4F67",
43
+ "markdown-image-text": "#76946A",
44
+ "markdown-code-block": "#54433A"
45
+ }
46
+ },
47
+ "dark": {
48
+ "palette": {
49
+ "neutral": "#1F1F28",
50
+ "ink": "#DCD7BA",
51
+ "primary": "#7E9CD8",
52
+ "accent": "#D27E99",
53
+ "success": "#98BB6C",
54
+ "warning": "#D7A657",
55
+ "error": "#E82424",
56
+ "info": "#76946A",
57
+ "diffAdd": "#A9D977",
58
+ "diffDelete": "#F24A4A"
59
+ },
60
+ "overrides": {
61
+ "text-weak": "#727169",
62
+ "syntax-comment": "#727169",
63
+ "syntax-keyword": "#957FB8",
64
+ "syntax-string": "#98BB6C",
65
+ "syntax-primitive": "#7E9CD8",
66
+ "syntax-variable": "#DCD7BA",
67
+ "syntax-property": "#76946A",
68
+ "syntax-type": "#C38D9D",
69
+ "syntax-constant": "#D7A657",
70
+ "syntax-operator": "#D27E99",
71
+ "syntax-punctuation": "#DCD7BA",
72
+ "syntax-object": "#DCD7BA",
73
+ "markdown-heading": "#957FB8",
74
+ "markdown-text": "#DCD7BA",
75
+ "markdown-link": "#7E9CD8",
76
+ "markdown-link-text": "#76946A",
77
+ "markdown-code": "#98BB6C",
78
+ "markdown-block-quote": "#727169",
79
+ "markdown-emph": "#C38D9D",
80
+ "markdown-strong": "#D7A657",
81
+ "markdown-horizontal-rule": "#727169",
82
+ "markdown-list-item": "#7E9CD8",
83
+ "markdown-list-enumeration": "#76946A",
84
+ "markdown-image": "#7E9CD8",
85
+ "markdown-image-text": "#76946A",
86
+ "markdown-code-block": "#DCD7BA"
87
+ }
88
+ }
89
+ }
@@ -0,0 +1,87 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Lucent Orng",
4
+ "id": "lucent-orng",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fff5f0",
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": "#2a1a15",
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,87 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Material",
4
+ "id": "material",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fafafa",
8
+ "ink": "#263238",
9
+ "primary": "#6182b8",
10
+ "accent": "#39adb5",
11
+ "success": "#91b859",
12
+ "warning": "#ffb300",
13
+ "error": "#e53935",
14
+ "info": "#f4511e",
15
+ "interactive": "#39adb5"
16
+ },
17
+ "overrides": {
18
+ "text-weak": "#90a4ae",
19
+ "syntax-comment": "#90a4ae",
20
+ "syntax-keyword": "#7c4dff",
21
+ "syntax-string": "#91b859",
22
+ "syntax-primitive": "#6182b8",
23
+ "syntax-variable": "#263238",
24
+ "syntax-property": "#7c4dff",
25
+ "syntax-type": "#ffb300",
26
+ "syntax-constant": "#f4511e",
27
+ "syntax-operator": "#39adb5",
28
+ "syntax-punctuation": "#263238",
29
+ "syntax-object": "#263238",
30
+ "markdown-heading": "#6182b8",
31
+ "markdown-text": "#263238",
32
+ "markdown-link": "#39adb5",
33
+ "markdown-link-text": "#7c4dff",
34
+ "markdown-code": "#91b859",
35
+ "markdown-block-quote": "#90a4ae",
36
+ "markdown-emph": "#ffb300",
37
+ "markdown-strong": "#f4511e",
38
+ "markdown-horizontal-rule": "#e0e0e0",
39
+ "markdown-list-item": "#6182b8",
40
+ "markdown-list-enumeration": "#39adb5",
41
+ "markdown-image": "#39adb5",
42
+ "markdown-image-text": "#7c4dff",
43
+ "markdown-code-block": "#263238"
44
+ }
45
+ },
46
+ "dark": {
47
+ "palette": {
48
+ "neutral": "#263238",
49
+ "ink": "#eeffff",
50
+ "primary": "#82aaff",
51
+ "accent": "#89ddff",
52
+ "success": "#c3e88d",
53
+ "warning": "#ffcb6b",
54
+ "error": "#f07178",
55
+ "info": "#ffcb6b",
56
+ "interactive": "#89ddff"
57
+ },
58
+ "overrides": {
59
+ "text-weak": "#546e7a",
60
+ "syntax-comment": "#546e7a",
61
+ "syntax-keyword": "#c792ea",
62
+ "syntax-string": "#c3e88d",
63
+ "syntax-primitive": "#82aaff",
64
+ "syntax-variable": "#eeffff",
65
+ "syntax-property": "#c792ea",
66
+ "syntax-type": "#ffcb6b",
67
+ "syntax-constant": "#ffcb6b",
68
+ "syntax-operator": "#89ddff",
69
+ "syntax-punctuation": "#eeffff",
70
+ "syntax-object": "#eeffff",
71
+ "markdown-heading": "#82aaff",
72
+ "markdown-text": "#eeffff",
73
+ "markdown-link": "#89ddff",
74
+ "markdown-link-text": "#c792ea",
75
+ "markdown-code": "#c3e88d",
76
+ "markdown-block-quote": "#546e7a",
77
+ "markdown-emph": "#ffcb6b",
78
+ "markdown-strong": "#ffcb6b",
79
+ "markdown-horizontal-rule": "#37474f",
80
+ "markdown-list-item": "#82aaff",
81
+ "markdown-list-enumeration": "#89ddff",
82
+ "markdown-image": "#89ddff",
83
+ "markdown-image-text": "#c792ea",
84
+ "markdown-code-block": "#eeffff"
85
+ }
86
+ }
87
+ }
@@ -0,0 +1,91 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Matrix",
4
+ "id": "matrix",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#eef3ea",
8
+ "ink": "#203022",
9
+ "primary": "#1cc24b",
10
+ "accent": "#c770ff",
11
+ "success": "#1cc24b",
12
+ "warning": "#e6ff57",
13
+ "error": "#ff4b4b",
14
+ "info": "#30b3ff",
15
+ "interactive": "#30b3ff",
16
+ "diffAdd": "#5dac7e",
17
+ "diffDelete": "#d53a3a"
18
+ },
19
+ "overrides": {
20
+ "text-weak": "#748476",
21
+ "syntax-comment": "#748476",
22
+ "syntax-keyword": "#c770ff",
23
+ "syntax-string": "#1cc24b",
24
+ "syntax-primitive": "#30b3ff",
25
+ "syntax-variable": "#203022",
26
+ "syntax-property": "#24f6d9",
27
+ "syntax-type": "#e6ff57",
28
+ "syntax-constant": "#ffa83d",
29
+ "syntax-operator": "#24f6d9",
30
+ "syntax-punctuation": "#203022",
31
+ "syntax-object": "#203022",
32
+ "markdown-heading": "#24f6d9",
33
+ "markdown-text": "#203022",
34
+ "markdown-link": "#30b3ff",
35
+ "markdown-link-text": "#24f6d9",
36
+ "markdown-code": "#1cc24b",
37
+ "markdown-block-quote": "#748476",
38
+ "markdown-emph": "#ffa83d",
39
+ "markdown-strong": "#e6ff57",
40
+ "markdown-horizontal-rule": "#748476",
41
+ "markdown-list-item": "#30b3ff",
42
+ "markdown-list-enumeration": "#24f6d9",
43
+ "markdown-image": "#30b3ff",
44
+ "markdown-image-text": "#24f6d9",
45
+ "markdown-code-block": "#203022"
46
+ }
47
+ },
48
+ "dark": {
49
+ "palette": {
50
+ "neutral": "#0a0e0a",
51
+ "ink": "#62ff94",
52
+ "primary": "#2eff6a",
53
+ "accent": "#c770ff",
54
+ "success": "#62ff94",
55
+ "warning": "#e6ff57",
56
+ "error": "#ff4b4b",
57
+ "info": "#30b3ff",
58
+ "interactive": "#30b3ff",
59
+ "diffAdd": "#77ffaf",
60
+ "diffDelete": "#ff7171"
61
+ },
62
+ "overrides": {
63
+ "text-weak": "#8ca391",
64
+ "syntax-comment": "#8ca391",
65
+ "syntax-keyword": "#c770ff",
66
+ "syntax-string": "#1cc24b",
67
+ "syntax-primitive": "#30b3ff",
68
+ "syntax-variable": "#62ff94",
69
+ "syntax-property": "#24f6d9",
70
+ "syntax-type": "#e6ff57",
71
+ "syntax-constant": "#ffa83d",
72
+ "syntax-operator": "#24f6d9",
73
+ "syntax-punctuation": "#62ff94",
74
+ "syntax-object": "#62ff94",
75
+ "markdown-heading": "#00efff",
76
+ "markdown-text": "#62ff94",
77
+ "markdown-link": "#30b3ff",
78
+ "markdown-link-text": "#24f6d9",
79
+ "markdown-code": "#1cc24b",
80
+ "markdown-block-quote": "#8ca391",
81
+ "markdown-emph": "#ffa83d",
82
+ "markdown-strong": "#e6ff57",
83
+ "markdown-horizontal-rule": "#8ca391",
84
+ "markdown-list-item": "#30b3ff",
85
+ "markdown-list-enumeration": "#24f6d9",
86
+ "markdown-image": "#30b3ff",
87
+ "markdown-image-text": "#24f6d9",
88
+ "markdown-code-block": "#62ff94"
89
+ }
90
+ }
91
+ }
@@ -0,0 +1,86 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Mercury",
4
+ "id": "mercury",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#ffffff",
8
+ "ink": "#363644",
9
+ "primary": "#5266eb",
10
+ "accent": "#8da4f5",
11
+ "success": "#036e43",
12
+ "warning": "#a44200",
13
+ "error": "#b0175f",
14
+ "info": "#007f95",
15
+ "interactive": "#465bd1"
16
+ },
17
+ "overrides": {
18
+ "text-weak": "#70707d",
19
+ "syntax-comment": "#70707d",
20
+ "syntax-keyword": "#465bd1",
21
+ "syntax-string": "#036e43",
22
+ "syntax-primitive": "#5266eb",
23
+ "syntax-variable": "#007f95",
24
+ "syntax-property": "#5266eb",
25
+ "syntax-type": "#007f95",
26
+ "syntax-constant": "#a44200",
27
+ "syntax-operator": "#465bd1",
28
+ "syntax-punctuation": "#363644",
29
+ "syntax-object": "#007f95",
30
+ "markdown-heading": "#1e1e2a",
31
+ "markdown-text": "#363644",
32
+ "markdown-link": "#465bd1",
33
+ "markdown-link-text": "#5266eb",
34
+ "markdown-code": "#036e43",
35
+ "markdown-block-quote": "#70707d",
36
+ "markdown-emph": "#a44200",
37
+ "markdown-strong": "#1e1e2a",
38
+ "markdown-horizontal-rule": "#7073931a",
39
+ "markdown-list-item": "#1e1e2a",
40
+ "markdown-list-enumeration": "#5266eb",
41
+ "markdown-image": "#465bd1",
42
+ "markdown-image-text": "#5266eb",
43
+ "markdown-code-block": "#363644"
44
+ }
45
+ },
46
+ "dark": {
47
+ "palette": {
48
+ "neutral": "#171721",
49
+ "ink": "#dddde5",
50
+ "primary": "#8da4f5",
51
+ "accent": "#8da4f5",
52
+ "success": "#77c599",
53
+ "warning": "#fc9b6f",
54
+ "error": "#fc92b4",
55
+ "info": "#77becf"
56
+ },
57
+ "overrides": {
58
+ "text-weak": "#9d9da8",
59
+ "syntax-comment": "#9d9da8",
60
+ "syntax-keyword": "#8da4f5",
61
+ "syntax-string": "#77c599",
62
+ "syntax-primitive": "#8da4f5",
63
+ "syntax-variable": "#77becf",
64
+ "syntax-property": "#a7b6f8",
65
+ "syntax-type": "#77becf",
66
+ "syntax-constant": "#fc9b6f",
67
+ "syntax-operator": "#8da4f5",
68
+ "syntax-punctuation": "#dddde5",
69
+ "syntax-object": "#77becf",
70
+ "markdown-heading": "#ffffff",
71
+ "markdown-text": "#dddde5",
72
+ "markdown-link": "#8da4f5",
73
+ "markdown-link-text": "#a7b6f8",
74
+ "markdown-code": "#77c599",
75
+ "markdown-block-quote": "#9d9da8",
76
+ "markdown-emph": "#fc9b6f",
77
+ "markdown-strong": "#f4f5f9",
78
+ "markdown-horizontal-rule": "#b4b7c81f",
79
+ "markdown-list-item": "#ffffff",
80
+ "markdown-list-enumeration": "#8da4f5",
81
+ "markdown-image": "#8da4f5",
82
+ "markdown-image-text": "#a7b6f8",
83
+ "markdown-code-block": "#dddde5"
84
+ }
85
+ }
86
+ }