@vladimirven/openswe 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +203 -0
- package/CLAUDE.md +203 -0
- package/README.md +166 -0
- package/bun.lock +447 -0
- package/bunfig.toml +4 -0
- package/package.json +42 -0
- package/src/app.tsx +84 -0
- package/src/components/App.tsx +526 -0
- package/src/components/ConfirmDialog.tsx +88 -0
- package/src/components/Footer.tsx +50 -0
- package/src/components/HelpModal.tsx +136 -0
- package/src/components/IssueSelectorModal.tsx +701 -0
- package/src/components/ManualSessionModal.tsx +191 -0
- package/src/components/PhaseProgress.tsx +45 -0
- package/src/components/Preview.tsx +249 -0
- package/src/components/ProviderSwitcherModal.tsx +156 -0
- package/src/components/ScrollableText.tsx +120 -0
- package/src/components/SessionCard.tsx +60 -0
- package/src/components/SessionList.tsx +79 -0
- package/src/components/SessionTerminal.tsx +89 -0
- package/src/components/StatusBar.tsx +84 -0
- package/src/components/ThemeSwitcherModal.tsx +237 -0
- package/src/components/index.ts +58 -0
- package/src/components/session-utils.ts +337 -0
- package/src/components/theme.ts +206 -0
- package/src/components/types.ts +215 -0
- package/src/config/defaults.ts +44 -0
- package/src/config/env.ts +67 -0
- package/src/config/global.ts +252 -0
- package/src/config/index.ts +171 -0
- package/src/config/types.ts +131 -0
- package/src/core/.gitkeep +0 -0
- package/src/core/index.ts +5 -0
- package/src/core/parser.ts +62 -0
- package/src/core/process-manager.ts +52 -0
- package/src/core/session.ts +423 -0
- package/src/core/tmux.ts +206 -0
- package/src/git/.gitkeep +0 -0
- package/src/git/index.ts +8 -0
- package/src/git/repo.ts +443 -0
- package/src/git/worktree.ts +317 -0
- package/src/github/.gitkeep +0 -0
- package/src/github/client.ts +208 -0
- package/src/github/index.ts +8 -0
- package/src/github/issues.ts +351 -0
- package/src/index.ts +369 -0
- package/src/prompts/.gitkeep +0 -0
- package/src/prompts/index.ts +1 -0
- package/src/prompts/swe-system.ts +22 -0
- package/src/providers/claude.ts +103 -0
- package/src/providers/index.ts +21 -0
- package/src/providers/opencode.ts +98 -0
- package/src/providers/registry.ts +53 -0
- package/src/providers/types.ts +117 -0
- package/src/store/buffers.ts +234 -0
- package/src/store/db.test.ts +579 -0
- package/src/store/db.ts +249 -0
- package/src/store/index.ts +101 -0
- package/src/store/project.ts +119 -0
- package/src/store/schema.sql +71 -0
- package/src/store/sessions.ts +454 -0
- package/src/store/types.ts +194 -0
- package/src/theme/context.tsx +170 -0
- package/src/theme/custom.ts +134 -0
- package/src/theme/index.ts +58 -0
- package/src/theme/loader.ts +264 -0
- package/src/theme/themes/aura.json +69 -0
- package/src/theme/themes/ayu.json +80 -0
- package/src/theme/themes/carbonfox.json +248 -0
- package/src/theme/themes/catppuccin-frappe.json +233 -0
- package/src/theme/themes/catppuccin-macchiato.json +233 -0
- package/src/theme/themes/catppuccin.json +112 -0
- package/src/theme/themes/cobalt2.json +228 -0
- package/src/theme/themes/cursor.json +249 -0
- package/src/theme/themes/dracula.json +219 -0
- package/src/theme/themes/everforest.json +241 -0
- package/src/theme/themes/flexoki.json +237 -0
- package/src/theme/themes/github.json +233 -0
- package/src/theme/themes/gruvbox.json +242 -0
- package/src/theme/themes/kanagawa.json +77 -0
- package/src/theme/themes/lucent-orng.json +237 -0
- package/src/theme/themes/material.json +235 -0
- package/src/theme/themes/matrix.json +77 -0
- package/src/theme/themes/mercury.json +252 -0
- package/src/theme/themes/monokai.json +221 -0
- package/src/theme/themes/nightowl.json +221 -0
- package/src/theme/themes/nord.json +223 -0
- package/src/theme/themes/one-dark.json +84 -0
- package/src/theme/themes/opencode.json +245 -0
- package/src/theme/themes/orng.json +249 -0
- package/src/theme/themes/osaka-jade.json +93 -0
- package/src/theme/themes/palenight.json +222 -0
- package/src/theme/themes/rosepine.json +234 -0
- package/src/theme/themes/solarized.json +223 -0
- package/src/theme/themes/synthwave84.json +226 -0
- package/src/theme/themes/tokyonight.json +243 -0
- package/src/theme/themes/vercel.json +245 -0
- package/src/theme/themes/vesper.json +218 -0
- package/src/theme/themes/zenburn.json +223 -0
- package/src/theme/types.ts +225 -0
- package/src/types/sql.d.ts +4 -0
- package/src/utils/ansi-parser.ts +225 -0
- package/src/utils/format.ts +46 -0
- package/src/utils/id.ts +15 -0
- package/src/utils/logger.ts +112 -0
- package/src/utils/prerequisites.ts +118 -0
- package/src/utils/shell.ts +9 -0
- package/src/wizard/flows.ts +419 -0
- package/src/wizard/index.ts +37 -0
- package/src/wizard/prompts.ts +190 -0
- package/src/workspace/detect.test.ts +51 -0
- package/src/workspace/detect.ts +223 -0
- package/src/workspace/index.ts +71 -0
- package/src/workspace/init.ts +131 -0
- package/src/workspace/paths.ts +143 -0
- package/src/workspace/project.ts +164 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"darkBg": "#181818",
|
|
5
|
+
"darkPanel": "#141414",
|
|
6
|
+
"darkElement": "#262626",
|
|
7
|
+
"darkFg": "#e4e4e4",
|
|
8
|
+
"darkMuted": "#e4e4e45e",
|
|
9
|
+
"darkBorder": "#e4e4e413",
|
|
10
|
+
"darkBorderActive": "#e4e4e426",
|
|
11
|
+
"darkCyan": "#88c0d0",
|
|
12
|
+
"darkBlue": "#81a1c1",
|
|
13
|
+
"darkGreen": "#3fa266",
|
|
14
|
+
"darkGreenBright": "#70b489",
|
|
15
|
+
"darkRed": "#e34671",
|
|
16
|
+
"darkRedBright": "#fc6b83",
|
|
17
|
+
"darkYellow": "#f1b467",
|
|
18
|
+
"darkOrange": "#d2943e",
|
|
19
|
+
"darkPink": "#E394DC",
|
|
20
|
+
"darkPurple": "#AAA0FA",
|
|
21
|
+
"darkTeal": "#82D2CE",
|
|
22
|
+
"darkSyntaxYellow": "#F8C762",
|
|
23
|
+
"darkSyntaxOrange": "#EFB080",
|
|
24
|
+
"darkSyntaxGreen": "#A8CC7C",
|
|
25
|
+
"darkSyntaxBlue": "#87C3FF",
|
|
26
|
+
"lightBg": "#fcfcfc",
|
|
27
|
+
"lightPanel": "#f3f3f3",
|
|
28
|
+
"lightElement": "#ededed",
|
|
29
|
+
"lightFg": "#141414",
|
|
30
|
+
"lightMuted": "#141414ad",
|
|
31
|
+
"lightBorder": "#14141413",
|
|
32
|
+
"lightBorderActive": "#14141426",
|
|
33
|
+
"lightTeal": "#6f9ba6",
|
|
34
|
+
"lightBlue": "#3c7cab",
|
|
35
|
+
"lightBlueDark": "#206595",
|
|
36
|
+
"lightGreen": "#1f8a65",
|
|
37
|
+
"lightGreenBright": "#55a583",
|
|
38
|
+
"lightRed": "#cf2d56",
|
|
39
|
+
"lightRedBright": "#e75e78",
|
|
40
|
+
"lightOrange": "#db704b",
|
|
41
|
+
"lightYellow": "#c08532",
|
|
42
|
+
"lightPurple": "#9e94d5",
|
|
43
|
+
"lightPurpleDark": "#6049b3",
|
|
44
|
+
"lightPink": "#b8448b",
|
|
45
|
+
"lightMagenta": "#b3003f"
|
|
46
|
+
},
|
|
47
|
+
"theme": {
|
|
48
|
+
"primary": {
|
|
49
|
+
"dark": "darkCyan",
|
|
50
|
+
"light": "lightTeal"
|
|
51
|
+
},
|
|
52
|
+
"secondary": {
|
|
53
|
+
"dark": "darkBlue",
|
|
54
|
+
"light": "lightBlue"
|
|
55
|
+
},
|
|
56
|
+
"accent": {
|
|
57
|
+
"dark": "darkCyan",
|
|
58
|
+
"light": "lightTeal"
|
|
59
|
+
},
|
|
60
|
+
"error": {
|
|
61
|
+
"dark": "darkRed",
|
|
62
|
+
"light": "lightRed"
|
|
63
|
+
},
|
|
64
|
+
"warning": {
|
|
65
|
+
"dark": "darkYellow",
|
|
66
|
+
"light": "lightOrange"
|
|
67
|
+
},
|
|
68
|
+
"success": {
|
|
69
|
+
"dark": "darkGreen",
|
|
70
|
+
"light": "lightGreen"
|
|
71
|
+
},
|
|
72
|
+
"info": {
|
|
73
|
+
"dark": "darkBlue",
|
|
74
|
+
"light": "lightBlue"
|
|
75
|
+
},
|
|
76
|
+
"text": {
|
|
77
|
+
"dark": "darkFg",
|
|
78
|
+
"light": "lightFg"
|
|
79
|
+
},
|
|
80
|
+
"textMuted": {
|
|
81
|
+
"dark": "darkMuted",
|
|
82
|
+
"light": "lightMuted"
|
|
83
|
+
},
|
|
84
|
+
"background": {
|
|
85
|
+
"dark": "darkBg",
|
|
86
|
+
"light": "lightBg"
|
|
87
|
+
},
|
|
88
|
+
"backgroundPanel": {
|
|
89
|
+
"dark": "darkPanel",
|
|
90
|
+
"light": "lightPanel"
|
|
91
|
+
},
|
|
92
|
+
"backgroundElement": {
|
|
93
|
+
"dark": "darkElement",
|
|
94
|
+
"light": "lightElement"
|
|
95
|
+
},
|
|
96
|
+
"border": {
|
|
97
|
+
"dark": "darkBorder",
|
|
98
|
+
"light": "lightBorder"
|
|
99
|
+
},
|
|
100
|
+
"borderActive": {
|
|
101
|
+
"dark": "darkCyan",
|
|
102
|
+
"light": "lightTeal"
|
|
103
|
+
},
|
|
104
|
+
"borderSubtle": {
|
|
105
|
+
"dark": "#0f0f0f",
|
|
106
|
+
"light": "#e0e0e0"
|
|
107
|
+
},
|
|
108
|
+
"diffAdded": {
|
|
109
|
+
"dark": "darkGreen",
|
|
110
|
+
"light": "lightGreen"
|
|
111
|
+
},
|
|
112
|
+
"diffRemoved": {
|
|
113
|
+
"dark": "darkRed",
|
|
114
|
+
"light": "lightRed"
|
|
115
|
+
},
|
|
116
|
+
"diffContext": {
|
|
117
|
+
"dark": "darkMuted",
|
|
118
|
+
"light": "lightMuted"
|
|
119
|
+
},
|
|
120
|
+
"diffHunkHeader": {
|
|
121
|
+
"dark": "darkMuted",
|
|
122
|
+
"light": "lightMuted"
|
|
123
|
+
},
|
|
124
|
+
"diffHighlightAdded": {
|
|
125
|
+
"dark": "darkGreenBright",
|
|
126
|
+
"light": "lightGreenBright"
|
|
127
|
+
},
|
|
128
|
+
"diffHighlightRemoved": {
|
|
129
|
+
"dark": "darkRedBright",
|
|
130
|
+
"light": "lightRedBright"
|
|
131
|
+
},
|
|
132
|
+
"diffAddedBg": {
|
|
133
|
+
"dark": "#3fa26633",
|
|
134
|
+
"light": "#1f8a651f"
|
|
135
|
+
},
|
|
136
|
+
"diffRemovedBg": {
|
|
137
|
+
"dark": "#b8004933",
|
|
138
|
+
"light": "#cf2d5614"
|
|
139
|
+
},
|
|
140
|
+
"diffContextBg": {
|
|
141
|
+
"dark": "darkPanel",
|
|
142
|
+
"light": "lightPanel"
|
|
143
|
+
},
|
|
144
|
+
"diffLineNumber": {
|
|
145
|
+
"dark": "#e4e4e442",
|
|
146
|
+
"light": "#1414147a"
|
|
147
|
+
},
|
|
148
|
+
"diffAddedLineNumberBg": {
|
|
149
|
+
"dark": "#3fa26633",
|
|
150
|
+
"light": "#1f8a651f"
|
|
151
|
+
},
|
|
152
|
+
"diffRemovedLineNumberBg": {
|
|
153
|
+
"dark": "#b8004933",
|
|
154
|
+
"light": "#cf2d5614"
|
|
155
|
+
},
|
|
156
|
+
"markdownText": {
|
|
157
|
+
"dark": "darkFg",
|
|
158
|
+
"light": "lightFg"
|
|
159
|
+
},
|
|
160
|
+
"markdownHeading": {
|
|
161
|
+
"dark": "darkPurple",
|
|
162
|
+
"light": "lightBlueDark"
|
|
163
|
+
},
|
|
164
|
+
"markdownLink": {
|
|
165
|
+
"dark": "darkTeal",
|
|
166
|
+
"light": "lightBlueDark"
|
|
167
|
+
},
|
|
168
|
+
"markdownLinkText": {
|
|
169
|
+
"dark": "darkBlue",
|
|
170
|
+
"light": "lightMuted"
|
|
171
|
+
},
|
|
172
|
+
"markdownCode": {
|
|
173
|
+
"dark": "darkPink",
|
|
174
|
+
"light": "lightGreen"
|
|
175
|
+
},
|
|
176
|
+
"markdownBlockQuote": {
|
|
177
|
+
"dark": "darkMuted",
|
|
178
|
+
"light": "lightMuted"
|
|
179
|
+
},
|
|
180
|
+
"markdownEmph": {
|
|
181
|
+
"dark": "darkTeal",
|
|
182
|
+
"light": "lightFg"
|
|
183
|
+
},
|
|
184
|
+
"markdownStrong": {
|
|
185
|
+
"dark": "darkSyntaxYellow",
|
|
186
|
+
"light": "lightFg"
|
|
187
|
+
},
|
|
188
|
+
"markdownHorizontalRule": {
|
|
189
|
+
"dark": "darkMuted",
|
|
190
|
+
"light": "lightMuted"
|
|
191
|
+
},
|
|
192
|
+
"markdownListItem": {
|
|
193
|
+
"dark": "darkFg",
|
|
194
|
+
"light": "lightFg"
|
|
195
|
+
},
|
|
196
|
+
"markdownListEnumeration": {
|
|
197
|
+
"dark": "darkCyan",
|
|
198
|
+
"light": "lightMuted"
|
|
199
|
+
},
|
|
200
|
+
"markdownImage": {
|
|
201
|
+
"dark": "darkCyan",
|
|
202
|
+
"light": "lightBlueDark"
|
|
203
|
+
},
|
|
204
|
+
"markdownImageText": {
|
|
205
|
+
"dark": "darkBlue",
|
|
206
|
+
"light": "lightMuted"
|
|
207
|
+
},
|
|
208
|
+
"markdownCodeBlock": {
|
|
209
|
+
"dark": "darkFg",
|
|
210
|
+
"light": "lightFg"
|
|
211
|
+
},
|
|
212
|
+
"syntaxComment": {
|
|
213
|
+
"dark": "darkMuted",
|
|
214
|
+
"light": "lightMuted"
|
|
215
|
+
},
|
|
216
|
+
"syntaxKeyword": {
|
|
217
|
+
"dark": "darkTeal",
|
|
218
|
+
"light": "lightMagenta"
|
|
219
|
+
},
|
|
220
|
+
"syntaxFunction": {
|
|
221
|
+
"dark": "darkSyntaxOrange",
|
|
222
|
+
"light": "lightOrange"
|
|
223
|
+
},
|
|
224
|
+
"syntaxVariable": {
|
|
225
|
+
"dark": "darkFg",
|
|
226
|
+
"light": "lightFg"
|
|
227
|
+
},
|
|
228
|
+
"syntaxString": {
|
|
229
|
+
"dark": "darkPink",
|
|
230
|
+
"light": "lightPurple"
|
|
231
|
+
},
|
|
232
|
+
"syntaxNumber": {
|
|
233
|
+
"dark": "darkSyntaxYellow",
|
|
234
|
+
"light": "lightPink"
|
|
235
|
+
},
|
|
236
|
+
"syntaxType": {
|
|
237
|
+
"dark": "darkSyntaxOrange",
|
|
238
|
+
"light": "lightBlueDark"
|
|
239
|
+
},
|
|
240
|
+
"syntaxOperator": {
|
|
241
|
+
"dark": "darkFg",
|
|
242
|
+
"light": "lightFg"
|
|
243
|
+
},
|
|
244
|
+
"syntaxPunctuation": {
|
|
245
|
+
"dark": "darkFg",
|
|
246
|
+
"light": "lightFg"
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"background": "#282a36",
|
|
5
|
+
"currentLine": "#44475a",
|
|
6
|
+
"selection": "#44475a",
|
|
7
|
+
"foreground": "#f8f8f2",
|
|
8
|
+
"comment": "#6272a4",
|
|
9
|
+
"cyan": "#8be9fd",
|
|
10
|
+
"green": "#50fa7b",
|
|
11
|
+
"orange": "#ffb86c",
|
|
12
|
+
"pink": "#ff79c6",
|
|
13
|
+
"purple": "#bd93f9",
|
|
14
|
+
"red": "#ff5555",
|
|
15
|
+
"yellow": "#f1fa8c"
|
|
16
|
+
},
|
|
17
|
+
"theme": {
|
|
18
|
+
"primary": {
|
|
19
|
+
"dark": "purple",
|
|
20
|
+
"light": "purple"
|
|
21
|
+
},
|
|
22
|
+
"secondary": {
|
|
23
|
+
"dark": "pink",
|
|
24
|
+
"light": "pink"
|
|
25
|
+
},
|
|
26
|
+
"accent": {
|
|
27
|
+
"dark": "cyan",
|
|
28
|
+
"light": "cyan"
|
|
29
|
+
},
|
|
30
|
+
"error": {
|
|
31
|
+
"dark": "red",
|
|
32
|
+
"light": "red"
|
|
33
|
+
},
|
|
34
|
+
"warning": {
|
|
35
|
+
"dark": "yellow",
|
|
36
|
+
"light": "yellow"
|
|
37
|
+
},
|
|
38
|
+
"success": {
|
|
39
|
+
"dark": "green",
|
|
40
|
+
"light": "green"
|
|
41
|
+
},
|
|
42
|
+
"info": {
|
|
43
|
+
"dark": "orange",
|
|
44
|
+
"light": "orange"
|
|
45
|
+
},
|
|
46
|
+
"text": {
|
|
47
|
+
"dark": "foreground",
|
|
48
|
+
"light": "#282a36"
|
|
49
|
+
},
|
|
50
|
+
"textMuted": {
|
|
51
|
+
"dark": "comment",
|
|
52
|
+
"light": "#6272a4"
|
|
53
|
+
},
|
|
54
|
+
"background": {
|
|
55
|
+
"dark": "#282a36",
|
|
56
|
+
"light": "#f8f8f2"
|
|
57
|
+
},
|
|
58
|
+
"backgroundPanel": {
|
|
59
|
+
"dark": "#21222c",
|
|
60
|
+
"light": "#e8e8e2"
|
|
61
|
+
},
|
|
62
|
+
"backgroundElement": {
|
|
63
|
+
"dark": "currentLine",
|
|
64
|
+
"light": "#d8d8d2"
|
|
65
|
+
},
|
|
66
|
+
"border": {
|
|
67
|
+
"dark": "currentLine",
|
|
68
|
+
"light": "#c8c8c2"
|
|
69
|
+
},
|
|
70
|
+
"borderActive": {
|
|
71
|
+
"dark": "purple",
|
|
72
|
+
"light": "purple"
|
|
73
|
+
},
|
|
74
|
+
"borderSubtle": {
|
|
75
|
+
"dark": "#191a21",
|
|
76
|
+
"light": "#e0e0e0"
|
|
77
|
+
},
|
|
78
|
+
"diffAdded": {
|
|
79
|
+
"dark": "green",
|
|
80
|
+
"light": "green"
|
|
81
|
+
},
|
|
82
|
+
"diffRemoved": {
|
|
83
|
+
"dark": "red",
|
|
84
|
+
"light": "red"
|
|
85
|
+
},
|
|
86
|
+
"diffContext": {
|
|
87
|
+
"dark": "comment",
|
|
88
|
+
"light": "#6272a4"
|
|
89
|
+
},
|
|
90
|
+
"diffHunkHeader": {
|
|
91
|
+
"dark": "comment",
|
|
92
|
+
"light": "#6272a4"
|
|
93
|
+
},
|
|
94
|
+
"diffHighlightAdded": {
|
|
95
|
+
"dark": "green",
|
|
96
|
+
"light": "green"
|
|
97
|
+
},
|
|
98
|
+
"diffHighlightRemoved": {
|
|
99
|
+
"dark": "red",
|
|
100
|
+
"light": "red"
|
|
101
|
+
},
|
|
102
|
+
"diffAddedBg": {
|
|
103
|
+
"dark": "#1a3a1a",
|
|
104
|
+
"light": "#e0ffe0"
|
|
105
|
+
},
|
|
106
|
+
"diffRemovedBg": {
|
|
107
|
+
"dark": "#3a1a1a",
|
|
108
|
+
"light": "#ffe0e0"
|
|
109
|
+
},
|
|
110
|
+
"diffContextBg": {
|
|
111
|
+
"dark": "#21222c",
|
|
112
|
+
"light": "#e8e8e2"
|
|
113
|
+
},
|
|
114
|
+
"diffLineNumber": {
|
|
115
|
+
"dark": "currentLine",
|
|
116
|
+
"light": "#c8c8c2"
|
|
117
|
+
},
|
|
118
|
+
"diffAddedLineNumberBg": {
|
|
119
|
+
"dark": "#1a3a1a",
|
|
120
|
+
"light": "#e0ffe0"
|
|
121
|
+
},
|
|
122
|
+
"diffRemovedLineNumberBg": {
|
|
123
|
+
"dark": "#3a1a1a",
|
|
124
|
+
"light": "#ffe0e0"
|
|
125
|
+
},
|
|
126
|
+
"markdownText": {
|
|
127
|
+
"dark": "foreground",
|
|
128
|
+
"light": "#282a36"
|
|
129
|
+
},
|
|
130
|
+
"markdownHeading": {
|
|
131
|
+
"dark": "purple",
|
|
132
|
+
"light": "purple"
|
|
133
|
+
},
|
|
134
|
+
"markdownLink": {
|
|
135
|
+
"dark": "cyan",
|
|
136
|
+
"light": "cyan"
|
|
137
|
+
},
|
|
138
|
+
"markdownLinkText": {
|
|
139
|
+
"dark": "pink",
|
|
140
|
+
"light": "pink"
|
|
141
|
+
},
|
|
142
|
+
"markdownCode": {
|
|
143
|
+
"dark": "green",
|
|
144
|
+
"light": "green"
|
|
145
|
+
},
|
|
146
|
+
"markdownBlockQuote": {
|
|
147
|
+
"dark": "comment",
|
|
148
|
+
"light": "#6272a4"
|
|
149
|
+
},
|
|
150
|
+
"markdownEmph": {
|
|
151
|
+
"dark": "yellow",
|
|
152
|
+
"light": "yellow"
|
|
153
|
+
},
|
|
154
|
+
"markdownStrong": {
|
|
155
|
+
"dark": "orange",
|
|
156
|
+
"light": "orange"
|
|
157
|
+
},
|
|
158
|
+
"markdownHorizontalRule": {
|
|
159
|
+
"dark": "comment",
|
|
160
|
+
"light": "#6272a4"
|
|
161
|
+
},
|
|
162
|
+
"markdownListItem": {
|
|
163
|
+
"dark": "purple",
|
|
164
|
+
"light": "purple"
|
|
165
|
+
},
|
|
166
|
+
"markdownListEnumeration": {
|
|
167
|
+
"dark": "cyan",
|
|
168
|
+
"light": "cyan"
|
|
169
|
+
},
|
|
170
|
+
"markdownImage": {
|
|
171
|
+
"dark": "cyan",
|
|
172
|
+
"light": "cyan"
|
|
173
|
+
},
|
|
174
|
+
"markdownImageText": {
|
|
175
|
+
"dark": "pink",
|
|
176
|
+
"light": "pink"
|
|
177
|
+
},
|
|
178
|
+
"markdownCodeBlock": {
|
|
179
|
+
"dark": "foreground",
|
|
180
|
+
"light": "#282a36"
|
|
181
|
+
},
|
|
182
|
+
"syntaxComment": {
|
|
183
|
+
"dark": "comment",
|
|
184
|
+
"light": "#6272a4"
|
|
185
|
+
},
|
|
186
|
+
"syntaxKeyword": {
|
|
187
|
+
"dark": "pink",
|
|
188
|
+
"light": "pink"
|
|
189
|
+
},
|
|
190
|
+
"syntaxFunction": {
|
|
191
|
+
"dark": "green",
|
|
192
|
+
"light": "green"
|
|
193
|
+
},
|
|
194
|
+
"syntaxVariable": {
|
|
195
|
+
"dark": "foreground",
|
|
196
|
+
"light": "#282a36"
|
|
197
|
+
},
|
|
198
|
+
"syntaxString": {
|
|
199
|
+
"dark": "yellow",
|
|
200
|
+
"light": "yellow"
|
|
201
|
+
},
|
|
202
|
+
"syntaxNumber": {
|
|
203
|
+
"dark": "purple",
|
|
204
|
+
"light": "purple"
|
|
205
|
+
},
|
|
206
|
+
"syntaxType": {
|
|
207
|
+
"dark": "cyan",
|
|
208
|
+
"light": "cyan"
|
|
209
|
+
},
|
|
210
|
+
"syntaxOperator": {
|
|
211
|
+
"dark": "pink",
|
|
212
|
+
"light": "pink"
|
|
213
|
+
},
|
|
214
|
+
"syntaxPunctuation": {
|
|
215
|
+
"dark": "foreground",
|
|
216
|
+
"light": "#282a36"
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"darkStep1": "#2d353b",
|
|
5
|
+
"darkStep2": "#333c43",
|
|
6
|
+
"darkStep3": "#343f44",
|
|
7
|
+
"darkStep4": "#3d484d",
|
|
8
|
+
"darkStep5": "#475258",
|
|
9
|
+
"darkStep6": "#7a8478",
|
|
10
|
+
"darkStep7": "#859289",
|
|
11
|
+
"darkStep8": "#9da9a0",
|
|
12
|
+
"darkStep9": "#a7c080",
|
|
13
|
+
"darkStep10": "#83c092",
|
|
14
|
+
"darkStep11": "#7a8478",
|
|
15
|
+
"darkStep12": "#d3c6aa",
|
|
16
|
+
"darkRed": "#e67e80",
|
|
17
|
+
"darkOrange": "#e69875",
|
|
18
|
+
"darkGreen": "#a7c080",
|
|
19
|
+
"darkCyan": "#83c092",
|
|
20
|
+
"darkYellow": "#dbbc7f",
|
|
21
|
+
"lightStep1": "#fdf6e3",
|
|
22
|
+
"lightStep2": "#efebd4",
|
|
23
|
+
"lightStep3": "#f4f0d9",
|
|
24
|
+
"lightStep4": "#efebd4",
|
|
25
|
+
"lightStep5": "#e6e2cc",
|
|
26
|
+
"lightStep6": "#a6b0a0",
|
|
27
|
+
"lightStep7": "#939f91",
|
|
28
|
+
"lightStep8": "#829181",
|
|
29
|
+
"lightStep9": "#8da101",
|
|
30
|
+
"lightStep10": "#35a77c",
|
|
31
|
+
"lightStep11": "#a6b0a0",
|
|
32
|
+
"lightStep12": "#5c6a72",
|
|
33
|
+
"lightRed": "#f85552",
|
|
34
|
+
"lightOrange": "#f57d26",
|
|
35
|
+
"lightGreen": "#8da101",
|
|
36
|
+
"lightCyan": "#35a77c",
|
|
37
|
+
"lightYellow": "#dfa000"
|
|
38
|
+
},
|
|
39
|
+
"theme": {
|
|
40
|
+
"primary": {
|
|
41
|
+
"dark": "darkStep9",
|
|
42
|
+
"light": "lightStep9"
|
|
43
|
+
},
|
|
44
|
+
"secondary": {
|
|
45
|
+
"dark": "#7fbbb3",
|
|
46
|
+
"light": "#3a94c5"
|
|
47
|
+
},
|
|
48
|
+
"accent": {
|
|
49
|
+
"dark": "#d699b6",
|
|
50
|
+
"light": "#df69ba"
|
|
51
|
+
},
|
|
52
|
+
"error": {
|
|
53
|
+
"dark": "darkRed",
|
|
54
|
+
"light": "lightRed"
|
|
55
|
+
},
|
|
56
|
+
"warning": {
|
|
57
|
+
"dark": "darkOrange",
|
|
58
|
+
"light": "lightOrange"
|
|
59
|
+
},
|
|
60
|
+
"success": {
|
|
61
|
+
"dark": "darkGreen",
|
|
62
|
+
"light": "lightGreen"
|
|
63
|
+
},
|
|
64
|
+
"info": {
|
|
65
|
+
"dark": "darkCyan",
|
|
66
|
+
"light": "lightCyan"
|
|
67
|
+
},
|
|
68
|
+
"text": {
|
|
69
|
+
"dark": "darkStep12",
|
|
70
|
+
"light": "lightStep12"
|
|
71
|
+
},
|
|
72
|
+
"textMuted": {
|
|
73
|
+
"dark": "darkStep11",
|
|
74
|
+
"light": "lightStep11"
|
|
75
|
+
},
|
|
76
|
+
"background": {
|
|
77
|
+
"dark": "darkStep1",
|
|
78
|
+
"light": "lightStep1"
|
|
79
|
+
},
|
|
80
|
+
"backgroundPanel": {
|
|
81
|
+
"dark": "darkStep2",
|
|
82
|
+
"light": "lightStep2"
|
|
83
|
+
},
|
|
84
|
+
"backgroundElement": {
|
|
85
|
+
"dark": "darkStep3",
|
|
86
|
+
"light": "lightStep3"
|
|
87
|
+
},
|
|
88
|
+
"border": {
|
|
89
|
+
"dark": "darkStep7",
|
|
90
|
+
"light": "lightStep7"
|
|
91
|
+
},
|
|
92
|
+
"borderActive": {
|
|
93
|
+
"dark": "darkStep8",
|
|
94
|
+
"light": "lightStep8"
|
|
95
|
+
},
|
|
96
|
+
"borderSubtle": {
|
|
97
|
+
"dark": "darkStep6",
|
|
98
|
+
"light": "lightStep6"
|
|
99
|
+
},
|
|
100
|
+
"diffAdded": {
|
|
101
|
+
"dark": "#4fd6be",
|
|
102
|
+
"light": "#1e725c"
|
|
103
|
+
},
|
|
104
|
+
"diffRemoved": {
|
|
105
|
+
"dark": "#c53b53",
|
|
106
|
+
"light": "#c53b53"
|
|
107
|
+
},
|
|
108
|
+
"diffContext": {
|
|
109
|
+
"dark": "#828bb8",
|
|
110
|
+
"light": "#7086b5"
|
|
111
|
+
},
|
|
112
|
+
"diffHunkHeader": {
|
|
113
|
+
"dark": "#828bb8",
|
|
114
|
+
"light": "#7086b5"
|
|
115
|
+
},
|
|
116
|
+
"diffHighlightAdded": {
|
|
117
|
+
"dark": "#b8db87",
|
|
118
|
+
"light": "#4db380"
|
|
119
|
+
},
|
|
120
|
+
"diffHighlightRemoved": {
|
|
121
|
+
"dark": "#e26a75",
|
|
122
|
+
"light": "#f52a65"
|
|
123
|
+
},
|
|
124
|
+
"diffAddedBg": {
|
|
125
|
+
"dark": "#20303b",
|
|
126
|
+
"light": "#d5e5d5"
|
|
127
|
+
},
|
|
128
|
+
"diffRemovedBg": {
|
|
129
|
+
"dark": "#37222c",
|
|
130
|
+
"light": "#f7d8db"
|
|
131
|
+
},
|
|
132
|
+
"diffContextBg": {
|
|
133
|
+
"dark": "darkStep2",
|
|
134
|
+
"light": "lightStep2"
|
|
135
|
+
},
|
|
136
|
+
"diffLineNumber": {
|
|
137
|
+
"dark": "darkStep3",
|
|
138
|
+
"light": "lightStep3"
|
|
139
|
+
},
|
|
140
|
+
"diffAddedLineNumberBg": {
|
|
141
|
+
"dark": "#1b2b34",
|
|
142
|
+
"light": "#c5d5c5"
|
|
143
|
+
},
|
|
144
|
+
"diffRemovedLineNumberBg": {
|
|
145
|
+
"dark": "#2d1f26",
|
|
146
|
+
"light": "#e7c8cb"
|
|
147
|
+
},
|
|
148
|
+
"markdownText": {
|
|
149
|
+
"dark": "darkStep12",
|
|
150
|
+
"light": "lightStep12"
|
|
151
|
+
},
|
|
152
|
+
"markdownHeading": {
|
|
153
|
+
"dark": "#d699b6",
|
|
154
|
+
"light": "#df69ba"
|
|
155
|
+
},
|
|
156
|
+
"markdownLink": {
|
|
157
|
+
"dark": "darkStep9",
|
|
158
|
+
"light": "lightStep9"
|
|
159
|
+
},
|
|
160
|
+
"markdownLinkText": {
|
|
161
|
+
"dark": "darkCyan",
|
|
162
|
+
"light": "lightCyan"
|
|
163
|
+
},
|
|
164
|
+
"markdownCode": {
|
|
165
|
+
"dark": "darkGreen",
|
|
166
|
+
"light": "lightGreen"
|
|
167
|
+
},
|
|
168
|
+
"markdownBlockQuote": {
|
|
169
|
+
"dark": "darkYellow",
|
|
170
|
+
"light": "lightYellow"
|
|
171
|
+
},
|
|
172
|
+
"markdownEmph": {
|
|
173
|
+
"dark": "darkYellow",
|
|
174
|
+
"light": "lightYellow"
|
|
175
|
+
},
|
|
176
|
+
"markdownStrong": {
|
|
177
|
+
"dark": "darkOrange",
|
|
178
|
+
"light": "lightOrange"
|
|
179
|
+
},
|
|
180
|
+
"markdownHorizontalRule": {
|
|
181
|
+
"dark": "darkStep11",
|
|
182
|
+
"light": "lightStep11"
|
|
183
|
+
},
|
|
184
|
+
"markdownListItem": {
|
|
185
|
+
"dark": "darkStep9",
|
|
186
|
+
"light": "lightStep9"
|
|
187
|
+
},
|
|
188
|
+
"markdownListEnumeration": {
|
|
189
|
+
"dark": "darkCyan",
|
|
190
|
+
"light": "lightCyan"
|
|
191
|
+
},
|
|
192
|
+
"markdownImage": {
|
|
193
|
+
"dark": "darkStep9",
|
|
194
|
+
"light": "lightStep9"
|
|
195
|
+
},
|
|
196
|
+
"markdownImageText": {
|
|
197
|
+
"dark": "darkCyan",
|
|
198
|
+
"light": "lightCyan"
|
|
199
|
+
},
|
|
200
|
+
"markdownCodeBlock": {
|
|
201
|
+
"dark": "darkStep12",
|
|
202
|
+
"light": "lightStep12"
|
|
203
|
+
},
|
|
204
|
+
"syntaxComment": {
|
|
205
|
+
"dark": "darkStep11",
|
|
206
|
+
"light": "lightStep11"
|
|
207
|
+
},
|
|
208
|
+
"syntaxKeyword": {
|
|
209
|
+
"dark": "#d699b6",
|
|
210
|
+
"light": "#df69ba"
|
|
211
|
+
},
|
|
212
|
+
"syntaxFunction": {
|
|
213
|
+
"dark": "darkStep9",
|
|
214
|
+
"light": "lightStep9"
|
|
215
|
+
},
|
|
216
|
+
"syntaxVariable": {
|
|
217
|
+
"dark": "darkRed",
|
|
218
|
+
"light": "lightRed"
|
|
219
|
+
},
|
|
220
|
+
"syntaxString": {
|
|
221
|
+
"dark": "darkGreen",
|
|
222
|
+
"light": "lightGreen"
|
|
223
|
+
},
|
|
224
|
+
"syntaxNumber": {
|
|
225
|
+
"dark": "darkOrange",
|
|
226
|
+
"light": "lightOrange"
|
|
227
|
+
},
|
|
228
|
+
"syntaxType": {
|
|
229
|
+
"dark": "darkYellow",
|
|
230
|
+
"light": "lightYellow"
|
|
231
|
+
},
|
|
232
|
+
"syntaxOperator": {
|
|
233
|
+
"dark": "darkCyan",
|
|
234
|
+
"light": "lightCyan"
|
|
235
|
+
},
|
|
236
|
+
"syntaxPunctuation": {
|
|
237
|
+
"dark": "darkStep12",
|
|
238
|
+
"light": "lightStep12"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|