@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.
- package/README.md +24 -0
- package/dist/src/commands/model/model.js +9 -5
- package/dist/src/commands/timeline/index.js +8 -0
- package/dist/src/commands/timeline/timeline.js +194 -0
- package/dist/src/commands.js +2 -0
- package/dist/src/components/AgentActivitySidebar.js +50 -0
- package/dist/src/components/AgentProgressLine.js +5 -5
- package/dist/src/components/ModelPicker.js +252 -441
- package/dist/src/components/PromptInput/PromptInputFooter.js +10 -29
- package/dist/src/components/Spinner/TeammateSpinnerLine.js +20 -62
- package/dist/src/components/Spinner/TeammateSpinnerTree.js +16 -258
- package/dist/src/components/Spinner/teammateSelectHint.js +1 -1
- package/dist/src/components/Spinner/utils.js +3 -6
- package/dist/src/components/ThemeBrowser.js +120 -0
- package/dist/src/components/ThemePicker.js +113 -321
- package/dist/src/components/design-system/ThemeProvider.js +3 -0
- package/dist/src/components/mcp/MCPListPanel.js +138 -444
- package/dist/src/components/permissions/SandboxPermissionRequest.js +5 -5
- package/dist/src/components/teams/TeamStatus.js +7 -71
- package/dist/src/constants/spinnerVerbs.js +80 -180
- package/dist/src/context/modalStackContext.js +12 -0
- package/dist/src/hooks/useTextInput.js +28 -18
- package/dist/src/main.js +12 -0
- package/dist/src/screens/REPL.js +386 -320
- package/dist/src/skills/loadSkillsDir.js +1 -0
- package/dist/src/tools/AgentTool/UI.js +8 -8
- package/dist/src/tools/BashTool/bashSecurity.js +1 -1
- package/dist/src/utils/handlePromptSubmit.js +12 -2
- package/dist/src/utils/processUserInput/processSlashCommand.js +9 -5
- package/dist/src/utils/sembleMcp/common.js +5 -0
- package/dist/src/utils/sembleMcp/setup.js +119 -0
- package/dist/src/utils/theme.js +24 -3
- package/dist/src/utils/themes/bootstrap.js +109 -0
- package/dist/src/utils/themes/builtin/opencode/_index.json +41 -0
- package/dist/src/utils/themes/builtin/opencode/amoled.json +49 -0
- package/dist/src/utils/themes/builtin/opencode/aura.json +51 -0
- package/dist/src/utils/themes/builtin/opencode/ayu.json +51 -0
- package/dist/src/utils/themes/builtin/opencode/carbonfox.json +53 -0
- package/dist/src/utils/themes/builtin/opencode/catppuccin-frappe.json +85 -0
- package/dist/src/utils/themes/builtin/opencode/catppuccin-macchiato.json +85 -0
- package/dist/src/utils/themes/builtin/opencode/catppuccin.json +45 -0
- package/dist/src/utils/themes/builtin/opencode/cobalt2.json +87 -0
- package/dist/src/utils/themes/builtin/opencode/cursor.json +91 -0
- package/dist/src/utils/themes/builtin/opencode/dracula.json +49 -0
- package/dist/src/utils/themes/builtin/opencode/everforest.json +89 -0
- package/dist/src/utils/themes/builtin/opencode/flexoki.json +86 -0
- package/dist/src/utils/themes/builtin/opencode/github.json +85 -0
- package/dist/src/utils/themes/builtin/opencode/gruvbox.json +45 -0
- package/dist/src/utils/themes/builtin/opencode/kanagawa.json +89 -0
- package/dist/src/utils/themes/builtin/opencode/lucent-orng.json +87 -0
- package/dist/src/utils/themes/builtin/opencode/material.json +87 -0
- package/dist/src/utils/themes/builtin/opencode/matrix.json +91 -0
- package/dist/src/utils/themes/builtin/opencode/mercury.json +86 -0
- package/dist/src/utils/themes/builtin/opencode/monokai.json +49 -0
- package/dist/src/utils/themes/builtin/opencode/nightowl.json +46 -0
- package/dist/src/utils/themes/builtin/opencode/nord.json +46 -0
- package/dist/src/utils/themes/builtin/opencode/oc-2.json +88 -0
- package/dist/src/utils/themes/builtin/opencode/one-dark.json +89 -0
- package/dist/src/utils/themes/builtin/opencode/onedarkpro.json +45 -0
- package/dist/src/utils/themes/builtin/opencode/opencode.json +89 -0
- package/dist/src/utils/themes/builtin/opencode/orng.json +87 -0
- package/dist/src/utils/themes/builtin/opencode/osaka-jade.json +88 -0
- package/dist/src/utils/themes/builtin/opencode/palenight.json +85 -0
- package/dist/src/utils/themes/builtin/opencode/rosepine.json +85 -0
- package/dist/src/utils/themes/builtin/opencode/shadesofpurple.json +51 -0
- package/dist/src/utils/themes/builtin/opencode/solarized.json +49 -0
- package/dist/src/utils/themes/builtin/opencode/synthwave84.json +87 -0
- package/dist/src/utils/themes/builtin/opencode/tokyonight.json +47 -0
- package/dist/src/utils/themes/builtin/opencode/vercel.json +90 -0
- package/dist/src/utils/themes/builtin/opencode/vesper.json +51 -0
- package/dist/src/utils/themes/builtin/opencode/zenburn.json +87 -0
- package/dist/src/utils/themes/index.js +4 -0
- package/dist/src/utils/themes/loader.js +147 -0
- package/dist/src/utils/themes/opencodeMapper.js +124 -0
- package/dist/src/utils/themes/resolver.js +66 -0
- package/dist/src/utils/themes/types.js +1 -0
- package/docs/MCP_SERVERS.md +27 -1
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Ayu",
|
|
4
|
+
"id": "ayu",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#fdfaf4",
|
|
8
|
+
"ink": "#4f5964",
|
|
9
|
+
"primary": "#4aa8c8",
|
|
10
|
+
"accent": "#ef7d71",
|
|
11
|
+
"success": "#5fb978",
|
|
12
|
+
"warning": "#ea9f41",
|
|
13
|
+
"error": "#e6656a",
|
|
14
|
+
"info": "#2f9bce",
|
|
15
|
+
"diffAdd": "#b1d780",
|
|
16
|
+
"diffDelete": "#e6656a"
|
|
17
|
+
},
|
|
18
|
+
"overrides": {
|
|
19
|
+
"syntax-comment": "#6e7681",
|
|
20
|
+
"syntax-keyword": "#c76a1a",
|
|
21
|
+
"syntax-string": "#6f8f00",
|
|
22
|
+
"syntax-primitive": "#b87500",
|
|
23
|
+
"syntax-property": "#2f86b7",
|
|
24
|
+
"syntax-type": "#227fc0",
|
|
25
|
+
"syntax-constant": "#a37acc"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"dark": {
|
|
29
|
+
"palette": {
|
|
30
|
+
"neutral": "#0f1419",
|
|
31
|
+
"ink": "#d6dae0",
|
|
32
|
+
"primary": "#3fb7e3",
|
|
33
|
+
"accent": "#f2856f",
|
|
34
|
+
"success": "#78d05c",
|
|
35
|
+
"warning": "#e4a75c",
|
|
36
|
+
"error": "#f58572",
|
|
37
|
+
"info": "#66c6f1",
|
|
38
|
+
"diffAdd": "#59c57c",
|
|
39
|
+
"diffDelete": "#f58572"
|
|
40
|
+
},
|
|
41
|
+
"overrides": {
|
|
42
|
+
"syntax-comment": "#5a6673",
|
|
43
|
+
"syntax-keyword": "#ff8f40",
|
|
44
|
+
"syntax-string": "#aad94c",
|
|
45
|
+
"syntax-primitive": "#ffb454",
|
|
46
|
+
"syntax-property": "#39bae6",
|
|
47
|
+
"syntax-type": "#59c2ff",
|
|
48
|
+
"syntax-constant": "#d2a6ff"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Carbonfox",
|
|
4
|
+
"id": "carbonfox",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#8e8e8e",
|
|
8
|
+
"ink": "#161616",
|
|
9
|
+
"primary": "#0072c3",
|
|
10
|
+
"accent": "#da1e28",
|
|
11
|
+
"success": "#198038",
|
|
12
|
+
"warning": "#f1c21b",
|
|
13
|
+
"error": "#da1e28",
|
|
14
|
+
"info": "#0043ce",
|
|
15
|
+
"interactive": "#0f62fe",
|
|
16
|
+
"diffAdd": "#198038",
|
|
17
|
+
"diffDelete": "#da1e28"
|
|
18
|
+
},
|
|
19
|
+
"overrides": {
|
|
20
|
+
"syntax-comment": "#6f6f6f",
|
|
21
|
+
"syntax-keyword": "#8a3ffc",
|
|
22
|
+
"syntax-string": "#198038",
|
|
23
|
+
"syntax-primitive": "#0f62fe",
|
|
24
|
+
"syntax-property": "#0043ce",
|
|
25
|
+
"syntax-type": "#8a5f00",
|
|
26
|
+
"syntax-constant": "#da1e28"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"dark": {
|
|
30
|
+
"palette": {
|
|
31
|
+
"neutral": "#393939",
|
|
32
|
+
"ink": "#f2f4f8",
|
|
33
|
+
"primary": "#33b1ff",
|
|
34
|
+
"accent": "#ff8389",
|
|
35
|
+
"success": "#42be65",
|
|
36
|
+
"warning": "#f1c21b",
|
|
37
|
+
"error": "#ff8389",
|
|
38
|
+
"info": "#78a9ff",
|
|
39
|
+
"interactive": "#4589ff",
|
|
40
|
+
"diffAdd": "#42be65",
|
|
41
|
+
"diffDelete": "#ff8389"
|
|
42
|
+
},
|
|
43
|
+
"overrides": {
|
|
44
|
+
"syntax-comment": "#6f6f6f",
|
|
45
|
+
"syntax-keyword": "#be95ff",
|
|
46
|
+
"syntax-string": "#42be65",
|
|
47
|
+
"syntax-primitive": "#33b1ff",
|
|
48
|
+
"syntax-property": "#78a9ff",
|
|
49
|
+
"syntax-type": "#f1c21b",
|
|
50
|
+
"syntax-constant": "#ff8389"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Catppuccin Frappe",
|
|
4
|
+
"id": "catppuccin-frappe",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#303446",
|
|
8
|
+
"ink": "#c6d0f5",
|
|
9
|
+
"primary": "#8da4e2",
|
|
10
|
+
"accent": "#f4b8e4",
|
|
11
|
+
"success": "#a6d189",
|
|
12
|
+
"warning": "#e5c890",
|
|
13
|
+
"error": "#e78284",
|
|
14
|
+
"info": "#81c8be"
|
|
15
|
+
},
|
|
16
|
+
"overrides": {
|
|
17
|
+
"text-weak": "#b5bfe2",
|
|
18
|
+
"syntax-comment": "#949cb8",
|
|
19
|
+
"syntax-keyword": "#ca9ee6",
|
|
20
|
+
"syntax-string": "#a6d189",
|
|
21
|
+
"syntax-primitive": "#8da4e2",
|
|
22
|
+
"syntax-variable": "#e78284",
|
|
23
|
+
"syntax-property": "#99d1db",
|
|
24
|
+
"syntax-type": "#e5c890",
|
|
25
|
+
"syntax-constant": "#ef9f76",
|
|
26
|
+
"syntax-operator": "#99d1db",
|
|
27
|
+
"syntax-punctuation": "#c6d0f5",
|
|
28
|
+
"syntax-object": "#e78284",
|
|
29
|
+
"markdown-heading": "#ca9ee6",
|
|
30
|
+
"markdown-text": "#c6d0f5",
|
|
31
|
+
"markdown-link": "#8da4e2",
|
|
32
|
+
"markdown-link-text": "#99d1db",
|
|
33
|
+
"markdown-code": "#a6d189",
|
|
34
|
+
"markdown-block-quote": "#e5c890",
|
|
35
|
+
"markdown-emph": "#e5c890",
|
|
36
|
+
"markdown-strong": "#ef9f76",
|
|
37
|
+
"markdown-horizontal-rule": "#a5adce",
|
|
38
|
+
"markdown-list-item": "#8da4e2",
|
|
39
|
+
"markdown-list-enumeration": "#99d1db",
|
|
40
|
+
"markdown-image": "#8da4e2",
|
|
41
|
+
"markdown-image-text": "#99d1db",
|
|
42
|
+
"markdown-code-block": "#c6d0f5"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"dark": {
|
|
46
|
+
"palette": {
|
|
47
|
+
"neutral": "#303446",
|
|
48
|
+
"ink": "#c6d0f5",
|
|
49
|
+
"primary": "#8da4e2",
|
|
50
|
+
"accent": "#f4b8e4",
|
|
51
|
+
"success": "#a6d189",
|
|
52
|
+
"warning": "#e5c890",
|
|
53
|
+
"error": "#e78284",
|
|
54
|
+
"info": "#81c8be"
|
|
55
|
+
},
|
|
56
|
+
"overrides": {
|
|
57
|
+
"text-weak": "#b5bfe2",
|
|
58
|
+
"syntax-comment": "#949cb8",
|
|
59
|
+
"syntax-keyword": "#ca9ee6",
|
|
60
|
+
"syntax-string": "#a6d189",
|
|
61
|
+
"syntax-primitive": "#8da4e2",
|
|
62
|
+
"syntax-variable": "#e78284",
|
|
63
|
+
"syntax-property": "#99d1db",
|
|
64
|
+
"syntax-type": "#e5c890",
|
|
65
|
+
"syntax-constant": "#ef9f76",
|
|
66
|
+
"syntax-operator": "#99d1db",
|
|
67
|
+
"syntax-punctuation": "#c6d0f5",
|
|
68
|
+
"syntax-object": "#e78284",
|
|
69
|
+
"markdown-heading": "#ca9ee6",
|
|
70
|
+
"markdown-text": "#c6d0f5",
|
|
71
|
+
"markdown-link": "#8da4e2",
|
|
72
|
+
"markdown-link-text": "#99d1db",
|
|
73
|
+
"markdown-code": "#a6d189",
|
|
74
|
+
"markdown-block-quote": "#e5c890",
|
|
75
|
+
"markdown-emph": "#e5c890",
|
|
76
|
+
"markdown-strong": "#ef9f76",
|
|
77
|
+
"markdown-horizontal-rule": "#a5adce",
|
|
78
|
+
"markdown-list-item": "#8da4e2",
|
|
79
|
+
"markdown-list-enumeration": "#99d1db",
|
|
80
|
+
"markdown-image": "#8da4e2",
|
|
81
|
+
"markdown-image-text": "#99d1db",
|
|
82
|
+
"markdown-code-block": "#c6d0f5"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Catppuccin Macchiato",
|
|
4
|
+
"id": "catppuccin-macchiato",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#24273a",
|
|
8
|
+
"ink": "#cad3f5",
|
|
9
|
+
"primary": "#8aadf4",
|
|
10
|
+
"accent": "#f5bde6",
|
|
11
|
+
"success": "#a6da95",
|
|
12
|
+
"warning": "#eed49f",
|
|
13
|
+
"error": "#ed8796",
|
|
14
|
+
"info": "#8bd5ca"
|
|
15
|
+
},
|
|
16
|
+
"overrides": {
|
|
17
|
+
"text-weak": "#b8c0e0",
|
|
18
|
+
"syntax-comment": "#939ab7",
|
|
19
|
+
"syntax-keyword": "#c6a0f6",
|
|
20
|
+
"syntax-string": "#a6da95",
|
|
21
|
+
"syntax-primitive": "#8aadf4",
|
|
22
|
+
"syntax-variable": "#ed8796",
|
|
23
|
+
"syntax-property": "#91d7e3",
|
|
24
|
+
"syntax-type": "#eed49f",
|
|
25
|
+
"syntax-constant": "#f5a97f",
|
|
26
|
+
"syntax-operator": "#91d7e3",
|
|
27
|
+
"syntax-punctuation": "#cad3f5",
|
|
28
|
+
"syntax-object": "#ed8796",
|
|
29
|
+
"markdown-heading": "#c6a0f6",
|
|
30
|
+
"markdown-text": "#cad3f5",
|
|
31
|
+
"markdown-link": "#8aadf4",
|
|
32
|
+
"markdown-link-text": "#91d7e3",
|
|
33
|
+
"markdown-code": "#a6da95",
|
|
34
|
+
"markdown-block-quote": "#eed49f",
|
|
35
|
+
"markdown-emph": "#eed49f",
|
|
36
|
+
"markdown-strong": "#f5a97f",
|
|
37
|
+
"markdown-horizontal-rule": "#a5adcb",
|
|
38
|
+
"markdown-list-item": "#8aadf4",
|
|
39
|
+
"markdown-list-enumeration": "#91d7e3",
|
|
40
|
+
"markdown-image": "#8aadf4",
|
|
41
|
+
"markdown-image-text": "#91d7e3",
|
|
42
|
+
"markdown-code-block": "#cad3f5"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"dark": {
|
|
46
|
+
"palette": {
|
|
47
|
+
"neutral": "#24273a",
|
|
48
|
+
"ink": "#cad3f5",
|
|
49
|
+
"primary": "#8aadf4",
|
|
50
|
+
"accent": "#f5bde6",
|
|
51
|
+
"success": "#a6da95",
|
|
52
|
+
"warning": "#eed49f",
|
|
53
|
+
"error": "#ed8796",
|
|
54
|
+
"info": "#8bd5ca"
|
|
55
|
+
},
|
|
56
|
+
"overrides": {
|
|
57
|
+
"text-weak": "#b8c0e0",
|
|
58
|
+
"syntax-comment": "#939ab7",
|
|
59
|
+
"syntax-keyword": "#c6a0f6",
|
|
60
|
+
"syntax-string": "#a6da95",
|
|
61
|
+
"syntax-primitive": "#8aadf4",
|
|
62
|
+
"syntax-variable": "#ed8796",
|
|
63
|
+
"syntax-property": "#91d7e3",
|
|
64
|
+
"syntax-type": "#eed49f",
|
|
65
|
+
"syntax-constant": "#f5a97f",
|
|
66
|
+
"syntax-operator": "#91d7e3",
|
|
67
|
+
"syntax-punctuation": "#cad3f5",
|
|
68
|
+
"syntax-object": "#ed8796",
|
|
69
|
+
"markdown-heading": "#c6a0f6",
|
|
70
|
+
"markdown-text": "#cad3f5",
|
|
71
|
+
"markdown-link": "#8aadf4",
|
|
72
|
+
"markdown-link-text": "#91d7e3",
|
|
73
|
+
"markdown-code": "#a6da95",
|
|
74
|
+
"markdown-block-quote": "#eed49f",
|
|
75
|
+
"markdown-emph": "#eed49f",
|
|
76
|
+
"markdown-strong": "#f5a97f",
|
|
77
|
+
"markdown-horizontal-rule": "#a5adcb",
|
|
78
|
+
"markdown-list-item": "#8aadf4",
|
|
79
|
+
"markdown-list-enumeration": "#91d7e3",
|
|
80
|
+
"markdown-image": "#8aadf4",
|
|
81
|
+
"markdown-image-text": "#91d7e3",
|
|
82
|
+
"markdown-code-block": "#cad3f5"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Catppuccin",
|
|
4
|
+
"id": "catppuccin",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#f5e0dc",
|
|
8
|
+
"ink": "#4c4f69",
|
|
9
|
+
"primary": "#7287fd",
|
|
10
|
+
"accent": "#d20f39",
|
|
11
|
+
"success": "#40a02b",
|
|
12
|
+
"warning": "#df8e1d",
|
|
13
|
+
"error": "#d20f39",
|
|
14
|
+
"info": "#04a5e5",
|
|
15
|
+
"diffAdd": "#a6d189",
|
|
16
|
+
"diffDelete": "#e78284"
|
|
17
|
+
},
|
|
18
|
+
"overrides": {
|
|
19
|
+
"syntax-comment": "#6c7086",
|
|
20
|
+
"syntax-keyword": "#8839ef",
|
|
21
|
+
"syntax-primitive": "#1e66f5",
|
|
22
|
+
"syntax-constant": "#ca6702"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"dark": {
|
|
26
|
+
"palette": {
|
|
27
|
+
"neutral": "#1e1e2e",
|
|
28
|
+
"ink": "#cdd6f4",
|
|
29
|
+
"primary": "#b4befe",
|
|
30
|
+
"accent": "#f38ba8",
|
|
31
|
+
"success": "#a6d189",
|
|
32
|
+
"warning": "#f4b8e4",
|
|
33
|
+
"error": "#f38ba8",
|
|
34
|
+
"info": "#89dceb",
|
|
35
|
+
"diffAdd": "#94e2d5",
|
|
36
|
+
"diffDelete": "#f38ba8"
|
|
37
|
+
},
|
|
38
|
+
"overrides": {
|
|
39
|
+
"syntax-comment": "#6c7086",
|
|
40
|
+
"syntax-keyword": "#cba6f7",
|
|
41
|
+
"syntax-primitive": "#89b4fa",
|
|
42
|
+
"syntax-constant": "#fab387"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Cobalt2",
|
|
4
|
+
"id": "cobalt2",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#ffffff",
|
|
8
|
+
"ink": "#193549",
|
|
9
|
+
"primary": "#0066cc",
|
|
10
|
+
"accent": "#00acc1",
|
|
11
|
+
"success": "#4caf50",
|
|
12
|
+
"warning": "#ff9800",
|
|
13
|
+
"error": "#e91e63",
|
|
14
|
+
"info": "#ff5722"
|
|
15
|
+
},
|
|
16
|
+
"overrides": {
|
|
17
|
+
"text-weak": "#5c6b7d",
|
|
18
|
+
"syntax-comment": "#5c6b7d",
|
|
19
|
+
"syntax-keyword": "#ff5722",
|
|
20
|
+
"syntax-string": "#4caf50",
|
|
21
|
+
"syntax-primitive": "#ff9800",
|
|
22
|
+
"syntax-variable": "#193549",
|
|
23
|
+
"syntax-property": "#00acc1",
|
|
24
|
+
"syntax-type": "#00acc1",
|
|
25
|
+
"syntax-constant": "#e91e63",
|
|
26
|
+
"syntax-operator": "#ff5722",
|
|
27
|
+
"syntax-punctuation": "#193549",
|
|
28
|
+
"syntax-object": "#193549",
|
|
29
|
+
"markdown-heading": "#ff9800",
|
|
30
|
+
"markdown-text": "#193549",
|
|
31
|
+
"markdown-link": "#0066cc",
|
|
32
|
+
"markdown-link-text": "#00acc1",
|
|
33
|
+
"markdown-code": "#4caf50",
|
|
34
|
+
"markdown-block-quote": "#5c6b7d",
|
|
35
|
+
"markdown-emph": "#ff5722",
|
|
36
|
+
"markdown-strong": "#e91e63",
|
|
37
|
+
"markdown-horizontal-rule": "#d3dae3",
|
|
38
|
+
"markdown-list-item": "#0066cc",
|
|
39
|
+
"markdown-list-enumeration": "#00acc1",
|
|
40
|
+
"markdown-image": "#0066cc",
|
|
41
|
+
"markdown-image-text": "#00acc1",
|
|
42
|
+
"markdown-code-block": "#193549"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"dark": {
|
|
46
|
+
"palette": {
|
|
47
|
+
"neutral": "#193549",
|
|
48
|
+
"ink": "#ffffff",
|
|
49
|
+
"primary": "#0088ff",
|
|
50
|
+
"accent": "#2affdf",
|
|
51
|
+
"success": "#9eff80",
|
|
52
|
+
"warning": "#ffc600",
|
|
53
|
+
"error": "#ff0088",
|
|
54
|
+
"info": "#ff9d00",
|
|
55
|
+
"diffAdd": "#b9ff9f",
|
|
56
|
+
"diffDelete": "#ff5fb3"
|
|
57
|
+
},
|
|
58
|
+
"overrides": {
|
|
59
|
+
"text-weak": "#adb7c9",
|
|
60
|
+
"syntax-comment": "#0088ff",
|
|
61
|
+
"syntax-keyword": "#ff9d00",
|
|
62
|
+
"syntax-string": "#9eff80",
|
|
63
|
+
"syntax-primitive": "#ffc600",
|
|
64
|
+
"syntax-variable": "#ffffff",
|
|
65
|
+
"syntax-property": "#2affdf",
|
|
66
|
+
"syntax-type": "#2affdf",
|
|
67
|
+
"syntax-constant": "#ff628c",
|
|
68
|
+
"syntax-operator": "#ff9d00",
|
|
69
|
+
"syntax-punctuation": "#ffffff",
|
|
70
|
+
"syntax-object": "#ffffff",
|
|
71
|
+
"markdown-heading": "#ffc600",
|
|
72
|
+
"markdown-text": "#ffffff",
|
|
73
|
+
"markdown-link": "#0088ff",
|
|
74
|
+
"markdown-link-text": "#2affdf",
|
|
75
|
+
"markdown-code": "#9eff80",
|
|
76
|
+
"markdown-block-quote": "#adb7c9",
|
|
77
|
+
"markdown-emph": "#ff9d00",
|
|
78
|
+
"markdown-strong": "#ff628c",
|
|
79
|
+
"markdown-horizontal-rule": "#2d5a7b",
|
|
80
|
+
"markdown-list-item": "#0088ff",
|
|
81
|
+
"markdown-list-enumeration": "#2affdf",
|
|
82
|
+
"markdown-image": "#0088ff",
|
|
83
|
+
"markdown-image-text": "#2affdf",
|
|
84
|
+
"markdown-code-block": "#ffffff"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Cursor",
|
|
4
|
+
"id": "cursor",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#fcfcfc",
|
|
8
|
+
"ink": "#141414",
|
|
9
|
+
"primary": "#6f9ba6",
|
|
10
|
+
"accent": "#6f9ba6",
|
|
11
|
+
"success": "#1f8a65",
|
|
12
|
+
"warning": "#db704b",
|
|
13
|
+
"error": "#cf2d56",
|
|
14
|
+
"info": "#3c7cab",
|
|
15
|
+
"interactive": "#206595",
|
|
16
|
+
"diffAdd": "#55a583",
|
|
17
|
+
"diffDelete": "#e75e78"
|
|
18
|
+
},
|
|
19
|
+
"overrides": {
|
|
20
|
+
"text-weak": "#141414ad",
|
|
21
|
+
"syntax-comment": "#141414ad",
|
|
22
|
+
"syntax-keyword": "#b3003f",
|
|
23
|
+
"syntax-string": "#9e94d5",
|
|
24
|
+
"syntax-primitive": "#db704b",
|
|
25
|
+
"syntax-variable": "#141414",
|
|
26
|
+
"syntax-property": "#141414ad",
|
|
27
|
+
"syntax-type": "#206595",
|
|
28
|
+
"syntax-constant": "#b8448b",
|
|
29
|
+
"syntax-operator": "#141414",
|
|
30
|
+
"syntax-punctuation": "#141414",
|
|
31
|
+
"syntax-object": "#141414",
|
|
32
|
+
"markdown-heading": "#206595",
|
|
33
|
+
"markdown-text": "#141414",
|
|
34
|
+
"markdown-link": "#206595",
|
|
35
|
+
"markdown-link-text": "#141414ad",
|
|
36
|
+
"markdown-code": "#1f8a65",
|
|
37
|
+
"markdown-block-quote": "#141414ad",
|
|
38
|
+
"markdown-emph": "#141414",
|
|
39
|
+
"markdown-strong": "#141414",
|
|
40
|
+
"markdown-horizontal-rule": "#141414ad",
|
|
41
|
+
"markdown-list-item": "#141414",
|
|
42
|
+
"markdown-list-enumeration": "#141414ad",
|
|
43
|
+
"markdown-image": "#206595",
|
|
44
|
+
"markdown-image-text": "#141414ad",
|
|
45
|
+
"markdown-code-block": "#141414"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"dark": {
|
|
49
|
+
"palette": {
|
|
50
|
+
"neutral": "#181818",
|
|
51
|
+
"ink": "#e4e4e4",
|
|
52
|
+
"primary": "#88c0d0",
|
|
53
|
+
"accent": "#88c0d0",
|
|
54
|
+
"success": "#3fa266",
|
|
55
|
+
"warning": "#f1b467",
|
|
56
|
+
"error": "#e34671",
|
|
57
|
+
"info": "#81a1c1",
|
|
58
|
+
"interactive": "#82D2CE",
|
|
59
|
+
"diffAdd": "#70b489",
|
|
60
|
+
"diffDelete": "#fc6b83"
|
|
61
|
+
},
|
|
62
|
+
"overrides": {
|
|
63
|
+
"text-weak": "#e4e4e45e",
|
|
64
|
+
"syntax-comment": "#e4e4e45e",
|
|
65
|
+
"syntax-keyword": "#82D2CE",
|
|
66
|
+
"syntax-string": "#E394DC",
|
|
67
|
+
"syntax-primitive": "#EFB080",
|
|
68
|
+
"syntax-variable": "#e4e4e4",
|
|
69
|
+
"syntax-property": "#81a1c1",
|
|
70
|
+
"syntax-type": "#EFB080",
|
|
71
|
+
"syntax-constant": "#F8C762",
|
|
72
|
+
"syntax-operator": "#e4e4e4",
|
|
73
|
+
"syntax-punctuation": "#e4e4e4",
|
|
74
|
+
"syntax-object": "#e4e4e4",
|
|
75
|
+
"markdown-heading": "#AAA0FA",
|
|
76
|
+
"markdown-text": "#e4e4e4",
|
|
77
|
+
"markdown-link": "#82D2CE",
|
|
78
|
+
"markdown-link-text": "#81a1c1",
|
|
79
|
+
"markdown-code": "#E394DC",
|
|
80
|
+
"markdown-block-quote": "#e4e4e45e",
|
|
81
|
+
"markdown-emph": "#82D2CE",
|
|
82
|
+
"markdown-strong": "#F8C762",
|
|
83
|
+
"markdown-horizontal-rule": "#e4e4e45e",
|
|
84
|
+
"markdown-list-item": "#e4e4e4",
|
|
85
|
+
"markdown-list-enumeration": "#88c0d0",
|
|
86
|
+
"markdown-image": "#88c0d0",
|
|
87
|
+
"markdown-image-text": "#81a1c1",
|
|
88
|
+
"markdown-code-block": "#e4e4e4"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Dracula",
|
|
4
|
+
"id": "dracula",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#f8f8f2",
|
|
8
|
+
"ink": "#1f1f2f",
|
|
9
|
+
"primary": "#7c6bf5",
|
|
10
|
+
"accent": "#d16090",
|
|
11
|
+
"success": "#2fbf71",
|
|
12
|
+
"warning": "#f7a14d",
|
|
13
|
+
"error": "#d9536f",
|
|
14
|
+
"info": "#1d7fc5",
|
|
15
|
+
"diffAdd": "#9fe3b3",
|
|
16
|
+
"diffDelete": "#f8a1b8"
|
|
17
|
+
},
|
|
18
|
+
"overrides": {
|
|
19
|
+
"syntax-comment": "#7d7f97",
|
|
20
|
+
"syntax-keyword": "#d16090",
|
|
21
|
+
"syntax-string": "#596600",
|
|
22
|
+
"syntax-primitive": "#2f8f57",
|
|
23
|
+
"syntax-property": "#1d7fc5",
|
|
24
|
+
"syntax-constant": "#7c6bf5"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"dark": {
|
|
28
|
+
"palette": {
|
|
29
|
+
"neutral": "#1d1e28",
|
|
30
|
+
"ink": "#f8f8f2",
|
|
31
|
+
"primary": "#bd93f9",
|
|
32
|
+
"accent": "#ff79c6",
|
|
33
|
+
"success": "#50fa7b",
|
|
34
|
+
"warning": "#ffb86c",
|
|
35
|
+
"error": "#ff5555",
|
|
36
|
+
"info": "#8be9fd",
|
|
37
|
+
"diffAdd": "#2fb27d",
|
|
38
|
+
"diffDelete": "#ff6b81"
|
|
39
|
+
},
|
|
40
|
+
"overrides": {
|
|
41
|
+
"syntax-comment": "#6272a4",
|
|
42
|
+
"syntax-keyword": "#ff79c6",
|
|
43
|
+
"syntax-string": "#f1fa8c",
|
|
44
|
+
"syntax-primitive": "#50fa7b",
|
|
45
|
+
"syntax-property": "#8be9fd",
|
|
46
|
+
"syntax-constant": "#bd93f9"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/desktop-theme.json",
|
|
3
|
+
"name": "Everforest",
|
|
4
|
+
"id": "everforest",
|
|
5
|
+
"light": {
|
|
6
|
+
"palette": {
|
|
7
|
+
"neutral": "#fdf6e3",
|
|
8
|
+
"ink": "#5c6a72",
|
|
9
|
+
"primary": "#8da101",
|
|
10
|
+
"accent": "#df69ba",
|
|
11
|
+
"success": "#8da101",
|
|
12
|
+
"warning": "#f57d26",
|
|
13
|
+
"error": "#f85552",
|
|
14
|
+
"info": "#35a77c",
|
|
15
|
+
"diffAdd": "#4db380",
|
|
16
|
+
"diffDelete": "#f52a65"
|
|
17
|
+
},
|
|
18
|
+
"overrides": {
|
|
19
|
+
"text-weak": "#a6b0a0",
|
|
20
|
+
"syntax-comment": "#a6b0a0",
|
|
21
|
+
"syntax-keyword": "#df69ba",
|
|
22
|
+
"syntax-string": "#8da101",
|
|
23
|
+
"syntax-primitive": "#8da101",
|
|
24
|
+
"syntax-variable": "#f85552",
|
|
25
|
+
"syntax-property": "#35a77c",
|
|
26
|
+
"syntax-type": "#dfa000",
|
|
27
|
+
"syntax-constant": "#f57d26",
|
|
28
|
+
"syntax-operator": "#35a77c",
|
|
29
|
+
"syntax-punctuation": "#5c6a72",
|
|
30
|
+
"syntax-object": "#f85552",
|
|
31
|
+
"markdown-heading": "#df69ba",
|
|
32
|
+
"markdown-text": "#5c6a72",
|
|
33
|
+
"markdown-link": "#8da101",
|
|
34
|
+
"markdown-link-text": "#35a77c",
|
|
35
|
+
"markdown-code": "#8da101",
|
|
36
|
+
"markdown-block-quote": "#dfa000",
|
|
37
|
+
"markdown-emph": "#dfa000",
|
|
38
|
+
"markdown-strong": "#f57d26",
|
|
39
|
+
"markdown-horizontal-rule": "#a6b0a0",
|
|
40
|
+
"markdown-list-item": "#8da101",
|
|
41
|
+
"markdown-list-enumeration": "#35a77c",
|
|
42
|
+
"markdown-image": "#8da101",
|
|
43
|
+
"markdown-image-text": "#35a77c",
|
|
44
|
+
"markdown-code-block": "#5c6a72"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"dark": {
|
|
48
|
+
"palette": {
|
|
49
|
+
"neutral": "#2d353b",
|
|
50
|
+
"ink": "#d3c6aa",
|
|
51
|
+
"primary": "#a7c080",
|
|
52
|
+
"accent": "#d699b6",
|
|
53
|
+
"success": "#a7c080",
|
|
54
|
+
"warning": "#e69875",
|
|
55
|
+
"error": "#e67e80",
|
|
56
|
+
"info": "#83c092",
|
|
57
|
+
"diffAdd": "#b8db87",
|
|
58
|
+
"diffDelete": "#e26a75"
|
|
59
|
+
},
|
|
60
|
+
"overrides": {
|
|
61
|
+
"text-weak": "#7a8478",
|
|
62
|
+
"syntax-comment": "#7a8478",
|
|
63
|
+
"syntax-keyword": "#d699b6",
|
|
64
|
+
"syntax-string": "#a7c080",
|
|
65
|
+
"syntax-primitive": "#a7c080",
|
|
66
|
+
"syntax-variable": "#e67e80",
|
|
67
|
+
"syntax-property": "#83c092",
|
|
68
|
+
"syntax-type": "#dbbc7f",
|
|
69
|
+
"syntax-constant": "#e69875",
|
|
70
|
+
"syntax-operator": "#83c092",
|
|
71
|
+
"syntax-punctuation": "#d3c6aa",
|
|
72
|
+
"syntax-object": "#e67e80",
|
|
73
|
+
"markdown-heading": "#d699b6",
|
|
74
|
+
"markdown-text": "#d3c6aa",
|
|
75
|
+
"markdown-link": "#a7c080",
|
|
76
|
+
"markdown-link-text": "#83c092",
|
|
77
|
+
"markdown-code": "#a7c080",
|
|
78
|
+
"markdown-block-quote": "#dbbc7f",
|
|
79
|
+
"markdown-emph": "#dbbc7f",
|
|
80
|
+
"markdown-strong": "#e69875",
|
|
81
|
+
"markdown-horizontal-rule": "#7a8478",
|
|
82
|
+
"markdown-list-item": "#a7c080",
|
|
83
|
+
"markdown-list-enumeration": "#83c092",
|
|
84
|
+
"markdown-image": "#a7c080",
|
|
85
|
+
"markdown-image-text": "#83c092",
|
|
86
|
+
"markdown-code-block": "#d3c6aa"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|