@knpkv/codecommit 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.
Files changed (233) hide show
  1. package/README.md +216 -0
  2. package/dist/package.json +50 -0
  3. package/dist/src/bin.d.ts +3 -0
  4. package/dist/src/bin.d.ts.map +1 -0
  5. package/dist/src/bin.js +204 -0
  6. package/dist/src/bin.js.map +1 -0
  7. package/dist/src/main.d.ts +2 -0
  8. package/dist/src/main.d.ts.map +1 -0
  9. package/dist/src/main.js +25 -0
  10. package/dist/src/main.js.map +1 -0
  11. package/dist/src/tui/App.d.ts +6 -0
  12. package/dist/src/tui/App.d.ts.map +1 -0
  13. package/dist/src/tui/App.js +40 -0
  14. package/dist/src/tui/App.js.map +1 -0
  15. package/dist/src/tui/Constants.d.ts +11 -0
  16. package/dist/src/tui/Constants.d.ts.map +1 -0
  17. package/dist/src/tui/Constants.js +40 -0
  18. package/dist/src/tui/Constants.js.map +1 -0
  19. package/dist/src/tui/ListBuilder.d.ts +32 -0
  20. package/dist/src/tui/ListBuilder.d.ts.map +1 -0
  21. package/dist/src/tui/ListBuilder.js +145 -0
  22. package/dist/src/tui/ListBuilder.js.map +1 -0
  23. package/dist/src/tui/atoms/actions.d.ts +39 -0
  24. package/dist/src/tui/atoms/actions.d.ts.map +1 -0
  25. package/dist/src/tui/atoms/actions.js +149 -0
  26. package/dist/src/tui/atoms/actions.js.map +1 -0
  27. package/dist/src/tui/atoms/app.d.ts +42 -0
  28. package/dist/src/tui/atoms/app.d.ts.map +1 -0
  29. package/dist/src/tui/atoms/app.js +69 -0
  30. package/dist/src/tui/atoms/app.js.map +1 -0
  31. package/dist/src/tui/atoms/index.d.ts +6 -0
  32. package/dist/src/tui/atoms/index.d.ts.map +1 -0
  33. package/dist/src/tui/atoms/index.js +7 -0
  34. package/dist/src/tui/atoms/index.js.map +1 -0
  35. package/dist/src/tui/atoms/runtime.d.ts +9 -0
  36. package/dist/src/tui/atoms/runtime.d.ts.map +1 -0
  37. package/dist/src/tui/atoms/runtime.js +22 -0
  38. package/dist/src/tui/atoms/runtime.js.map +1 -0
  39. package/dist/src/tui/atoms/ui.d.ts +103 -0
  40. package/dist/src/tui/atoms/ui.d.ts.map +1 -0
  41. package/dist/src/tui/atoms/ui.js +97 -0
  42. package/dist/src/tui/atoms/ui.js.map +1 -0
  43. package/dist/src/tui/components/Badge.d.ts +13 -0
  44. package/dist/src/tui/components/Badge.d.ts.map +1 -0
  45. package/dist/src/tui/components/Badge.js +48 -0
  46. package/dist/src/tui/components/Badge.js.map +1 -0
  47. package/dist/src/tui/components/DetailsView.d.ts +6 -0
  48. package/dist/src/tui/components/DetailsView.d.ts.map +1 -0
  49. package/dist/src/tui/components/DetailsView.js +81 -0
  50. package/dist/src/tui/components/DetailsView.js.map +1 -0
  51. package/dist/src/tui/components/ErrorBoundary.d.ts +20 -0
  52. package/dist/src/tui/components/ErrorBoundary.d.ts.map +1 -0
  53. package/dist/src/tui/components/ErrorBoundary.js +33 -0
  54. package/dist/src/tui/components/ErrorBoundary.js.map +1 -0
  55. package/dist/src/tui/components/Footer.d.ts +6 -0
  56. package/dist/src/tui/components/Footer.d.ts.map +1 -0
  57. package/dist/src/tui/components/Footer.js +29 -0
  58. package/dist/src/tui/components/Footer.js.map +1 -0
  59. package/dist/src/tui/components/Header.d.ts +6 -0
  60. package/dist/src/tui/components/Header.d.ts.map +1 -0
  61. package/dist/src/tui/components/Header.js +58 -0
  62. package/dist/src/tui/components/Header.js.map +1 -0
  63. package/dist/src/tui/components/ListItemRow.d.ts +13 -0
  64. package/dist/src/tui/components/ListItemRow.d.ts.map +1 -0
  65. package/dist/src/tui/components/ListItemRow.js +52 -0
  66. package/dist/src/tui/components/ListItemRow.js.map +1 -0
  67. package/dist/src/tui/components/MainList.d.ts +11 -0
  68. package/dist/src/tui/components/MainList.d.ts.map +1 -0
  69. package/dist/src/tui/components/MainList.js +124 -0
  70. package/dist/src/tui/components/MainList.js.map +1 -0
  71. package/dist/src/tui/components/NotificationsTable.d.ts +12 -0
  72. package/dist/src/tui/components/NotificationsTable.d.ts.map +1 -0
  73. package/dist/src/tui/components/NotificationsTable.js +72 -0
  74. package/dist/src/tui/components/NotificationsTable.js.map +1 -0
  75. package/dist/src/tui/components/QuickFilters.d.ts +6 -0
  76. package/dist/src/tui/components/QuickFilters.d.ts.map +1 -0
  77. package/dist/src/tui/components/QuickFilters.js +74 -0
  78. package/dist/src/tui/components/QuickFilters.js.map +1 -0
  79. package/dist/src/tui/components/SettingsTable.d.ts +12 -0
  80. package/dist/src/tui/components/SettingsTable.d.ts.map +1 -0
  81. package/dist/src/tui/components/SettingsTable.js +62 -0
  82. package/dist/src/tui/components/SettingsTable.js.map +1 -0
  83. package/dist/src/tui/components/Spinner.d.ts +11 -0
  84. package/dist/src/tui/components/Spinner.d.ts.map +1 -0
  85. package/dist/src/tui/components/Spinner.js +24 -0
  86. package/dist/src/tui/components/Spinner.js.map +1 -0
  87. package/dist/src/tui/components/StatusRow.d.ts +11 -0
  88. package/dist/src/tui/components/StatusRow.d.ts.map +1 -0
  89. package/dist/src/tui/components/StatusRow.js +11 -0
  90. package/dist/src/tui/components/StatusRow.js.map +1 -0
  91. package/dist/src/tui/components/Table.d.ts +20 -0
  92. package/dist/src/tui/components/Table.d.ts.map +1 -0
  93. package/dist/src/tui/components/Table.js +38 -0
  94. package/dist/src/tui/components/Table.js.map +1 -0
  95. package/dist/src/tui/components/index.d.ts +14 -0
  96. package/dist/src/tui/components/index.d.ts.map +1 -0
  97. package/dist/src/tui/components/index.js +14 -0
  98. package/dist/src/tui/components/index.js.map +1 -0
  99. package/dist/src/tui/components/mainlist-utils.d.ts +22 -0
  100. package/dist/src/tui/components/mainlist-utils.d.ts.map +1 -0
  101. package/dist/src/tui/components/mainlist-utils.js +71 -0
  102. package/dist/src/tui/components/mainlist-utils.js.map +1 -0
  103. package/dist/src/tui/components/table-utils.d.ts +25 -0
  104. package/dist/src/tui/components/table-utils.d.ts.map +1 -0
  105. package/dist/src/tui/components/table-utils.js +25 -0
  106. package/dist/src/tui/components/table-utils.js.map +1 -0
  107. package/dist/src/tui/context/dialog.d.ts +32 -0
  108. package/dist/src/tui/context/dialog.d.ts.map +1 -0
  109. package/dist/src/tui/context/dialog.js +41 -0
  110. package/dist/src/tui/context/dialog.js.map +1 -0
  111. package/dist/src/tui/context/theme.d.ts +25 -0
  112. package/dist/src/tui/context/theme.d.ts.map +1 -0
  113. package/dist/src/tui/context/theme.js +31 -0
  114. package/dist/src/tui/context/theme.js.map +1 -0
  115. package/dist/src/tui/hooks/index.d.ts +2 -0
  116. package/dist/src/tui/hooks/index.d.ts.map +1 -0
  117. package/dist/src/tui/hooks/index.js +2 -0
  118. package/dist/src/tui/hooks/index.js.map +1 -0
  119. package/dist/src/tui/hooks/useKeyboardNav.d.ts +16 -0
  120. package/dist/src/tui/hooks/useKeyboardNav.d.ts.map +1 -0
  121. package/dist/src/tui/hooks/useKeyboardNav.js +429 -0
  122. package/dist/src/tui/hooks/useKeyboardNav.js.map +1 -0
  123. package/dist/src/tui/hooks/useListNavigation.d.ts +3 -0
  124. package/dist/src/tui/hooks/useListNavigation.d.ts.map +1 -0
  125. package/dist/src/tui/hooks/useListNavigation.js +123 -0
  126. package/dist/src/tui/hooks/useListNavigation.js.map +1 -0
  127. package/dist/src/tui/mocks.d.ts +6 -0
  128. package/dist/src/tui/mocks.d.ts.map +1 -0
  129. package/dist/src/tui/mocks.js +36 -0
  130. package/dist/src/tui/mocks.js.map +1 -0
  131. package/dist/src/tui/theme/Resolver.d.ts +6 -0
  132. package/dist/src/tui/theme/Resolver.d.ts.map +1 -0
  133. package/dist/src/tui/theme/Resolver.js +73 -0
  134. package/dist/src/tui/theme/Resolver.js.map +1 -0
  135. package/dist/src/tui/theme/ThemeRegistry.d.ts +3 -0
  136. package/dist/src/tui/theme/ThemeRegistry.d.ts.map +1 -0
  137. package/dist/src/tui/theme/ThemeRegistry.js +70 -0
  138. package/dist/src/tui/theme/ThemeRegistry.js.map +1 -0
  139. package/dist/src/tui/theme/data/aura.json +69 -0
  140. package/dist/src/tui/theme/data/ayu.json +80 -0
  141. package/dist/src/tui/theme/data/carbonfox.json +248 -0
  142. package/dist/src/tui/theme/data/catppuccin-frappe.json +233 -0
  143. package/dist/src/tui/theme/data/catppuccin-macchiato.json +233 -0
  144. package/dist/src/tui/theme/data/catppuccin.json +112 -0
  145. package/dist/src/tui/theme/data/cobalt2.json +228 -0
  146. package/dist/src/tui/theme/data/cursor.json +249 -0
  147. package/dist/src/tui/theme/data/dracula.json +219 -0
  148. package/dist/src/tui/theme/data/everforest.json +241 -0
  149. package/dist/src/tui/theme/data/flexoki.json +237 -0
  150. package/dist/src/tui/theme/data/github.json +233 -0
  151. package/dist/src/tui/theme/data/gruvbox.json +242 -0
  152. package/dist/src/tui/theme/data/kanagawa.json +77 -0
  153. package/dist/src/tui/theme/data/lucent-orng.json +237 -0
  154. package/dist/src/tui/theme/data/material.json +235 -0
  155. package/dist/src/tui/theme/data/matrix.json +77 -0
  156. package/dist/src/tui/theme/data/mercury.json +245 -0
  157. package/dist/src/tui/theme/data/monokai.json +221 -0
  158. package/dist/src/tui/theme/data/nightowl.json +221 -0
  159. package/dist/src/tui/theme/data/nord.json +223 -0
  160. package/dist/src/tui/theme/data/one-dark.json +84 -0
  161. package/dist/src/tui/theme/data/opencode.json +245 -0
  162. package/dist/src/tui/theme/data/orng.json +249 -0
  163. package/dist/src/tui/theme/data/osaka-jade.json +93 -0
  164. package/dist/src/tui/theme/data/palenight.json +222 -0
  165. package/dist/src/tui/theme/data/rosepine.json +234 -0
  166. package/dist/src/tui/theme/data/solarized.json +223 -0
  167. package/dist/src/tui/theme/data/synthwave84.json +226 -0
  168. package/dist/src/tui/theme/data/tokyonight.json +243 -0
  169. package/dist/src/tui/theme/data/vercel.json +245 -0
  170. package/dist/src/tui/theme/data/vesper.json +218 -0
  171. package/dist/src/tui/theme/data/zenburn.json +223 -0
  172. package/dist/src/tui/theme/default.d.ts +40 -0
  173. package/dist/src/tui/theme/default.d.ts.map +1 -0
  174. package/dist/src/tui/theme/default.js +35 -0
  175. package/dist/src/tui/theme/default.js.map +1 -0
  176. package/dist/src/tui/theme/resolver-utils.d.ts +28 -0
  177. package/dist/src/tui/theme/resolver-utils.d.ts.map +1 -0
  178. package/dist/src/tui/theme/resolver-utils.js +19 -0
  179. package/dist/src/tui/theme/resolver-utils.js.map +1 -0
  180. package/dist/src/tui/theme/themes.d.ts +3 -0
  181. package/dist/src/tui/theme/themes.d.ts.map +1 -0
  182. package/dist/src/tui/theme/themes.js +13 -0
  183. package/dist/src/tui/theme/themes.js.map +1 -0
  184. package/dist/src/tui/ui/Dialog.d.ts +19 -0
  185. package/dist/src/tui/ui/Dialog.d.ts.map +1 -0
  186. package/dist/src/tui/ui/Dialog.js +39 -0
  187. package/dist/src/tui/ui/Dialog.js.map +1 -0
  188. package/dist/src/tui/ui/DialogCommand.d.ts +2 -0
  189. package/dist/src/tui/ui/DialogCommand.d.ts.map +1 -0
  190. package/dist/src/tui/ui/DialogCommand.js +182 -0
  191. package/dist/src/tui/ui/DialogCommand.js.map +1 -0
  192. package/dist/src/tui/ui/DialogCreatePR.d.ts +2 -0
  193. package/dist/src/tui/ui/DialogCreatePR.d.ts.map +1 -0
  194. package/dist/src/tui/ui/DialogCreatePR.js +397 -0
  195. package/dist/src/tui/ui/DialogCreatePR.js.map +1 -0
  196. package/dist/src/tui/ui/DialogHelp.d.ts +6 -0
  197. package/dist/src/tui/ui/DialogHelp.d.ts.map +1 -0
  198. package/dist/src/tui/ui/DialogHelp.js +93 -0
  199. package/dist/src/tui/ui/DialogHelp.js.map +1 -0
  200. package/dist/src/tui/ui/DialogTheme.d.ts +2 -0
  201. package/dist/src/tui/ui/DialogTheme.d.ts.map +1 -0
  202. package/dist/src/tui/ui/DialogTheme.js +124 -0
  203. package/dist/src/tui/ui/DialogTheme.js.map +1 -0
  204. package/dist/src/tui/ui/index.d.ts +6 -0
  205. package/dist/src/tui/ui/index.d.ts.map +1 -0
  206. package/dist/src/tui/ui/index.js +6 -0
  207. package/dist/src/tui/ui/index.js.map +1 -0
  208. package/dist/src/tui/utils/prTemplates.d.ts +19 -0
  209. package/dist/src/tui/utils/prTemplates.d.ts.map +1 -0
  210. package/dist/src/tui/utils/prTemplates.js +46 -0
  211. package/dist/src/tui/utils/prTemplates.js.map +1 -0
  212. package/dist/test/ConfigService.test.d.ts +2 -0
  213. package/dist/test/ConfigService.test.d.ts.map +1 -0
  214. package/dist/test/ConfigService.test.js +40 -0
  215. package/dist/test/ConfigService.test.js.map +1 -0
  216. package/dist/test/ListBuilder.test.d.ts +2 -0
  217. package/dist/test/ListBuilder.test.d.ts.map +1 -0
  218. package/dist/test/ListBuilder.test.js +246 -0
  219. package/dist/test/ListBuilder.test.js.map +1 -0
  220. package/dist/test/MainList.test.d.ts +2 -0
  221. package/dist/test/MainList.test.d.ts.map +1 -0
  222. package/dist/test/MainList.test.js +228 -0
  223. package/dist/test/MainList.test.js.map +1 -0
  224. package/dist/test/Resolver.test.d.ts +2 -0
  225. package/dist/test/Resolver.test.d.ts.map +1 -0
  226. package/dist/test/Resolver.test.js +81 -0
  227. package/dist/test/Resolver.test.js.map +1 -0
  228. package/dist/test/Table.test.d.ts +2 -0
  229. package/dist/test/Table.test.d.ts.map +1 -0
  230. package/dist/test/Table.test.js +100 -0
  231. package/dist/test/Table.test.js.map +1 -0
  232. package/dist/tsconfig.tsbuildinfo +1 -0
  233. package/package.json +50 -0
