@opencode-ai/ui 0.0.0 → 1.17.12

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 (470) hide show
  1. package/LICENSE +21 -0
  2. package/dist/components/accordion.d.ts +24 -0
  3. package/dist/components/animated-number.d.ts +4 -0
  4. package/dist/components/app-icon.d.ts +6 -0
  5. package/dist/components/app-icons/types.d.ts +2 -0
  6. package/dist/components/avatar.d.ts +9 -0
  7. package/dist/components/button.d.ts +9 -0
  8. package/dist/components/card.d.ts +22 -0
  9. package/dist/components/checkbox.d.ts +8 -0
  10. package/dist/components/collapsible.d.ts +17 -0
  11. package/dist/components/context-menu.d.ts +80 -0
  12. package/dist/components/dialog.d.ts +12 -0
  13. package/dist/components/diff-changes.d.ts +11 -0
  14. package/dist/components/dock-surface.d.ts +7 -0
  15. package/dist/components/dropdown-menu.d.ts +80 -0
  16. package/dist/components/favicon.d.ts +1 -0
  17. package/dist/components/file-icon.d.ts +12 -0
  18. package/dist/components/file-icons/types.d.ts +2 -0
  19. package/dist/components/font.d.ts +1 -0
  20. package/dist/components/hover-card.d.ts +9 -0
  21. package/dist/components/icon-button.d.ts +10 -0
  22. package/dist/components/icon.d.ts +104 -0
  23. package/dist/components/image-preview.d.ts +5 -0
  24. package/dist/components/inline-input.d.ts +5 -0
  25. package/dist/components/keybind.d.ts +6 -0
  26. package/dist/components/list.d.ts +45 -0
  27. package/dist/components/logo.d.ts +8 -0
  28. package/dist/components/motion-spring.d.ts +4 -0
  29. package/dist/components/popover.d.ts +14 -0
  30. package/dist/components/progress-circle.d.ts +7 -0
  31. package/dist/components/progress.d.ts +7 -0
  32. package/dist/components/provider-icon.d.ts +5 -0
  33. package/dist/components/provider-icons/types.d.ts +2 -0
  34. package/dist/components/radio-group.d.ts +16 -0
  35. package/dist/components/resize-handle.d.ts +12 -0
  36. package/dist/components/scroll-view.d.ts +15 -0
  37. package/dist/components/select.d.ts +21 -0
  38. package/dist/components/spinner.d.ts +6 -0
  39. package/dist/components/sticky-accordion-header.d.ts +5 -0
  40. package/dist/components/switch.d.ts +7 -0
  41. package/dist/components/tabs.d.ts +32 -0
  42. package/dist/components/tag.d.ts +5 -0
  43. package/dist/components/text-field.d.ts +13 -0
  44. package/dist/components/text-reveal.d.ts +13 -0
  45. package/dist/components/text-shimmer.d.ts +8 -0
  46. package/dist/components/text-strikethrough.d.ts +11 -0
  47. package/dist/components/toast.d.ts +56 -0
  48. package/dist/components/tooltip.d.ts +17 -0
  49. package/dist/components/typewriter.d.ts +6 -0
  50. package/dist/context/dialog.d.ts +18 -0
  51. package/dist/context/file.d.ts +5 -0
  52. package/dist/context/helper.d.ts +14 -0
  53. package/dist/context/i18n.d.ts +12 -0
  54. package/dist/context/index.d.ts +4 -0
  55. package/dist/context/marked.d.ts +9 -0
  56. package/dist/context/worker-pool.d.ts +9 -0
  57. package/dist/hooks/create-auto-scroll.d.ts +17 -0
  58. package/dist/hooks/index.d.ts +2 -0
  59. package/dist/hooks/use-filtered-list.d.ts +39 -0
  60. package/dist/i18n/ar.d.ts +148 -0
  61. package/dist/i18n/br.d.ts +148 -0
  62. package/dist/i18n/bs.d.ts +148 -0
  63. package/dist/i18n/da.d.ts +148 -0
  64. package/dist/i18n/de.d.ts +148 -0
  65. package/dist/i18n/en.d.ts +1 -0
  66. package/dist/i18n/es.d.ts +148 -0
  67. package/dist/i18n/fr.d.ts +148 -0
  68. package/dist/i18n/ja.d.ts +148 -0
  69. package/dist/i18n/ko.d.ts +148 -0
  70. package/dist/i18n/no.d.ts +4 -0
  71. package/dist/i18n/pl.d.ts +148 -0
  72. package/dist/i18n/ru.d.ts +148 -0
  73. package/dist/i18n/th.d.ts +148 -0
  74. package/dist/i18n/tr.d.ts +148 -0
  75. package/dist/i18n/uk.d.ts +1 -0
  76. package/dist/i18n/zh.d.ts +148 -0
  77. package/dist/i18n/zht.d.ts +148 -0
  78. package/dist/storybook/fixtures.d.ts +19 -0
  79. package/dist/storybook/scaffold.d.ts +16 -0
  80. package/dist/theme/color.d.ts +30 -0
  81. package/dist/theme/context.d.ts +21 -0
  82. package/dist/theme/default-themes.d.ts +39 -0
  83. package/dist/theme/index.d.ts +7 -0
  84. package/dist/theme/loader.d.ts +6 -0
  85. package/dist/theme/resolve.d.ts +7 -0
  86. package/dist/theme/types.d.ts +56 -0
  87. package/dist/theme/v2/avatar.d.ts +5 -0
  88. package/dist/theme/v2/default-primitives.d.ts +3 -0
  89. package/dist/theme/v2/foreground.d.ts +2 -0
  90. package/dist/theme/v2/mapping.d.ts +3 -0
  91. package/dist/theme/v2/resolve.d.ts +9 -0
  92. package/dist/v2/components/accordion-v2.d.ts +26 -0
  93. package/dist/v2/components/avatar-v2.d.ts +11 -0
  94. package/dist/v2/components/badge-v2.d.ts +5 -0
  95. package/dist/v2/components/button-v2.d.ts +10 -0
  96. package/dist/v2/components/checkbox-v2.d.ts +10 -0
  97. package/dist/v2/components/dialog-v2.d.ts +26 -0
  98. package/dist/v2/components/diff-changes-v2.d.ts +11 -0
  99. package/dist/v2/components/divider-v2.d.ts +5 -0
  100. package/dist/v2/components/field-v2.d.ts +28 -0
  101. package/dist/v2/components/icon-button-v2.d.ts +11 -0
  102. package/dist/v2/components/icon.d.ts +105 -0
  103. package/dist/v2/components/inline-input-v2.d.ts +21 -0
  104. package/dist/v2/components/keybind-v2.d.ts +7 -0
  105. package/dist/v2/components/line-comment-v2.d.ts +28 -0
  106. package/dist/v2/components/menu-v2.d.ts +52 -0
  107. package/dist/v2/components/progress-circle-v2.d.ts +8 -0
  108. package/dist/v2/components/project-avatar-v2.d.ts +11 -0
  109. package/dist/v2/components/radio-v2.d.ts +16 -0
  110. package/dist/v2/components/segmented-control-v2.d.ts +21 -0
  111. package/dist/v2/components/select-v2.d.ts +24 -0
  112. package/dist/v2/components/switch-v2.d.ts +7 -0
  113. package/dist/v2/components/tab-state-indicator.d.ts +2 -0
  114. package/dist/v2/components/tabs-v2.d.ts +34 -0
  115. package/dist/v2/components/text-input-v2.d.ts +17 -0
  116. package/dist/v2/components/text-shimmer-v2.d.ts +9 -0
  117. package/dist/v2/components/textarea-v2.d.ts +7 -0
  118. package/dist/v2/components/toast-v2.d.ts +48 -0
  119. package/dist/v2/components/tooltip-v2.d.ts +13 -0
  120. package/dist/v2/components/wordmark-v2.d.ts +2 -0
  121. package/package.json +148 -6
  122. package/src/assets/audio/alert-01.aac +0 -0
  123. package/src/assets/audio/alert-01.mp3 +0 -0
  124. package/src/assets/audio/alert-02.aac +0 -0
  125. package/src/assets/audio/alert-02.mp3 +0 -0
  126. package/src/assets/audio/alert-03.aac +0 -0
  127. package/src/assets/audio/alert-03.mp3 +0 -0
  128. package/src/assets/audio/alert-04.aac +0 -0
  129. package/src/assets/audio/alert-04.mp3 +0 -0
  130. package/src/assets/audio/alert-05.aac +0 -0
  131. package/src/assets/audio/alert-05.mp3 +0 -0
  132. package/src/assets/audio/alert-06.aac +0 -0
  133. package/src/assets/audio/alert-06.mp3 +0 -0
  134. package/src/assets/audio/alert-07.aac +0 -0
  135. package/src/assets/audio/alert-07.mp3 +0 -0
  136. package/src/assets/audio/alert-08.aac +0 -0
  137. package/src/assets/audio/alert-08.mp3 +0 -0
  138. package/src/assets/audio/alert-09.aac +0 -0
  139. package/src/assets/audio/alert-09.mp3 +0 -0
  140. package/src/assets/audio/alert-10.aac +0 -0
  141. package/src/assets/audio/alert-10.mp3 +0 -0
  142. package/src/assets/audio/bip-bop-01.aac +0 -0
  143. package/src/assets/audio/bip-bop-01.mp3 +0 -0
  144. package/src/assets/audio/bip-bop-02.aac +0 -0
  145. package/src/assets/audio/bip-bop-02.mp3 +0 -0
  146. package/src/assets/audio/bip-bop-03.aac +0 -0
  147. package/src/assets/audio/bip-bop-03.mp3 +0 -0
  148. package/src/assets/audio/bip-bop-04.aac +0 -0
  149. package/src/assets/audio/bip-bop-04.mp3 +0 -0
  150. package/src/assets/audio/bip-bop-05.aac +0 -0
  151. package/src/assets/audio/bip-bop-05.mp3 +0 -0
  152. package/src/assets/audio/bip-bop-06.aac +0 -0
  153. package/src/assets/audio/bip-bop-06.mp3 +0 -0
  154. package/src/assets/audio/bip-bop-07.aac +0 -0
  155. package/src/assets/audio/bip-bop-07.mp3 +0 -0
  156. package/src/assets/audio/bip-bop-08.aac +0 -0
  157. package/src/assets/audio/bip-bop-08.mp3 +0 -0
  158. package/src/assets/audio/bip-bop-09.aac +0 -0
  159. package/src/assets/audio/bip-bop-09.mp3 +0 -0
  160. package/src/assets/audio/bip-bop-10.aac +0 -0
  161. package/src/assets/audio/bip-bop-10.mp3 +0 -0
  162. package/src/assets/audio/nope-01.aac +0 -0
  163. package/src/assets/audio/nope-01.mp3 +0 -0
  164. package/src/assets/audio/nope-02.aac +0 -0
  165. package/src/assets/audio/nope-02.mp3 +0 -0
  166. package/src/assets/audio/nope-03.aac +0 -0
  167. package/src/assets/audio/nope-03.mp3 +0 -0
  168. package/src/assets/audio/nope-04.aac +0 -0
  169. package/src/assets/audio/nope-04.mp3 +0 -0
  170. package/src/assets/audio/nope-05.aac +0 -0
  171. package/src/assets/audio/nope-05.mp3 +0 -0
  172. package/src/assets/audio/nope-06.aac +0 -0
  173. package/src/assets/audio/nope-06.mp3 +0 -0
  174. package/src/assets/audio/nope-07.aac +0 -0
  175. package/src/assets/audio/nope-07.mp3 +0 -0
  176. package/src/assets/audio/nope-08.aac +0 -0
  177. package/src/assets/audio/nope-08.mp3 +0 -0
  178. package/src/assets/audio/nope-09.aac +0 -0
  179. package/src/assets/audio/nope-09.mp3 +0 -0
  180. package/src/assets/audio/nope-10.aac +0 -0
  181. package/src/assets/audio/nope-10.mp3 +0 -0
  182. package/src/assets/audio/nope-11.aac +0 -0
  183. package/src/assets/audio/nope-11.mp3 +0 -0
  184. package/src/assets/audio/nope-12.aac +0 -0
  185. package/src/assets/audio/nope-12.mp3 +0 -0
  186. package/src/assets/audio/staplebops-01.aac +0 -0
  187. package/src/assets/audio/staplebops-01.mp3 +0 -0
  188. package/src/assets/audio/staplebops-02.aac +0 -0
  189. package/src/assets/audio/staplebops-02.mp3 +0 -0
  190. package/src/assets/audio/staplebops-03.aac +0 -0
  191. package/src/assets/audio/staplebops-03.mp3 +0 -0
  192. package/src/assets/audio/staplebops-04.aac +0 -0
  193. package/src/assets/audio/staplebops-04.mp3 +0 -0
  194. package/src/assets/audio/staplebops-05.aac +0 -0
  195. package/src/assets/audio/staplebops-05.mp3 +0 -0
  196. package/src/assets/audio/staplebops-06.aac +0 -0
  197. package/src/assets/audio/staplebops-06.mp3 +0 -0
  198. package/src/assets/audio/staplebops-07.aac +0 -0
  199. package/src/assets/audio/staplebops-07.mp3 +0 -0
  200. package/src/assets/audio/yup-01.aac +0 -0
  201. package/src/assets/audio/yup-01.mp3 +0 -0
  202. package/src/assets/audio/yup-02.aac +0 -0
  203. package/src/assets/audio/yup-02.mp3 +0 -0
  204. package/src/assets/audio/yup-03.aac +0 -0
  205. package/src/assets/audio/yup-03.mp3 +0 -0
  206. package/src/assets/audio/yup-04.aac +0 -0
  207. package/src/assets/audio/yup-04.mp3 +0 -0
  208. package/src/assets/audio/yup-05.aac +0 -0
  209. package/src/assets/audio/yup-05.mp3 +0 -0
  210. package/src/assets/audio/yup-06.aac +0 -0
  211. package/src/assets/audio/yup-06.mp3 +0 -0
  212. package/src/assets/fonts/Inter.ttf +0 -0
  213. package/src/assets/fonts/JetBrainsMonoNerdFontMono-Regular.woff2 +0 -0
  214. package/src/assets/icons/app/android-studio.svg +369 -0
  215. package/src/assets/icons/app/antigravity.svg +97 -0
  216. package/src/assets/icons/app/cursor.svg +16 -0
  217. package/src/assets/icons/app/file-explorer.svg +20 -0
  218. package/src/assets/icons/app/finder.png +0 -0
  219. package/src/assets/icons/app/ghostty.svg +13 -0
  220. package/src/assets/icons/app/iterm2.svg +13 -0
  221. package/src/assets/icons/app/powershell.svg +14 -0
  222. package/src/assets/icons/app/sublimetext.svg +17 -0
  223. package/src/assets/icons/app/terminal.png +0 -0
  224. package/src/assets/icons/app/textmate.png +0 -0
  225. package/src/assets/icons/app/vscode.svg +39 -0
  226. package/src/assets/icons/app/warp.png +0 -0
  227. package/src/assets/icons/app/xcode.png +0 -0
  228. package/src/assets/icons/app/zed-dark.svg +15 -0
  229. package/src/assets/icons/app/zed.svg +15 -0
  230. package/src/components/accordion.css +147 -0
  231. package/src/components/accordion.tsx +92 -0
  232. package/src/components/animated-number.css +75 -0
  233. package/src/components/animated-number.tsx +109 -0
  234. package/src/components/app-icon.css +5 -0
  235. package/src/components/app-icon.tsx +85 -0
  236. package/src/components/app-icons/sprite.svg +114 -0
  237. package/src/components/app-icons/types.ts +21 -0
  238. package/src/components/avatar.css +49 -0
  239. package/src/components/avatar.tsx +55 -0
  240. package/src/components/button.css +194 -0
  241. package/src/components/button.tsx +33 -0
  242. package/src/components/card.css +115 -0
  243. package/src/components/card.tsx +123 -0
  244. package/src/components/checkbox.css +131 -0
  245. package/src/components/checkbox.tsx +43 -0
  246. package/src/components/collapsible.css +148 -0
  247. package/src/components/collapsible.tsx +48 -0
  248. package/src/components/context-menu.css +134 -0
  249. package/src/components/context-menu.tsx +308 -0
  250. package/src/components/dialog.css +181 -0
  251. package/src/components/dialog.tsx +72 -0
  252. package/src/components/diff-changes.css +42 -0
  253. package/src/components/diff-changes.tsx +115 -0
  254. package/src/components/dock-surface.css +23 -0
  255. package/src/components/dock-surface.tsx +54 -0
  256. package/src/components/dropdown-menu.css +135 -0
  257. package/src/components/dropdown-menu.tsx +308 -0
  258. package/src/components/favicon.tsx +13 -0
  259. package/src/components/file-icon.css +26 -0
  260. package/src/components/file-icon.tsx +588 -0
  261. package/src/components/file-icons/sprite.svg +11707 -0
  262. package/src/components/file-icons/types.ts +1095 -0
  263. package/src/components/font.tsx +1 -0
  264. package/src/components/hover-card.css +61 -0
  265. package/src/components/hover-card.tsx +32 -0
  266. package/src/components/icon-button.css +181 -0
  267. package/src/components/icon-button.tsx +29 -0
  268. package/src/components/icon.css +34 -0
  269. package/src/components/icon.tsx +169 -0
  270. package/src/components/image-preview.css +63 -0
  271. package/src/components/image-preview.tsx +32 -0
  272. package/src/components/inline-input.css +17 -0
  273. package/src/components/inline-input.tsx +22 -0
  274. package/src/components/keybind.css +18 -0
  275. package/src/components/keybind.tsx +20 -0
  276. package/src/components/list.css +331 -0
  277. package/src/components/list.tsx +394 -0
  278. package/src/components/logo.css +4 -0
  279. package/src/components/logo.tsx +62 -0
  280. package/src/components/motion-spring.tsx +58 -0
  281. package/src/components/popover.css +98 -0
  282. package/src/components/popover.tsx +153 -0
  283. package/src/components/progress-circle.css +16 -0
  284. package/src/components/progress-circle.tsx +64 -0
  285. package/src/components/progress.css +63 -0
  286. package/src/components/progress.tsx +39 -0
  287. package/src/components/provider-icon.css +5 -0
  288. package/src/components/provider-icon.tsx +25 -0
  289. package/src/components/provider-icons/sprite.svg +1135 -0
  290. package/src/components/provider-icons/types.ts +105 -0
  291. package/src/components/radio-group.css +187 -0
  292. package/src/components/radio-group.tsx +83 -0
  293. package/src/components/resize-handle.css +58 -0
  294. package/src/components/resize-handle.tsx +82 -0
  295. package/src/components/scroll-view.css +66 -0
  296. package/src/components/scroll-view.tsx +250 -0
  297. package/src/components/select.css +199 -0
  298. package/src/components/select.tsx +174 -0
  299. package/src/components/spinner.css +6 -0
  300. package/src/components/spinner.tsx +52 -0
  301. package/src/components/sticky-accordion-header.css +6 -0
  302. package/src/components/sticky-accordion-header.tsx +18 -0
  303. package/src/components/switch.css +132 -0
  304. package/src/components/switch.tsx +29 -0
  305. package/src/components/tabs.css +635 -0
  306. package/src/components/tabs.tsx +125 -0
  307. package/src/components/tag.css +37 -0
  308. package/src/components/tag.tsx +22 -0
  309. package/src/components/text-field.css +134 -0
  310. package/src/components/text-field.tsx +128 -0
  311. package/src/components/text-reveal.css +150 -0
  312. package/src/components/text-reveal.tsx +143 -0
  313. package/src/components/text-shimmer.css +119 -0
  314. package/src/components/text-shimmer.tsx +62 -0
  315. package/src/components/text-strikethrough.css +27 -0
  316. package/src/components/text-strikethrough.tsx +84 -0
  317. package/src/components/toast.css +236 -0
  318. package/src/components/toast.tsx +185 -0
  319. package/src/components/tooltip.css +74 -0
  320. package/src/components/tooltip.tsx +163 -0
  321. package/src/components/typewriter.css +14 -0
  322. package/src/components/typewriter.tsx +55 -0
  323. package/src/context/dialog.tsx +197 -0
  324. package/src/context/file.tsx +10 -0
  325. package/src/context/helper.tsx +38 -0
  326. package/src/context/i18n.tsx +38 -0
  327. package/src/context/index.ts +4 -0
  328. package/src/context/marked.tsx +522 -0
  329. package/src/context/worker-pool.tsx +20 -0
  330. package/src/custom-elements.d.ts +17 -0
  331. package/src/hooks/create-auto-scroll.tsx +237 -0
  332. package/src/hooks/index.ts +2 -0
  333. package/src/hooks/use-filtered-list.tsx +134 -0
  334. package/src/i18n/ar.ts +168 -0
  335. package/src/i18n/br.ts +168 -0
  336. package/src/i18n/bs.ts +172 -0
  337. package/src/i18n/da.ts +167 -0
  338. package/src/i18n/de.ts +173 -0
  339. package/src/i18n/en.ts +176 -0
  340. package/src/i18n/es.ts +168 -0
  341. package/src/i18n/fr.ts +168 -0
  342. package/src/i18n/ja.ts +167 -0
  343. package/src/i18n/ko.ts +168 -0
  344. package/src/i18n/no.ts +171 -0
  345. package/src/i18n/pl.ts +167 -0
  346. package/src/i18n/ru.ts +167 -0
  347. package/src/i18n/th.ts +169 -0
  348. package/src/i18n/tr.ts +174 -0
  349. package/src/i18n/uk.ts +167 -0
  350. package/src/i18n/zh.ts +171 -0
  351. package/src/i18n/zht.ts +171 -0
  352. package/src/storybook/fixtures.ts +51 -0
  353. package/src/storybook/scaffold.tsx +62 -0
  354. package/src/styles/animations.css +141 -0
  355. package/src/styles/base.css +404 -0
  356. package/src/styles/colors.css +772 -0
  357. package/src/styles/index.css +53 -0
  358. package/src/styles/tailwind/colors.css +286 -0
  359. package/src/styles/tailwind/index.css +78 -0
  360. package/src/styles/tailwind/utilities.css +131 -0
  361. package/src/styles/theme.css +609 -0
  362. package/src/styles/utilities.css +118 -0
  363. package/src/theme/color.ts +299 -0
  364. package/src/theme/context.tsx +370 -0
  365. package/src/theme/default-themes.ts +116 -0
  366. package/src/theme/index.ts +78 -0
  367. package/src/theme/loader.ts +112 -0
  368. package/src/theme/resolve.ts +540 -0
  369. package/src/theme/themes/amoled.json +49 -0
  370. package/src/theme/themes/aura.json +51 -0
  371. package/src/theme/themes/ayu.json +51 -0
  372. package/src/theme/themes/carbonfox.json +53 -0
  373. package/src/theme/themes/catppuccin-frappe.json +85 -0
  374. package/src/theme/themes/catppuccin-macchiato.json +85 -0
  375. package/src/theme/themes/catppuccin.json +45 -0
  376. package/src/theme/themes/cobalt2.json +87 -0
  377. package/src/theme/themes/cursor.json +91 -0
  378. package/src/theme/themes/dracula.json +49 -0
  379. package/src/theme/themes/everforest.json +89 -0
  380. package/src/theme/themes/flexoki.json +86 -0
  381. package/src/theme/themes/github.json +85 -0
  382. package/src/theme/themes/gruvbox.json +45 -0
  383. package/src/theme/themes/kanagawa.json +89 -0
  384. package/src/theme/themes/lucent-orng.json +87 -0
  385. package/src/theme/themes/material.json +87 -0
  386. package/src/theme/themes/matrix.json +113 -0
  387. package/src/theme/themes/mercury.json +86 -0
  388. package/src/theme/themes/monokai.json +49 -0
  389. package/src/theme/themes/nightowl.json +46 -0
  390. package/src/theme/themes/nord.json +46 -0
  391. package/src/theme/themes/oc-2.json +474 -0
  392. package/src/theme/themes/one-dark.json +89 -0
  393. package/src/theme/themes/onedarkpro.json +45 -0
  394. package/src/theme/themes/opencode.json +89 -0
  395. package/src/theme/themes/orng.json +87 -0
  396. package/src/theme/themes/osaka-jade.json +88 -0
  397. package/src/theme/themes/palenight.json +85 -0
  398. package/src/theme/themes/rosepine.json +85 -0
  399. package/src/theme/themes/shadesofpurple.json +51 -0
  400. package/src/theme/themes/solarized.json +49 -0
  401. package/src/theme/themes/synthwave84.json +87 -0
  402. package/src/theme/themes/tokyonight.json +47 -0
  403. package/src/theme/themes/vercel.json +90 -0
  404. package/src/theme/themes/vesper.json +51 -0
  405. package/src/theme/themes/zenburn.json +87 -0
  406. package/src/theme/types.ts +75 -0
  407. package/src/theme/v2/avatar.ts +48 -0
  408. package/src/theme/v2/default-primitives.ts +114 -0
  409. package/src/theme/v2/foreground.ts +60 -0
  410. package/src/theme/v2/mapping.ts +140 -0
  411. package/src/theme/v2/resolve.ts +153 -0
  412. package/src/v2/components/accordion-v2.css +139 -0
  413. package/src/v2/components/accordion-v2.tsx +86 -0
  414. package/src/v2/components/avatar-v2.css +70 -0
  415. package/src/v2/components/avatar-v2.tsx +59 -0
  416. package/src/v2/components/badge-v2.css +27 -0
  417. package/src/v2/components/badge-v2.tsx +20 -0
  418. package/src/v2/components/button-v2.css +230 -0
  419. package/src/v2/components/button-v2.tsx +35 -0
  420. package/src/v2/components/checkbox-v2.css +184 -0
  421. package/src/v2/components/checkbox-v2.tsx +65 -0
  422. package/src/v2/components/dialog-v2.css +177 -0
  423. package/src/v2/components/dialog-v2.tsx +114 -0
  424. package/src/v2/components/diff-changes-v2.css +24 -0
  425. package/src/v2/components/diff-changes-v2.tsx +28 -0
  426. package/src/v2/components/divider-v2.css +11 -0
  427. package/src/v2/components/divider-v2.tsx +20 -0
  428. package/src/v2/components/field-v2.css +94 -0
  429. package/src/v2/components/field-v2.tsx +265 -0
  430. package/src/v2/components/icon-button-v2.css +155 -0
  431. package/src/v2/components/icon-button-v2.tsx +37 -0
  432. package/src/v2/components/icon.tsx +157 -0
  433. package/src/v2/components/inline-input-v2.css +218 -0
  434. package/src/v2/components/inline-input-v2.tsx +90 -0
  435. package/src/v2/components/keybind-v2.css +76 -0
  436. package/src/v2/components/keybind-v2.tsx +30 -0
  437. package/src/v2/components/line-comment-v2.css +204 -0
  438. package/src/v2/components/line-comment-v2.tsx +155 -0
  439. package/src/v2/components/menu-v2.css +190 -0
  440. package/src/v2/components/menu-v2.tsx +225 -0
  441. package/src/v2/components/progress-circle-v2.css +13 -0
  442. package/src/v2/components/progress-circle-v2.tsx +52 -0
  443. package/src/v2/components/project-avatar-v2.css +125 -0
  444. package/src/v2/components/project-avatar-v2.tsx +64 -0
  445. package/src/v2/components/radio-v2.css +202 -0
  446. package/src/v2/components/radio-v2.tsx +72 -0
  447. package/src/v2/components/segmented-control-v2.css +80 -0
  448. package/src/v2/components/segmented-control-v2.tsx +208 -0
  449. package/src/v2/components/select-v2.css +285 -0
  450. package/src/v2/components/select-v2.tsx +208 -0
  451. package/src/v2/components/switch-v2.css +154 -0
  452. package/src/v2/components/switch-v2.tsx +28 -0
  453. package/src/v2/components/tab-state-indicator.tsx +37 -0
  454. package/src/v2/components/tabs-v2.css +225 -0
  455. package/src/v2/components/tabs-v2.tsx +147 -0
  456. package/src/v2/components/text-input-v2.css +145 -0
  457. package/src/v2/components/text-input-v2.tsx +67 -0
  458. package/src/v2/components/text-shimmer-v2.css +125 -0
  459. package/src/v2/components/text-shimmer-v2.tsx +63 -0
  460. package/src/v2/components/textarea-v2.css +78 -0
  461. package/src/v2/components/textarea-v2.tsx +31 -0
  462. package/src/v2/components/toast-v2.css +215 -0
  463. package/src/v2/components/toast-v2.tsx +144 -0
  464. package/src/v2/components/tooltip-v2.css +64 -0
  465. package/src/v2/components/tooltip-v2.tsx +147 -0
  466. package/src/v2/components/wordmark-v2.tsx +92 -0
  467. package/src/v2/styles/colors.css +172 -0
  468. package/src/v2/styles/tailwind.css +2 -0
  469. package/src/v2/styles/theme.css +457 -0
  470. package/README.md +0 -3
@@ -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
+ }