@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,49 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Monokai",
4
+ "id": "monokai",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fdf8ec",
8
+ "ink": "#292318",
9
+ "primary": "#bf7bff",
10
+ "accent": "#d9487c",
11
+ "success": "#4fb54b",
12
+ "warning": "#f1a948",
13
+ "error": "#e54b4b",
14
+ "info": "#2d9ad7",
15
+ "diffAdd": "#bfe7a3",
16
+ "diffDelete": "#f6a3ae"
17
+ },
18
+ "overrides": {
19
+ "syntax-comment": "#8a816f",
20
+ "syntax-keyword": "#d9487c",
21
+ "syntax-string": "#8a6500",
22
+ "syntax-primitive": "#3c8d2f",
23
+ "syntax-property": "#1f88c8",
24
+ "syntax-constant": "#9b5fe0"
25
+ }
26
+ },
27
+ "dark": {
28
+ "palette": {
29
+ "neutral": "#272822",
30
+ "ink": "#f8f8f2",
31
+ "primary": "#ae81ff",
32
+ "accent": "#f92672",
33
+ "success": "#a6e22e",
34
+ "warning": "#fd971f",
35
+ "error": "#f92672",
36
+ "info": "#66d9ef",
37
+ "diffAdd": "#4d7f2a",
38
+ "diffDelete": "#f4477c"
39
+ },
40
+ "overrides": {
41
+ "syntax-comment": "#75715e",
42
+ "syntax-keyword": "#f92672",
43
+ "syntax-string": "#e6db74",
44
+ "syntax-primitive": "#a6e22e",
45
+ "syntax-property": "#66d9ef",
46
+ "syntax-constant": "#ae81ff"
47
+ }
48
+ }
49
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Night Owl",
4
+ "id": "nightowl",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#f0f0f0",
8
+ "ink": "#403f53",
9
+ "primary": "#4876d6",
10
+ "accent": "#aa0982",
11
+ "success": "#2aa298",
12
+ "warning": "#c96765",
13
+ "error": "#de3d3b",
14
+ "info": "#4876d6",
15
+ "diffAdd": "#2aa298",
16
+ "diffDelete": "#de3d3b"
17
+ },
18
+ "overrides": {
19
+ "syntax-comment": "#7a8181",
20
+ "syntax-keyword": "#994cc3",
21
+ "syntax-primitive": "#4876d6",
22
+ "syntax-constant": "#c96765"
23
+ }
24
+ },
25
+ "dark": {
26
+ "palette": {
27
+ "neutral": "#011627",
28
+ "ink": "#d6deeb",
29
+ "primary": "#82aaff",
30
+ "accent": "#f78c6c",
31
+ "success": "#c5e478",
32
+ "warning": "#ecc48d",
33
+ "error": "#ef5350",
34
+ "info": "#82aaff",
35
+ "diffAdd": "#c5e478",
36
+ "diffDelete": "#ef5350"
37
+ },
38
+ "overrides": {
39
+ "syntax-comment": "#637777",
40
+ "syntax-keyword": "#c792ea",
41
+ "syntax-string": "#ecc48d",
42
+ "syntax-primitive": "#82aaff",
43
+ "syntax-constant": "#f78c6c"
44
+ }
45
+ }
46
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "Nord",
4
+ "id": "nord",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#eceff4",
8
+ "ink": "#2e3440",
9
+ "primary": "#5e81ac",
10
+ "accent": "#bf616a",
11
+ "success": "#8fbcbb",
12
+ "warning": "#d08770",
13
+ "error": "#bf616a",
14
+ "info": "#81a1c1",
15
+ "diffAdd": "#a3be8c",
16
+ "diffDelete": "#bf616a"
17
+ },
18
+ "overrides": {
19
+ "syntax-comment": "#6b7282",
20
+ "syntax-keyword": "#5e81ac",
21
+ "syntax-string": "#6f8758",
22
+ "syntax-primitive": "#5e81ac",
23
+ "syntax-constant": "#8d6886"
24
+ }
25
+ },
26
+ "dark": {
27
+ "palette": {
28
+ "neutral": "#2e3440",
29
+ "ink": "#e5e9f0",
30
+ "primary": "#88c0d0",
31
+ "accent": "#d57780",
32
+ "success": "#a3be8c",
33
+ "warning": "#d08770",
34
+ "error": "#bf616a",
35
+ "info": "#81a1c1",
36
+ "diffAdd": "#81a1c1",
37
+ "diffDelete": "#bf616a"
38
+ },
39
+ "overrides": {
40
+ "syntax-comment": "#616e88",
41
+ "syntax-keyword": "#81a1c1",
42
+ "syntax-primitive": "#88c0d0",
43
+ "syntax-constant": "#b48ead"
44
+ }
45
+ }
46
+ }
@@ -0,0 +1,88 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "OC-2",
4
+ "id": "oc-2",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#f7f7f7",
8
+ "ink": "#171311",
9
+ "primary": "#dcde8d",
10
+ "success": "#12c905",
11
+ "warning": "#ffdc17",
12
+ "error": "#fc533a",
13
+ "info": "#a753ae",
14
+ "interactive": "#034cff",
15
+ "diffAdd": "#9ff29a",
16
+ "diffDelete": "#fc533a"
17
+ },
18
+ "overrides": {
19
+ "text-strong": "#171717",
20
+ "text-base": "#6F6F6F",
21
+ "text-weak": "#8F8F8F",
22
+ "text-weaker": "#C7C7C7",
23
+ "border-weak-base": "#DBDBDB",
24
+ "border-weaker-base": "#E8E8E8",
25
+ "icon-base": "#8F8F8F",
26
+ "icon-weak-base": "C7C7C7",
27
+ "surface-raised-base": "#F3F3F3",
28
+ "surface-raised-base-hover": "#EDEDED",
29
+ "surface-base": "#F8F8F8",
30
+ "surface-base-hover": "#0000000A",
31
+ "surface-interactive-weak": "#F5FAFF",
32
+ "icon-success-base": "#0ABE00",
33
+ "surface-success-base": "#E6FFE5",
34
+ "syntax-comment": "#7a7a7a",
35
+ "syntax-keyword": "#a753ae",
36
+ "syntax-string": "#00ceb9",
37
+ "syntax-primitive": "#034cff",
38
+ "syntax-property": "#a753ae",
39
+ "syntax-type": "#8a6f00",
40
+ "syntax-constant": "#007b80",
41
+ "syntax-critical": "#ff8c00",
42
+ "syntax-diff-delete": "#ff8c00",
43
+ "syntax-diff-unknown": "#a753ae",
44
+ "surface-critical-base": "#FFF2F0"
45
+ }
46
+ },
47
+ "dark": {
48
+ "palette": {
49
+ "neutral": "#1f1f1f",
50
+ "ink": "#f1ece8",
51
+ "primary": "#fab283",
52
+ "success": "#12c905",
53
+ "warning": "#fcd53a",
54
+ "error": "#fc533a",
55
+ "info": "#edb2f1",
56
+ "interactive": "#034cff",
57
+ "diffAdd": "#c8ffc4",
58
+ "diffDelete": "#fc533a"
59
+ },
60
+ "overrides": {
61
+ "text-strong": "#EDEDED",
62
+ "text-base": "#A0A0A0",
63
+ "text-weak": "#707070",
64
+ "text-weaker": "#505050",
65
+ "border-weak-base": "#282828",
66
+ "border-weaker-base": "#232323",
67
+ "icon-base": "#7E7E7E",
68
+ "icon-weak-base": "#343434",
69
+ "surface-raised-base": "#232323",
70
+ "surface-raised-base-hover": "#282828",
71
+ "surface-base": "#1C1C1C",
72
+ "surface-base-hover": "#FFFFFF0D",
73
+ "surface-interactive-weak": "#0D172B",
74
+ "surface-success-base": "#022B00",
75
+ "syntax-comment": "#8f8f8f",
76
+ "syntax-keyword": "#edb2f1",
77
+ "syntax-string": "#00ceb9",
78
+ "syntax-primitive": "#8cb0ff",
79
+ "syntax-property": "#fab283",
80
+ "syntax-type": "#fcd53a",
81
+ "syntax-constant": "#93e9f6",
82
+ "syntax-critical": "#fab283",
83
+ "syntax-diff-delete": "#fab283",
84
+ "syntax-diff-unknown": "#edb2f1",
85
+ "surface-critical-base": "#1F0603"
86
+ }
87
+ }
88
+ }
@@ -0,0 +1,89 @@
1
+ {
2
+ "$schema": "https://opencode.ai/desktop-theme.json",
3
+ "name": "One Dark",
4
+ "id": "one-dark",
5
+ "light": {
6
+ "palette": {
7
+ "neutral": "#fafafa",
8
+ "ink": "#383a42",
9
+ "primary": "#4078f2",
10
+ "accent": "#0184bc",
11
+ "success": "#50a14f",
12
+ "warning": "#c18401",
13
+ "error": "#e45649",
14
+ "info": "#986801",
15
+ "diffAdd": "#489447",
16
+ "diffDelete": "#d65145"
17
+ },
18
+ "overrides": {
19
+ "text-weak": "#a0a1a7",
20
+ "syntax-comment": "#a0a1a7",
21
+ "syntax-keyword": "#a626a4",
22
+ "syntax-string": "#50a14f",
23
+ "syntax-primitive": "#4078f2",
24
+ "syntax-variable": "#e45649",
25
+ "syntax-property": "#0184bc",
26
+ "syntax-type": "#c18401",
27
+ "syntax-constant": "#986801",
28
+ "syntax-operator": "#0184bc",
29
+ "syntax-punctuation": "#383a42",
30
+ "syntax-object": "#e45649",
31
+ "markdown-heading": "#a626a4",
32
+ "markdown-text": "#383a42",
33
+ "markdown-link": "#4078f2",
34
+ "markdown-link-text": "#0184bc",
35
+ "markdown-code": "#50a14f",
36
+ "markdown-block-quote": "#a0a1a7",
37
+ "markdown-emph": "#c18401",
38
+ "markdown-strong": "#986801",
39
+ "markdown-horizontal-rule": "#a0a1a7",
40
+ "markdown-list-item": "#4078f2",
41
+ "markdown-list-enumeration": "#0184bc",
42
+ "markdown-image": "#4078f2",
43
+ "markdown-image-text": "#0184bc",
44
+ "markdown-code-block": "#383a42"
45
+ }
46
+ },
47
+ "dark": {
48
+ "palette": {
49
+ "neutral": "#282c34",
50
+ "ink": "#abb2bf",
51
+ "primary": "#61afef",
52
+ "accent": "#56b6c2",
53
+ "success": "#98c379",
54
+ "warning": "#e5c07b",
55
+ "error": "#e06c75",
56
+ "info": "#d19a66",
57
+ "diffAdd": "#aad482",
58
+ "diffDelete": "#e8828b"
59
+ },
60
+ "overrides": {
61
+ "text-weak": "#5c6370",
62
+ "syntax-comment": "#5c6370",
63
+ "syntax-keyword": "#c678dd",
64
+ "syntax-string": "#98c379",
65
+ "syntax-primitive": "#61afef",
66
+ "syntax-variable": "#e06c75",
67
+ "syntax-property": "#56b6c2",
68
+ "syntax-type": "#e5c07b",
69
+ "syntax-constant": "#d19a66",
70
+ "syntax-operator": "#56b6c2",
71
+ "syntax-punctuation": "#abb2bf",
72
+ "syntax-object": "#e06c75",
73
+ "markdown-heading": "#c678dd",
74
+ "markdown-text": "#abb2bf",
75
+ "markdown-link": "#61afef",
76
+ "markdown-link-text": "#56b6c2",
77
+ "markdown-code": "#98c379",
78
+ "markdown-block-quote": "#5c6370",
79
+ "markdown-emph": "#e5c07b",
80
+ "markdown-strong": "#d19a66",
81
+ "markdown-horizontal-rule": "#5c6370",
82
+ "markdown-list-item": "#61afef",
83
+ "markdown-list-enumeration": "#56b6c2",
84
+ "markdown-image": "#61afef",
85
+ "markdown-image-text": "#56b6c2",
86
+ "markdown-code-block": "#abb2bf"
87
+ }
88
+ }
89
+ }
@@ -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
+ }