@@ -0,0 +1,228 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "background": "#193549",
5
+ "backgroundAlt": "#122738",
6
+ "backgroundPanel": "#1f4662",
7
+ "foreground": "#ffffff",
8
+ "foregroundMuted": "#adb7c9",
9
+ "yellow": "#ffc600",
10
+ "yellowBright": "#ffe14c",
11
+ "orange": "#ff9d00",
12
+ "orangeBright": "#ffb454",
13
+ "mint": "#2affdf",
14
+ "mintBright": "#7efff5",
15
+ "blue": "#0088ff",
16
+ "blueBright": "#5cb7ff",
17
+ "pink": "#ff628c",
18
+ "pinkBright": "#ff86a5",
19
+ "green": "#9eff80",
20
+ "greenBright": "#b9ff9f",
21
+ "purple": "#9a5feb",
22
+ "purpleBright": "#b88cfd",
23
+ "red": "#ff0088",
24
+ "redBright": "#ff5fb3"
25
+ },
26
+ "theme": {
27
+ "primary": {
28
+ "dark": "blue",
29
+ "light": "#0066cc"
30
+ },
31
+ "secondary": {
32
+ "dark": "purple",
33
+ "light": "#7c4dff"
34
+ },
35
+ "accent": {
36
+ "dark": "mint",
37
+ "light": "#00acc1"
38
+ },
39
+ "error": {
40
+ "dark": "red",
41
+ "light": "#e91e63"
42
+ },
43
+ "warning": {
44
+ "dark": "yellow",
45
+ "light": "#ff9800"
46
+ },
47
+ "success": {
48
+ "dark": "green",
49
+ "light": "#4caf50"
50
+ },
51
+ "info": {
52
+ "dark": "orange",
53
+ "light": "#ff5722"
54
+ },
55
+ "text": {
56
+ "dark": "foreground",
57
+ "light": "#193549"
58
+ },
59
+ "textMuted": {
60
+ "dark": "foregroundMuted",
61
+ "light": "#5c6b7d"
62
+ },
63
+ "background": {
64
+ "dark": "#193549",
65
+ "light": "#ffffff"
66
+ },
67
+ "backgroundPanel": {
68
+ "dark": "#122738",
69
+ "light": "#f5f7fa"
70
+ },
71
+ "backgroundElement": {
72
+ "dark": "#1f4662",
73
+ "light": "#e8ecf1"
74
+ },
75
+ "border": {
76
+ "dark": "#1f4662",
77
+ "light": "#d3dae3"
78
+ },
79
+ "borderActive": {
80
+ "dark": "blue",
81
+ "light": "#0066cc"
82
+ },
83
+ "borderSubtle": {
84
+ "dark": "#0e1e2e",
85
+ "light": "#e8ecf1"
86
+ },
87
+ "diffAdded": {
88
+ "dark": "green",
89
+ "light": "#4caf50"
90
+ },
91
+ "diffRemoved": {
92
+ "dark": "red",
93
+ "light": "#e91e63"
94
+ },
95
+ "diffContext": {
96
+ "dark": "foregroundMuted",
97
+ "light": "#5c6b7d"
98
+ },
99
+ "diffHunkHeader": {
100
+ "dark": "mint",
101
+ "light": "#00acc1"
102
+ },
103
+ "diffHighlightAdded": {
104
+ "dark": "greenBright",
105
+ "light": "#4caf50"
106
+ },
107
+ "diffHighlightRemoved": {
108
+ "dark": "redBright",
109
+ "light": "#e91e63"
110
+ },
111
+ "diffAddedBg": {
112
+ "dark": "#1a3a2a",
113
+ "light": "#e8f5e9"
114
+ },
115
+ "diffRemovedBg": {
116
+ "dark": "#3a1a2a",
117
+ "light": "#ffebee"
118
+ },
119
+ "diffContextBg": {
120
+ "dark": "#122738",
121
+ "light": "#f5f7fa"
122
+ },
123
+ "diffLineNumber": {
124
+ "dark": "#2d5a7b",
125
+ "light": "#b0bec5"
126
+ },
127
+ "diffAddedLineNumberBg": {
128
+ "dark": "#1a3a2a",
129
+ "light": "#e8f5e9"
130
+ },
131
+ "diffRemovedLineNumberBg": {
132
+ "dark": "#3a1a2a",
133
+ "light": "#ffebee"
134
+ },
135
+ "markdownText": {
136
+ "dark": "foreground",
137
+ "light": "#193549"
138
+ },
139
+ "markdownHeading": {
140
+ "dark": "yellow",
141
+ "light": "#ff9800"
142
+ },
143
+ "markdownLink": {
144
+ "dark": "blue",
145
+ "light": "#0066cc"
146
+ },
147
+ "markdownLinkText": {
148
+ "dark": "mint",
149
+ "light": "#00acc1"
150
+ },
151
+ "markdownCode": {
152
+ "dark": "green",
153
+ "light": "#4caf50"
154
+ },
155
+ "markdownBlockQuote": {
156
+ "dark": "foregroundMuted",
157
+ "light": "#5c6b7d"
158
+ },
159
+ "markdownEmph": {
160
+ "dark": "orange",
161
+ "light": "#ff5722"
162
+ },
163
+ "markdownStrong": {
164
+ "dark": "pink",
165
+ "light": "#e91e63"
166
+ },
167
+ "markdownHorizontalRule": {
168
+ "dark": "#2d5a7b",
169
+ "light": "#d3dae3"
170
+ },
171
+ "markdownListItem": {
172
+ "dark": "blue",
173
+ "light": "#0066cc"
174
+ },
175
+ "markdownListEnumeration": {
176
+ "dark": "mint",
177
+ "light": "#00acc1"
178
+ },
179
+ "markdownImage": {
180
+ "dark": "blue",
181
+ "light": "#0066cc"
182
+ },
183
+ "markdownImageText": {
184
+ "dark": "mint",
185
+ "light": "#00acc1"
186
+ },
187
+ "markdownCodeBlock": {
188
+ "dark": "foreground",
189
+ "light": "#193549"
190
+ },
191
+ "syntaxComment": {
192
+ "dark": "#0088ff",
193
+ "light": "#5c6b7d"
194
+ },
195
+ "syntaxKeyword": {
196
+ "dark": "orange",
197
+ "light": "#ff5722"
198
+ },
199
+ "syntaxFunction": {
200
+ "dark": "yellow",
201
+ "light": "#ff9800"
202
+ },
203
+ "syntaxVariable": {
204
+ "dark": "foreground",
205
+ "light": "#193549"
206
+ },
207
+ "syntaxString": {
208
+ "dark": "green",
209
+ "light": "#4caf50"
210
+ },
211
+ "syntaxNumber": {
212
+ "dark": "pink",
213
+ "light": "#e91e63"
214
+ },
215
+ "syntaxType": {
216
+ "dark": "mint",
217
+ "light": "#00acc1"
218
+ },
219
+ "syntaxOperator": {
220
+ "dark": "orange",
221
+ "light": "#ff5722"
222
+ },
223
+ "syntaxPunctuation": {
224
+ "dark": "foreground",
225
+ "light": "#193549"
226
+ }
227
+ }
228
+ }
@@ -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
+ }