@aithe/aithe-ui 26.2.3 → 26.3.2

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 (620) hide show
  1. package/README.md +19 -11
  2. package/dist/apps/admin/app.js +12 -0
  3. package/dist/apps/admin/components/admin-app.js +83 -0
  4. package/dist/apps/admin/components/admin-layout.d.ts +0 -1
  5. package/dist/apps/admin/components/admin-layout.d.ts.map +1 -1
  6. package/dist/apps/admin/components/admin-layout.js +250 -0
  7. package/dist/apps/admin/datahub/auth.js +24 -0
  8. package/dist/apps/admin/datahub/dashboard.js +16 -0
  9. package/dist/apps/admin/datahub/index.js +42 -0
  10. package/dist/apps/admin/datahub/menu.js +16 -0
  11. package/dist/apps/admin/datahub/mock/auth.js +11 -0
  12. package/dist/apps/admin/datahub/mock/dashboard.js +10 -0
  13. package/dist/apps/admin/datahub/mock/menu.js +42 -0
  14. package/dist/apps/admin/i18n/de-DE.js +37 -0
  15. package/dist/apps/admin/i18n/en-US.js +37 -0
  16. package/dist/apps/admin/i18n/es-ES.js +38 -0
  17. package/dist/apps/admin/i18n/fr-FR.js +37 -0
  18. package/dist/apps/admin/i18n/index.js +27 -0
  19. package/dist/apps/admin/i18n/ja-JP.js +38 -0
  20. package/dist/apps/admin/i18n/ko-KR.js +37 -0
  21. package/dist/apps/admin/i18n/pt-BR.js +37 -0
  22. package/dist/apps/admin/i18n/zh-CN.js +37 -0
  23. package/dist/apps/admin/i18n/zh-HK.js +37 -0
  24. package/dist/apps/admin/i18n/zh-TW.js +37 -0
  25. package/dist/apps/admin/pages/dashboard-page.d.ts +1 -0
  26. package/dist/apps/admin/pages/dashboard-page.d.ts.map +1 -1
  27. package/dist/apps/admin/pages/dashboard-page.js +199 -0
  28. package/dist/apps/admin/pages/login-page.js +278 -0
  29. package/dist/apps/admin/pages/not-found-page.js +57 -0
  30. package/dist/apps/admin/pages/role-page.js +76 -0
  31. package/dist/apps/admin/pages/settings-page.js +95 -0
  32. package/dist/apps/admin/pages/user-page.js +76 -0
  33. package/dist/apps/admin/router/index.js +43 -0
  34. package/dist/apps/admin/standalone.js +1 -0
  35. package/dist/apps/admin/store/auth.js +42 -0
  36. package/dist/apps/api/app.js +82 -0
  37. package/dist/apps/api/demo-data.d.ts.map +1 -1
  38. package/dist/apps/api/demo-data.js +965 -0
  39. package/dist/apps/api/docs-viewer.js +684 -0
  40. package/dist/apps/api/i18n/de-DE.d.ts.map +1 -1
  41. package/dist/apps/api/i18n/de-DE.js +131 -0
  42. package/dist/apps/api/i18n/en-US.d.ts.map +1 -1
  43. package/dist/apps/api/i18n/en-US.js +141 -0
  44. package/dist/apps/api/i18n/es-ES.d.ts.map +1 -1
  45. package/dist/apps/api/i18n/es-ES.js +131 -0
  46. package/dist/apps/api/i18n/fr-FR.d.ts.map +1 -1
  47. package/dist/apps/api/i18n/fr-FR.js +131 -0
  48. package/dist/apps/api/i18n/index.js +27 -0
  49. package/dist/apps/api/i18n/ja-JP.d.ts.map +1 -1
  50. package/dist/apps/api/i18n/ja-JP.js +131 -0
  51. package/dist/apps/api/i18n/ko-KR.d.ts.map +1 -1
  52. package/dist/apps/api/i18n/ko-KR.js +131 -0
  53. package/dist/apps/api/i18n/pt-BR.d.ts.map +1 -1
  54. package/dist/apps/api/i18n/pt-BR.js +131 -0
  55. package/dist/apps/api/i18n/zh-CN.d.ts.map +1 -1
  56. package/dist/apps/api/i18n/zh-CN.js +141 -0
  57. package/dist/apps/api/i18n/zh-HK.d.ts.map +1 -1
  58. package/dist/apps/api/i18n/zh-HK.js +131 -0
  59. package/dist/apps/api/i18n/zh-TW.d.ts.map +1 -1
  60. package/dist/apps/api/i18n/zh-TW.js +131 -0
  61. package/dist/apps/api/pages/docs.d.ts.map +1 -1
  62. package/dist/apps/api/pages/docs.js +369 -0
  63. package/dist/apps/api/standalone.js +1 -0
  64. package/dist/apps/demo/app.d.ts.map +1 -1
  65. package/dist/apps/demo/app.js +275 -0
  66. package/dist/apps/demo/editor.d.ts.map +1 -1
  67. package/dist/apps/demo/editor.js +270 -0
  68. package/dist/apps/demo/helpers.js +7 -0
  69. package/dist/apps/demo/i18n/de-DE.d.ts.map +1 -1
  70. package/dist/apps/demo/i18n/de-DE.js +289 -0
  71. package/dist/apps/demo/i18n/en-US.d.ts.map +1 -1
  72. package/dist/apps/demo/i18n/en-US.js +301 -0
  73. package/dist/apps/demo/i18n/es-ES.d.ts.map +1 -1
  74. package/dist/apps/demo/i18n/es-ES.js +289 -0
  75. package/dist/apps/demo/i18n/fr-FR.d.ts.map +1 -1
  76. package/dist/apps/demo/i18n/fr-FR.js +289 -0
  77. package/dist/apps/demo/i18n/index.js +27 -0
  78. package/dist/apps/demo/i18n/ja-JP.d.ts.map +1 -1
  79. package/dist/apps/demo/i18n/ja-JP.js +289 -0
  80. package/dist/apps/demo/i18n/ko-KR.d.ts.map +1 -1
  81. package/dist/apps/demo/i18n/ko-KR.js +289 -0
  82. package/dist/apps/demo/i18n/pt-BR.d.ts.map +1 -1
  83. package/dist/apps/demo/i18n/pt-BR.js +289 -0
  84. package/dist/apps/demo/i18n/zh-CN.d.ts.map +1 -1
  85. package/dist/apps/demo/i18n/zh-CN.js +301 -0
  86. package/dist/apps/demo/i18n/zh-HK.d.ts.map +1 -1
  87. package/dist/apps/demo/i18n/zh-HK.js +289 -0
  88. package/dist/apps/demo/i18n/zh-TW.d.ts.map +1 -1
  89. package/dist/apps/demo/i18n/zh-TW.js +289 -0
  90. package/dist/apps/demo/pages/autoform.d.ts.map +1 -1
  91. package/dist/apps/demo/pages/autoform.js +422 -0
  92. package/dist/apps/demo/pages/autoview.d.ts +3 -0
  93. package/dist/apps/demo/pages/autoview.d.ts.map +1 -0
  94. package/dist/apps/demo/pages/autoview.js +310 -0
  95. package/dist/apps/demo/pages/basic.js +157 -0
  96. package/dist/apps/demo/pages/code.js +1088 -0
  97. package/dist/apps/demo/pages/container.js +42 -0
  98. package/dist/apps/demo/pages/dashboard.js +159 -0
  99. package/dist/apps/demo/pages/data.d.ts.map +1 -1
  100. package/dist/apps/demo/pages/data.js +327 -0
  101. package/dist/apps/demo/pages/display.d.ts.map +1 -1
  102. package/dist/apps/demo/pages/display.js +295 -0
  103. package/dist/apps/demo/pages/feedback.js +94 -0
  104. package/dist/apps/demo/pages/form.d.ts.map +1 -1
  105. package/dist/apps/demo/pages/form.js +119 -0
  106. package/dist/apps/demo/pages/layout.js +74 -0
  107. package/dist/apps/demo/pages/navigation.js +54 -0
  108. package/dist/apps/demo/pages/progress.js +42 -0
  109. package/dist/apps/demo/pages/theme.js +126 -0
  110. package/dist/apps/demo/standalone.js +1 -0
  111. package/dist/components/basic/AGENTS.md +1 -0
  112. package/dist/components/basic/avatar.js +168 -0
  113. package/dist/components/basic/badge.js +157 -0
  114. package/dist/components/basic/button-group.js +70 -0
  115. package/dist/components/basic/button.d.ts +2 -4
  116. package/dist/components/basic/button.d.ts.map +1 -1
  117. package/dist/components/basic/button.js +315 -0
  118. package/dist/components/basic/card.js +186 -0
  119. package/dist/components/basic/chip.js +103 -0
  120. package/dist/components/basic/divider.js +127 -0
  121. package/dist/components/basic/empty.js +72 -0
  122. package/dist/components/basic/icon.js +129 -0
  123. package/dist/components/basic/input.d.ts.map +1 -1
  124. package/dist/components/basic/input.js +314 -0
  125. package/dist/components/basic/tag.d.ts +7 -2
  126. package/dist/components/basic/tag.d.ts.map +1 -1
  127. package/dist/components/basic/tag.js +248 -0
  128. package/dist/components/basic/textarea.d.ts +0 -1
  129. package/dist/components/basic/textarea.d.ts.map +1 -1
  130. package/dist/components/basic/textarea.js +130 -0
  131. package/dist/components/container/callout.js +108 -0
  132. package/dist/components/container/details.js +117 -0
  133. package/dist/components/container/scroller.js +144 -0
  134. package/dist/components/container/split-panel.js +150 -0
  135. package/dist/components/data/AGENTS.md +1 -1
  136. package/dist/components/data/box-table.d.ts +53 -0
  137. package/dist/components/data/box-table.d.ts.map +1 -0
  138. package/dist/components/data/box-table.js +220 -0
  139. package/dist/components/data/dropdown.d.ts +8 -5
  140. package/dist/components/data/dropdown.d.ts.map +1 -1
  141. package/dist/components/data/dropdown.js +219 -0
  142. package/dist/components/data/metrics-group.js +180 -0
  143. package/dist/components/data/metrics.d.ts +11 -0
  144. package/dist/components/data/metrics.d.ts.map +1 -1
  145. package/dist/components/data/metrics.js +309 -0
  146. package/dist/components/data/pagination.js +119 -0
  147. package/dist/components/data/tab-pane.d.ts +58 -12
  148. package/dist/components/data/tab-pane.d.ts.map +1 -1
  149. package/dist/components/data/tab-pane.js +130 -0
  150. package/dist/components/data/table-column.d.ts +29 -5
  151. package/dist/components/data/table-column.d.ts.map +1 -1
  152. package/dist/components/data/table-column.js +123 -0
  153. package/dist/components/data/table.d.ts +134 -54
  154. package/dist/components/data/table.d.ts.map +1 -1
  155. package/dist/components/data/table.js +1210 -0
  156. package/dist/components/data/tabs.d.ts +60 -3
  157. package/dist/components/data/tabs.d.ts.map +1 -1
  158. package/dist/components/data/tabs.js +416 -0
  159. package/dist/components/data/timeline-item.js +127 -0
  160. package/dist/components/data/timeline.js +204 -0
  161. package/dist/components/data/tree-menu.d.ts +12 -2
  162. package/dist/components/data/tree-menu.d.ts.map +1 -1
  163. package/dist/components/data/tree-menu.js +482 -0
  164. package/dist/components/data/tree.js +269 -0
  165. package/dist/components/display/AGENTS.md +5 -2
  166. package/dist/components/display/animated-image.js +98 -0
  167. package/dist/components/display/autoview.d.ts +139 -0
  168. package/dist/components/display/autoview.d.ts.map +1 -0
  169. package/dist/components/display/autoview.js +460 -0
  170. package/dist/components/display/brief-box.d.ts +42 -0
  171. package/dist/components/display/brief-box.d.ts.map +1 -0
  172. package/dist/components/display/brief-box.js +117 -0
  173. package/dist/components/display/carousel.js +223 -0
  174. package/dist/components/display/code-editor.d.ts.map +1 -1
  175. package/dist/components/display/code-editor.js +976 -0
  176. package/dist/components/display/comparison.js +132 -0
  177. package/dist/components/display/desc-item.d.ts +48 -0
  178. package/dist/components/display/desc-item.d.ts.map +1 -0
  179. package/dist/components/display/desc-item.js +150 -0
  180. package/dist/components/display/desc.d.ts +68 -0
  181. package/dist/components/display/desc.d.ts.map +1 -0
  182. package/dist/components/display/desc.js +405 -0
  183. package/dist/components/display/detail-box.d.ts +51 -0
  184. package/dist/components/display/detail-box.d.ts.map +1 -0
  185. package/dist/components/display/detail-box.js +157 -0
  186. package/dist/components/display/label.js +166 -0
  187. package/dist/components/display/markdown-editor.js +319 -0
  188. package/dist/components/display/markdown.d.ts.map +1 -1
  189. package/dist/components/display/markdown.js +193 -0
  190. package/dist/components/display/mini-box.d.ts +31 -0
  191. package/dist/components/display/mini-box.d.ts.map +1 -0
  192. package/dist/components/display/mini-box.js +137 -0
  193. package/dist/components/display/profile.d.ts +18 -0
  194. package/dist/components/display/profile.d.ts.map +1 -0
  195. package/dist/components/display/profile.js +164 -0
  196. package/dist/components/feedback/AGENTS.md +1 -0
  197. package/dist/components/feedback/alert.js +150 -0
  198. package/dist/components/feedback/dialog.js +228 -0
  199. package/dist/components/feedback/drawer.d.ts.map +1 -1
  200. package/dist/components/feedback/drawer.js +338 -0
  201. package/dist/components/feedback/loading.js +130 -0
  202. package/dist/components/feedback/modal.d.ts.map +1 -1
  203. package/dist/components/feedback/modal.js +303 -0
  204. package/dist/components/feedback/notification.js +170 -0
  205. package/dist/components/feedback/popover.d.ts +1 -1
  206. package/dist/components/feedback/popover.js +124 -0
  207. package/dist/components/feedback/toast.js +142 -0
  208. package/dist/components/feedback/tooltip.d.ts +1 -1
  209. package/dist/components/feedback/tooltip.js +153 -0
  210. package/dist/components/form/AGENTS.md +4 -0
  211. package/dist/components/form/autoform-item.d.ts +6 -0
  212. package/dist/components/form/autoform-item.d.ts.map +1 -1
  213. package/dist/components/form/autoform-item.js +791 -0
  214. package/dist/components/form/autoform.d.ts +15 -5
  215. package/dist/components/form/autoform.d.ts.map +1 -1
  216. package/dist/components/form/autoform.js +303 -0
  217. package/dist/components/form/checkbox-group.js +118 -0
  218. package/dist/components/form/checkbox.js +123 -0
  219. package/dist/components/form/color-picker.js +148 -0
  220. package/dist/components/form/combobox.d.ts +4 -0
  221. package/dist/components/form/combobox.d.ts.map +1 -1
  222. package/dist/components/form/combobox.js +325 -0
  223. package/dist/components/form/date-picker.js +123 -0
  224. package/dist/components/form/form-item.d.ts.map +1 -1
  225. package/dist/components/form/form-item.js +141 -0
  226. package/dist/components/form/form.js +94 -0
  227. package/dist/components/form/radio-group.js +106 -0
  228. package/dist/components/form/radio.js +110 -0
  229. package/dist/components/form/rate.js +116 -0
  230. package/dist/components/form/select.d.ts +5 -1
  231. package/dist/components/form/select.d.ts.map +1 -1
  232. package/dist/components/form/select.js +539 -0
  233. package/dist/components/form/slider.js +134 -0
  234. package/dist/components/form/switch.js +146 -0
  235. package/dist/components/form/time-picker.js +92 -0
  236. package/dist/components/form/transfer.js +273 -0
  237. package/dist/components/form/upload.js +138 -0
  238. package/dist/components/framework/body.js +333 -0
  239. package/dist/components/framework/dashboard-panel.js +519 -0
  240. package/dist/components/framework/dashboard.d.ts.map +1 -1
  241. package/dist/components/framework/dashboard.js +1084 -0
  242. package/dist/components/framework/header.js +237 -0
  243. package/dist/components/framework/log-panel.js +637 -0
  244. package/dist/components/framework/page.js +151 -0
  245. package/dist/components/framework/sidebar.d.ts +4 -10
  246. package/dist/components/framework/sidebar.d.ts.map +1 -1
  247. package/dist/components/framework/sidebar.js +477 -0
  248. package/dist/components/layout/affix.js +137 -0
  249. package/dist/components/layout/col.js +103 -0
  250. package/dist/components/layout/collapse-item.js +165 -0
  251. package/dist/components/layout/collapse.js +108 -0
  252. package/dist/components/layout/container.js +92 -0
  253. package/dist/components/layout/flex.js +100 -0
  254. package/dist/components/layout/row.js +103 -0
  255. package/dist/components/layout/space.js +85 -0
  256. package/dist/components/navigation/back-top.js +127 -0
  257. package/dist/components/navigation/breadcrumb-item.js +108 -0
  258. package/dist/components/navigation/breadcrumb.js +70 -0
  259. package/dist/components/navigation/menu-item.js +181 -0
  260. package/dist/components/navigation/menu.js +126 -0
  261. package/dist/components/navigation/steps.js +183 -0
  262. package/dist/components/navigation/sub-menu.d.ts.map +1 -1
  263. package/dist/components/navigation/sub-menu.js +252 -0
  264. package/dist/components/progress/progress-bar.js +97 -0
  265. package/dist/components/progress/progress-ring.js +111 -0
  266. package/dist/components/progress/skeleton.js +108 -0
  267. package/dist/components/progress/spinner.js +129 -0
  268. package/dist/components/theme/locale-switch.js +241 -0
  269. package/dist/components/theme/shadow-picker.js +233 -0
  270. package/dist/components/theme/shape-picker.js +232 -0
  271. package/dist/components/theme/theme-picker.js +236 -0
  272. package/dist/components/theme/theme-preview.d.ts +1 -2
  273. package/dist/components/theme/theme-preview.d.ts.map +1 -1
  274. package/dist/components/theme/theme-preview.js +376 -0
  275. package/dist/components/theme/theme-switch.d.ts.map +1 -1
  276. package/dist/components/theme/theme-switch.js +318 -0
  277. package/dist/components/theme/typo-picker.js +219 -0
  278. package/dist/core/AGENTS.md +6 -1
  279. package/dist/core/aithe-element.d.ts +2 -2
  280. package/dist/core/aithe-element.js +135 -0
  281. package/dist/core/aithe-widget.js +30 -0
  282. package/dist/core/anchored-overlay.d.ts +3 -0
  283. package/dist/core/anchored-overlay.d.ts.map +1 -1
  284. package/dist/core/anchored-overlay.js +111 -0
  285. package/dist/core/autoform/autoform.js +79 -0
  286. package/dist/core/autoform/autoview.d.ts +86 -0
  287. package/dist/core/autoform/autoview.d.ts.map +1 -0
  288. package/dist/core/autoform/autoview.js +37 -0
  289. package/dist/core/autoform/condition.js +170 -0
  290. package/dist/core/autoform/index.d.ts +2 -0
  291. package/dist/core/autoform/index.d.ts.map +1 -1
  292. package/dist/core/autoform/index.js +9 -0
  293. package/dist/core/autoform/types.js +7 -0
  294. package/dist/core/datahub/__tests__/force-options.test.d.ts +8 -0
  295. package/dist/core/datahub/__tests__/force-options.test.d.ts.map +1 -0
  296. package/dist/core/datahub/__tests__/force-options.test.js +161 -0
  297. package/dist/core/datahub/config/strategy.d.ts +1 -1
  298. package/dist/core/datahub/config/strategy.d.ts.map +1 -1
  299. package/dist/core/datahub/config/strategy.js +50 -0
  300. package/dist/core/datahub/core/adapter/fetch-adapter.d.ts +1 -1
  301. package/dist/core/datahub/core/adapter/fetch-adapter.d.ts.map +1 -1
  302. package/dist/core/datahub/core/adapter/fetch-adapter.js +118 -0
  303. package/dist/core/datahub/core/adapter/index.js +7 -0
  304. package/dist/core/datahub/core/adapter/mock-adapter.d.ts +1 -1
  305. package/dist/core/datahub/core/adapter/mock-adapter.d.ts.map +1 -1
  306. package/dist/core/datahub/core/adapter/mock-adapter.js +58 -0
  307. package/dist/core/datahub/core/api-styles.d.ts +1 -1
  308. package/dist/core/datahub/core/api-styles.d.ts.map +1 -1
  309. package/dist/core/datahub/core/api-styles.js +136 -0
  310. package/dist/core/datahub/core/datahub-core.d.ts +53 -3
  311. package/dist/core/datahub/core/datahub-core.d.ts.map +1 -1
  312. package/dist/core/datahub/core/datahub-core.js +520 -0
  313. package/dist/core/datahub/core/index.js +7 -0
  314. package/dist/core/datahub/index.js +50 -0
  315. package/dist/core/datahub/types.d.ts +24 -0
  316. package/dist/core/datahub/types.d.ts.map +1 -1
  317. package/dist/core/datahub/types.js +31 -0
  318. package/dist/core/datahub/utils/cache.js +55 -0
  319. package/dist/core/datahub/utils/common.js +23 -0
  320. package/dist/core/datahub/utils/dedup.d.ts +1 -1
  321. package/dist/core/datahub/utils/dedup.d.ts.map +1 -1
  322. package/dist/core/datahub/utils/dedup.js +52 -0
  323. package/dist/core/datahub/utils/idempotent.js +61 -0
  324. package/dist/core/datahub/utils/is-query.js +53 -0
  325. package/dist/core/datahub/utils/loading.js +78 -0
  326. package/dist/core/filter/__tests__/index.test.d.ts +2 -0
  327. package/dist/core/filter/__tests__/index.test.d.ts.map +1 -0
  328. package/dist/core/filter/__tests__/index.test.js +230 -0
  329. package/dist/core/filter/builtins.d.ts +60 -0
  330. package/dist/core/filter/builtins.d.ts.map +1 -0
  331. package/dist/core/filter/builtins.js +172 -0
  332. package/dist/core/filter/factory.d.ts +54 -0
  333. package/dist/core/filter/factory.d.ts.map +1 -0
  334. package/dist/core/filter/factory.js +96 -0
  335. package/dist/core/filter/index.d.ts +11 -0
  336. package/dist/core/filter/index.d.ts.map +1 -0
  337. package/dist/core/filter/index.js +9 -0
  338. package/dist/core/filter/types.d.ts +12 -0
  339. package/dist/core/filter/types.d.ts.map +1 -0
  340. package/dist/core/filter/types.js +1 -0
  341. package/dist/core/floating.js +132 -0
  342. package/dist/core/highlight/index.js +43 -0
  343. package/dist/core/highlight/lang-bash.js +27 -0
  344. package/dist/core/highlight/lang-c.js +27 -0
  345. package/dist/core/highlight/lang-cmake.js +27 -0
  346. package/dist/core/highlight/lang-cpp.js +27 -0
  347. package/dist/core/highlight/lang-css.js +24 -0
  348. package/dist/core/highlight/lang-dart.js +27 -0
  349. package/dist/core/highlight/lang-dockerfile.js +16 -0
  350. package/dist/core/highlight/lang-fsharp.js +23 -0
  351. package/dist/core/highlight/lang-go.js +22 -0
  352. package/dist/core/highlight/lang-html.js +12 -0
  353. package/dist/core/highlight/lang-java.js +22 -0
  354. package/dist/core/highlight/lang-javascript.js +26 -0
  355. package/dist/core/highlight/lang-json.js +13 -0
  356. package/dist/core/highlight/lang-jsonline.js +13 -0
  357. package/dist/core/highlight/lang-jsx.js +30 -0
  358. package/dist/core/highlight/lang-kotlin.js +27 -0
  359. package/dist/core/highlight/lang-latex.js +22 -0
  360. package/dist/core/highlight/lang-lua.js +26 -0
  361. package/dist/core/highlight/lang-makefile.js +22 -0
  362. package/dist/core/highlight/lang-markdown.js +18 -0
  363. package/dist/core/highlight/lang-objectivec.js +24 -0
  364. package/dist/core/highlight/lang-perl.js +30 -0
  365. package/dist/core/highlight/lang-powershell.js +23 -0
  366. package/dist/core/highlight/lang-python.js +27 -0
  367. package/dist/core/highlight/lang-r.js +21 -0
  368. package/dist/core/highlight/lang-ruby.js +29 -0
  369. package/dist/core/highlight/lang-rust.js +24 -0
  370. package/dist/core/highlight/lang-scala.js +26 -0
  371. package/dist/core/highlight/lang-sql.js +21 -0
  372. package/dist/core/highlight/lang-svelte.js +27 -0
  373. package/dist/core/highlight/lang-swift.js +28 -0
  374. package/dist/core/highlight/lang-tsx.js +35 -0
  375. package/dist/core/highlight/lang-typescript.js +31 -0
  376. package/dist/core/highlight/lang-vue.js +29 -0
  377. package/dist/core/highlight/lang-wasm.js +22 -0
  378. package/dist/core/highlight/lang-xml.js +12 -0
  379. package/dist/core/highlight/lang-yaml.js +14 -0
  380. package/dist/core/highlight/registry.js +99 -0
  381. package/dist/core/logger/LoggerCore.js +626 -0
  382. package/dist/core/logger/index.js +10 -0
  383. package/dist/core/logger/types.js +29 -0
  384. package/dist/core/markdown/index.js +20 -0
  385. package/dist/core/markdown/parser.d.ts +2 -0
  386. package/dist/core/markdown/parser.d.ts.map +1 -1
  387. package/dist/core/markdown/parser.js +376 -0
  388. package/dist/core/markdown/plugins.d.ts +2 -1
  389. package/dist/core/markdown/plugins.d.ts.map +1 -1
  390. package/dist/core/markdown/plugins.js +755 -0
  391. package/dist/core/markdown/types.d.ts +5 -0
  392. package/dist/core/markdown/types.d.ts.map +1 -1
  393. package/dist/core/markdown/types.js +7 -0
  394. package/dist/core/router/index.js +244 -0
  395. package/dist/core/styles.js +44 -0
  396. package/dist/core/types.d.ts +52 -3
  397. package/dist/core/types.d.ts.map +1 -1
  398. package/dist/core/types.js +1 -0
  399. package/dist/index.d.ts +9 -0
  400. package/dist/index.d.ts.map +1 -1
  401. package/dist/index.js +3695 -1622
  402. package/dist/index.js.map +1 -1
  403. package/dist/index.umd.js +1844 -758
  404. package/dist/index.umd.js.map +1 -1
  405. package/dist/styles/aithe-ui.d.ts +23 -0
  406. package/dist/styles/aithe-ui.d.ts.map +1 -1
  407. package/dist/styles/aithe-ui.js +185 -0
  408. package/dist/styles/global.css.d.ts +1 -1
  409. package/dist/styles/global.css.d.ts.map +1 -1
  410. package/dist/styles/global.css.js +119 -0
  411. package/dist/styles/i18n/index.js +206 -0
  412. package/dist/styles/i18n/locales/de-DE.d.ts.map +1 -1
  413. package/dist/styles/i18n/locales/de-DE.js +151 -0
  414. package/dist/styles/i18n/locales/en-US.d.ts.map +1 -1
  415. package/dist/styles/i18n/locales/en-US.js +160 -0
  416. package/dist/styles/i18n/locales/es-ES.d.ts.map +1 -1
  417. package/dist/styles/i18n/locales/es-ES.js +151 -0
  418. package/dist/styles/i18n/locales/fr-FR.d.ts.map +1 -1
  419. package/dist/styles/i18n/locales/fr-FR.js +151 -0
  420. package/dist/styles/i18n/locales/index.js +14 -0
  421. package/dist/styles/i18n/locales/ja-JP.d.ts.map +1 -1
  422. package/dist/styles/i18n/locales/ja-JP.js +151 -0
  423. package/dist/styles/i18n/locales/ko-KR.d.ts.map +1 -1
  424. package/dist/styles/i18n/locales/ko-KR.js +151 -0
  425. package/dist/styles/i18n/locales/pt-BR.d.ts.map +1 -1
  426. package/dist/styles/i18n/locales/pt-BR.js +151 -0
  427. package/dist/styles/i18n/locales/zh-CN.d.ts.map +1 -1
  428. package/dist/styles/i18n/locales/zh-CN.js +160 -0
  429. package/dist/styles/i18n/locales/zh-HK.d.ts.map +1 -1
  430. package/dist/styles/i18n/locales/zh-HK.js +151 -0
  431. package/dist/styles/i18n/locales/zh-TW.d.ts.map +1 -1
  432. package/dist/styles/i18n/locales/zh-TW.js +151 -0
  433. package/dist/styles/layout/index.js +88 -0
  434. package/dist/styles/mixins.js +43 -0
  435. package/dist/styles/shadow/cyber.js +19 -0
  436. package/dist/styles/shadow/deep.js +19 -0
  437. package/dist/styles/shadow/diffuse.js +19 -0
  438. package/dist/styles/shadow/flat.js +19 -0
  439. package/dist/styles/shadow/glassmorphism.js +19 -0
  440. package/dist/styles/shadow/index.js +129 -0
  441. package/dist/styles/shadow/neumorphism.js +21 -0
  442. package/dist/styles/shadow/retro.js +19 -0
  443. package/dist/styles/shadow/sharp-business.js +19 -0
  444. package/dist/styles/shadow/skeuomorphic.js +21 -0
  445. package/dist/styles/shape/chamfer.js +19 -0
  446. package/dist/styles/shape/circle.js +19 -0
  447. package/dist/styles/shape/index.js +174 -0
  448. package/dist/styles/shape/organic.js +19 -0
  449. package/dist/styles/shape/pill.js +19 -0
  450. package/dist/styles/shape/rounded.js +21 -0
  451. package/dist/styles/shape/rounder.js +19 -0
  452. package/dist/styles/shape/sharp.js +19 -0
  453. package/dist/styles/shape/smooth.js +19 -0
  454. package/dist/styles/theme/aliyun.d.ts +1 -1
  455. package/dist/styles/theme/aliyun.d.ts.map +1 -1
  456. package/dist/styles/theme/aliyun.js +102 -0
  457. package/dist/styles/theme/amber.d.ts +1 -1
  458. package/dist/styles/theme/amber.d.ts.map +1 -1
  459. package/dist/styles/theme/amber.js +101 -0
  460. package/dist/styles/theme/blue.d.ts +1 -1
  461. package/dist/styles/theme/blue.d.ts.map +1 -1
  462. package/dist/styles/theme/blue.js +101 -0
  463. package/dist/styles/theme/charcoal.d.ts +1 -1
  464. package/dist/styles/theme/charcoal.d.ts.map +1 -1
  465. package/dist/styles/theme/charcoal.js +106 -0
  466. package/dist/styles/theme/cyan.d.ts +1 -1
  467. package/dist/styles/theme/cyan.d.ts.map +1 -1
  468. package/dist/styles/theme/cyan.js +96 -0
  469. package/dist/styles/theme/dark.d.ts +1 -1
  470. package/dist/styles/theme/dark.d.ts.map +1 -1
  471. package/dist/styles/theme/dark.js +106 -0
  472. package/dist/styles/theme/ebony.d.ts +1 -1
  473. package/dist/styles/theme/ebony.d.ts.map +1 -1
  474. package/dist/styles/theme/ebony.js +106 -0
  475. package/dist/styles/theme/festive.d.ts +1 -1
  476. package/dist/styles/theme/festive.d.ts.map +1 -1
  477. package/dist/styles/theme/festive.js +101 -0
  478. package/dist/styles/theme/graphite.d.ts +1 -1
  479. package/dist/styles/theme/graphite.d.ts.map +1 -1
  480. package/dist/styles/theme/graphite.js +106 -0
  481. package/dist/styles/theme/gray.d.ts +1 -1
  482. package/dist/styles/theme/gray.d.ts.map +1 -1
  483. package/dist/styles/theme/gray.js +101 -0
  484. package/dist/styles/theme/huawei.d.ts +1 -1
  485. package/dist/styles/theme/huawei.d.ts.map +1 -1
  486. package/dist/styles/theme/huawei.js +102 -0
  487. package/dist/styles/theme/index.d.ts +1 -1
  488. package/dist/styles/theme/index.d.ts.map +1 -1
  489. package/dist/styles/theme/index.js +276 -0
  490. package/dist/styles/theme/indigo.d.ts +1 -1
  491. package/dist/styles/theme/indigo.d.ts.map +1 -1
  492. package/dist/styles/theme/indigo.js +101 -0
  493. package/dist/styles/theme/ink.d.ts +1 -1
  494. package/dist/styles/theme/ink.d.ts.map +1 -1
  495. package/dist/styles/theme/ink.js +106 -0
  496. package/dist/styles/theme/light.d.ts +1 -1
  497. package/dist/styles/theme/light.d.ts.map +1 -1
  498. package/dist/styles/theme/light.js +102 -0
  499. package/dist/styles/theme/midnight.d.ts +1 -1
  500. package/dist/styles/theme/midnight.d.ts.map +1 -1
  501. package/dist/styles/theme/midnight.js +106 -0
  502. package/dist/styles/theme/navy.d.ts +1 -1
  503. package/dist/styles/theme/navy.d.ts.map +1 -1
  504. package/dist/styles/theme/navy.js +106 -0
  505. package/dist/styles/theme/obsidian.d.ts +1 -1
  506. package/dist/styles/theme/obsidian.d.ts.map +1 -1
  507. package/dist/styles/theme/obsidian.js +106 -0
  508. package/dist/styles/theme/onyx.d.ts +1 -1
  509. package/dist/styles/theme/onyx.d.ts.map +1 -1
  510. package/dist/styles/theme/onyx.js +106 -0
  511. package/dist/styles/theme/orange.d.ts +1 -1
  512. package/dist/styles/theme/orange.d.ts.map +1 -1
  513. package/dist/styles/theme/orange.js +101 -0
  514. package/dist/styles/theme/pink.d.ts +1 -1
  515. package/dist/styles/theme/pink.d.ts.map +1 -1
  516. package/dist/styles/theme/pink.js +101 -0
  517. package/dist/styles/theme/purple.d.ts +1 -1
  518. package/dist/styles/theme/purple.d.ts.map +1 -1
  519. package/dist/styles/theme/purple.js +101 -0
  520. package/dist/styles/theme/raisin.d.ts +1 -1
  521. package/dist/styles/theme/raisin.d.ts.map +1 -1
  522. package/dist/styles/theme/raisin.js +106 -0
  523. package/dist/styles/theme/slate.d.ts +1 -1
  524. package/dist/styles/theme/slate.d.ts.map +1 -1
  525. package/dist/styles/theme/slate.js +106 -0
  526. package/dist/styles/theme/teal.d.ts +1 -1
  527. package/dist/styles/theme/teal.d.ts.map +1 -1
  528. package/dist/styles/theme/teal.js +101 -0
  529. package/dist/styles/theme/tianyi.d.ts +1 -1
  530. package/dist/styles/theme/tianyi.d.ts.map +1 -1
  531. package/dist/styles/theme/tianyi.js +102 -0
  532. package/dist/styles/types.js +1 -0
  533. package/dist/styles/typo/business.js +34 -0
  534. package/dist/styles/typo/compact.js +34 -0
  535. package/dist/styles/typo/index.js +99 -0
  536. package/dist/styles/typo/luxury.js +34 -0
  537. package/dist/styles/typo/minimal.js +34 -0
  538. package/dist/types/index.js +2 -0
  539. package/dist/utils/dom.js +51 -0
  540. package/dist/utils/events.js +32 -0
  541. package/dist/utils/icon.js +176 -0
  542. package/dist/utils/index.js +4 -0
  543. package/dist/utils/utils.d.ts +5 -5
  544. package/dist/utils/utils.js +89 -0
  545. package/dist/utils/validation.js +52 -0
  546. package/docs/api/basic/button.md +9 -6
  547. package/docs/api/basic/tag.md +24 -17
  548. package/docs/api/data/box-table.md +73 -0
  549. package/docs/api/data/dropdown.md +3 -2
  550. package/docs/api/data/metrics.md +2 -0
  551. package/docs/api/data/table-column.md +37 -23
  552. package/docs/api/data/table.md +158 -44
  553. package/docs/api/data/tabs.md +46 -1
  554. package/docs/api/data/tree-menu.md +55 -2
  555. package/docs/api/display/autoview.md +277 -0
  556. package/docs/api/display/box.md +66 -0
  557. package/docs/api/display/brief-box.md +73 -0
  558. package/docs/api/display/desc-item.md +57 -0
  559. package/docs/api/display/desc.md +246 -0
  560. package/docs/api/display/detail-box.md +75 -0
  561. package/docs/api/display/mini-box.md +100 -0
  562. package/docs/api/display/profile.md +92 -0
  563. package/docs/api/feedback/popover.md +10 -10
  564. package/docs/api/feedback/tooltip.md +14 -14
  565. package/docs/api/form/autoform-item.md +115 -0
  566. package/docs/api/form/autoform.md +7 -3
  567. package/docs/api/form/combobox.md +27 -7
  568. package/docs/api/form/select.md +50 -28
  569. package/docs/api/framework/log-panel.md +46 -0
  570. package/docs/api/framework/sidebar.md +3 -2
  571. package/docs/api/summary.md +46 -35
  572. package/docs/api/theme/theme-switch.md +1 -1
  573. package/docs/autoform.md +14 -33
  574. package/docs/changelog/CHANGELOG.md +155 -0
  575. package/docs/changelog/VERSION_26.3.1.md +966 -0
  576. package/docs/changelog/VERSION_26.3.2.md +852 -0
  577. package/docs/datahub.md +4 -1
  578. package/docs/filter.md +332 -0
  579. package/docs/framework-integration.md +2 -2
  580. package/docs/guide.md +72 -6
  581. package/docs/i18n.md +2 -4
  582. package/docs/issue/26.3.1/issue_26.3.1.0.md +84 -0
  583. package/docs/issue/26.3.1/issue_26.3.1.1.md +72 -0
  584. package/docs/issue/26.3.1/issue_26.3.1.2.md +75 -0
  585. package/docs/issue/26.3.1/issue_26.3.1.3.md +78 -0
  586. package/docs/issue/26.3.1/issue_26.3.1.4.md +113 -0
  587. package/docs/issue/26.3.1/issue_26.3.1.5.md +142 -0
  588. package/docs/issue/26.3.1/issue_26.3.1.6.md +100 -0
  589. package/docs/issue/26.3.1/issue_26.3.1.7.md +78 -0
  590. package/docs/issue/26.3.2/issue_26.3.2.1.md +46 -0
  591. package/docs/issue/26.3.2/issue_26.3.2.2.md +82 -0
  592. package/docs/issue/26.3.2/issue_26.3.2.3.md +57 -0
  593. package/docs/issue/26.3.2/issue_26.3.2.4.md +43 -0
  594. package/docs/issue/AGENTS.md +24 -3
  595. package/docs/markdown.md +2 -2
  596. package/docs/quickstart.md +5 -5
  597. package/docs/theming.md +5 -4
  598. package/package.json +5 -2
  599. package/dist/components/navigation/dropdown.d.ts +0 -56
  600. package/dist/components/navigation/dropdown.d.ts.map +0 -1
  601. /package/docs/issue/{issue_26.2.2.1.md → 26.2.2/issue_26.2.2.1.md} +0 -0
  602. /package/docs/issue/{issue_26.2.2.2.md → 26.2.2/issue_26.2.2.2.md} +0 -0
  603. /package/docs/issue/{issue_26.2.2.3.md → 26.2.2/issue_26.2.2.3.md} +0 -0
  604. /package/docs/issue/{issue_26.2.2.4.md → 26.2.2/issue_26.2.2.4.md} +0 -0
  605. /package/docs/issue/{issue_26.2.3.1.md → 26.2.3/issue_26.2.3.1.md} +0 -0
  606. /package/docs/issue/{issue_26.2.3.10.md → 26.2.3/issue_26.2.3.10.md} +0 -0
  607. /package/docs/issue/{issue_26.2.3.11.md → 26.2.3/issue_26.2.3.11.md} +0 -0
  608. /package/docs/issue/{issue_26.2.3.12.md → 26.2.3/issue_26.2.3.12.md} +0 -0
  609. /package/docs/issue/{issue_26.2.3.13.md → 26.2.3/issue_26.2.3.13.md} +0 -0
  610. /package/docs/issue/{issue_26.2.3.14.md → 26.2.3/issue_26.2.3.14.md} +0 -0
  611. /package/docs/issue/{issue_26.2.3.15.md → 26.2.3/issue_26.2.3.15.md} +0 -0
  612. /package/docs/issue/{issue_26.2.3.16.md → 26.2.3/issue_26.2.3.16.md} +0 -0
  613. /package/docs/issue/{issue_26.2.3.2.md → 26.2.3/issue_26.2.3.2.md} +0 -0
  614. /package/docs/issue/{issue_26.2.3.3.md → 26.2.3/issue_26.2.3.3.md} +0 -0
  615. /package/docs/issue/{issue_26.2.3.4.md → 26.2.3/issue_26.2.3.4.md} +0 -0
  616. /package/docs/issue/{issue_26.2.3.5.md → 26.2.3/issue_26.2.3.5.md} +0 -0
  617. /package/docs/issue/{issue_26.2.3.6.md → 26.2.3/issue_26.2.3.6.md} +0 -0
  618. /package/docs/issue/{issue_26.2.3.7.md → 26.2.3/issue_26.2.3.7.md} +0 -0
  619. /package/docs/issue/{issue_26.2.3.8.md → 26.2.3/issue_26.2.3.8.md} +0 -0
  620. /package/docs/issue/{issue_26.2.3.9.md → 26.2.3/issue_26.2.3.9.md} +0 -0
@@ -0,0 +1,102 @@
1
+ /**
2
+ * Huawei Cloud theme tokens.
3
+ * 华为云风格主题令牌。
4
+ *
5
+ * Inspired by Huawei Cloud's brand identity: red primary (#CF102D) with
6
+ * professional, trustworthy blue-tinted backgrounds.
7
+ * 灵感来自华为云品牌色:红色 primary (#CF102D),配专业可信的蓝色调背景。
8
+ */
9
+ export const huaweiThemeTokens = `
10
+ .aithe-theme-huawei,
11
+ [data-aithe-theme='huawei'] {
12
+ color-scheme: light;
13
+ --aithe-primary-1: #fef2f3;
14
+ --aithe-primary-2: #fde3e5;
15
+ --aithe-primary-3: #fbc8cd;
16
+ --aithe-primary-4: #f9a1a9;
17
+ --aithe-primary-5: #f57582;
18
+ --aithe-primary-6: #e8414f;
19
+ --aithe-primary-7: #cf102d;
20
+ --aithe-primary-8: #a80d24;
21
+ --aithe-primary-9: #860e1f;
22
+ --aithe-primary-10: #6b0e1b;
23
+ --aithe-success-1: #effcf6;
24
+ --aithe-success-2: #d9f5e6;
25
+ --aithe-success-3: #b7ebcf;
26
+ --aithe-success-4: #84d9ae;
27
+ --aithe-success-5: #52c48a;
28
+ --aithe-success-6: #2eae70;
29
+ --aithe-success-7: #1f915d;
30
+ --aithe-success-8: #1b754e;
31
+ --aithe-success-9: #185e40;
32
+ --aithe-success-10: #144b34;
33
+ --aithe-warning-1: #fff8e8;
34
+ --aithe-warning-2: #ffefc7;
35
+ --aithe-warning-3: #ffe08c;
36
+ --aithe-warning-4: #ffcc59;
37
+ --aithe-warning-5: #f6b73a;
38
+ --aithe-warning-6: #dd9621;
39
+ --aithe-warning-7: #b97516;
40
+ --aithe-warning-8: #955b14;
41
+ --aithe-warning-9: #754712;
42
+ --aithe-warning-10: #5c390f;
43
+ --aithe-danger-1: #fff1f2;
44
+ --aithe-danger-2: #ffe0e4;
45
+ --aithe-danger-3: #ffc4cb;
46
+ --aithe-danger-4: #ff9ca8;
47
+ --aithe-danger-5: #ff7283;
48
+ --aithe-danger-6: #f04f64;
49
+ --aithe-danger-7: #cf3950;
50
+ --aithe-danger-8: #ab3144;
51
+ --aithe-danger-9: #882c3a;
52
+ --aithe-danger-10: #6d2630;
53
+ --aithe-neutral-1: #f5f7fa;
54
+ --aithe-neutral-2: #e9ecf3;
55
+ --aithe-neutral-3: #d5dae6;
56
+ --aithe-neutral-4: #b8bfd0;
57
+ --aithe-neutral-5: #98a0b5;
58
+ --aithe-neutral-6: #78809a;
59
+ --aithe-neutral-7: #59617c;
60
+ --aithe-neutral-8: #3d4560;
61
+ --aithe-neutral-9: #262d45;
62
+ --aithe-neutral-10: #13182b;
63
+ --aithe-fill-1: #f7f8fa;
64
+ --aithe-fill-2: #f0f1f3;
65
+ --aithe-color-bg: #faf5f6;
66
+ --aithe-color-bg-subtle: linear-gradient(180deg, #fefafa 0%, #f5eef0 100%);
67
+ --aithe-color-surface: rgba(255, 255, 255, 0.88);
68
+ --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
69
+ --aithe-color-surface-muted: #f0e8ea;
70
+ --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
71
+ --aithe-color-border: rgba(207, 16, 45, 0.15);
72
+ --aithe-color-border-strong: rgba(207, 16, 45, 0.25);
73
+ --aithe-color-text: #0c1222;
74
+ --aithe-color-text-muted: #3a4560;
75
+ --aithe-color-text-subtle: #68748f;
76
+ --aithe-color-overlay: rgba(8, 13, 26, 0.52);
77
+ --aithe-color-selection: rgba(207, 16, 45, 0.14);
78
+ --aithe-color-focus-ring: rgba(207, 16, 45, 0.34);
79
+ --aithe-color-text-secondary: #3d4a66;
80
+ --aithe-color-bg-muted: #e8ecf4;
81
+ --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);
82
+ --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);
83
+ --aithe-primary-6-rgb: 77, 141, 255;
84
+ --aithe-color-text-on-primary: #ffffff;
85
+ --aithe-code-keyword: #a626a4;
86
+ --aithe-code-boolean: #986801;
87
+ --aithe-code-builtin: #4078f2;
88
+ --aithe-code-number: #986801;
89
+ --aithe-code-string: #50a14f;
90
+ --aithe-code-function: #4078f2;
91
+ --aithe-code-type: #c18401;
92
+ --aithe-code-preprocessor: #a626a4;
93
+ --aithe-code-tag: #e45649;
94
+ --aithe-code-attr: #986801;
95
+ --aithe-code-key: #e45649;
96
+ --aithe-code-punctuation: #5c6bc0;
97
+ --aithe-code-entity: #986801;
98
+ --aithe-code-comment: #a0a1a7;
99
+ --aithe-code-doctype: #a0a1a7;
100
+ --aithe-code-placeholder: #a0a1a7;
101
+ }
102
+ `;
@@ -5,7 +5,7 @@ export declare const AITHE_DEFAULT_THEME: AitheThemeName;
5
5
  /** localStorage key for persisting the selected theme. 用于持久化所选主题的 localStorage 键名。 */
6
6
  export declare const AITHE_THEME_STORAGE_KEY = "aithe-ui-theme";
7
7
  /** Concatenated CSS text for all built-in themes and global tokens. 所有内置主题和全局 token 的拼接 CSS 文本。 */
8
- export declare const aitheThemeText = "\n\n.aithe-theme-light,\n[data-aithe-theme='light'],\n:root {\n color-scheme: light;\n --aithe-primary-1: #f2f7ff;\n --aithe-primary-2: #e3efff;\n --aithe-primary-3: #c8deff;\n --aithe-primary-4: #9ec5ff;\n --aithe-primary-5: #74aaff;\n --aithe-primary-6: #4d8dff;\n --aithe-primary-7: #326fe1;\n --aithe-primary-8: #2859b5;\n --aithe-primary-9: #22488f;\n --aithe-primary-10: #1d3970;\n --aithe-success-1: #effcf6;\n --aithe-success-2: #d9f5e6;\n --aithe-success-3: #b7ebcf;\n --aithe-success-4: #84d9ae;\n --aithe-success-5: #52c48a;\n --aithe-success-6: #2eae70;\n --aithe-success-7: #1f915d;\n --aithe-success-8: #1b754e;\n --aithe-success-9: #185e40;\n --aithe-success-10: #144b34;\n --aithe-warning-1: #fff8e8;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffe08c;\n --aithe-warning-4: #ffcc59;\n --aithe-warning-5: #f6b73a;\n --aithe-warning-6: #dd9621;\n --aithe-warning-7: #b97516;\n --aithe-warning-8: #955b14;\n --aithe-warning-9: #754712;\n --aithe-warning-10: #5c390f;\n --aithe-danger-1: #fff1f2;\n --aithe-danger-2: #ffe0e4;\n --aithe-danger-3: #ffc4cb;\n --aithe-danger-4: #ff9ca8;\n --aithe-danger-5: #ff7283;\n --aithe-danger-6: #f04f64;\n --aithe-danger-7: #cf3950;\n --aithe-danger-8: #ab3144;\n --aithe-danger-9: #882c3a;\n --aithe-danger-10: #6d2630;\n --aithe-neutral-1: #f7f8fb;\n --aithe-neutral-2: #eef1f6;\n --aithe-neutral-3: #e1e6ef;\n --aithe-neutral-4: #c9d1df;\n --aithe-neutral-5: #aeb8cb;\n --aithe-neutral-6: #8f9ab0;\n --aithe-neutral-7: #6d788f;\n --aithe-neutral-8: #4d576b;\n --aithe-neutral-9: #2f3747;\n --aithe-neutral-10: #151a22;\n --aithe-color-bg: #f2f5fa;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f7faff 0%, #eef2f8 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.85);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e8ecf4;\n --aithe-color-border: rgba(76, 94, 132, 0.20);\n --aithe-color-border-strong: rgba(52, 66, 96, 0.30);\n --aithe-color-text: #0e1628;\n --aithe-color-text-muted: #3d4a66;\n --aithe-color-text-subtle: #6a7a94;\n --aithe-color-overlay: rgba(11, 17, 29, 0.54);\n --aithe-color-selection: rgba(77, 141, 255, 0.18);\n --aithe-color-focus-ring: rgba(77, 141, 255, 0.38);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #a626a4;\n --aithe-code-boolean: #986801;\n --aithe-code-builtin: #4078f2;\n --aithe-code-number: #986801;\n --aithe-code-string: #50a14f;\n --aithe-code-function: #4078f2;\n --aithe-code-type: #c18401;\n --aithe-code-preprocessor: #a626a4;\n --aithe-code-tag: #e45649;\n --aithe-code-attr: #986801;\n --aithe-code-key: #e45649;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #986801;\n --aithe-code-comment: #a0a1a7;\n --aithe-code-doctype: #a0a1a7;\n --aithe-code-placeholder: #a0a1a7;\n}\n\n\n.aithe-theme-dark,\n[data-aithe-theme='dark'] {\n color-scheme: dark;\n --aithe-primary-1: #edf4ff;\n --aithe-primary-2: #d7e5ff;\n --aithe-primary-3: #b8d2ff;\n --aithe-primary-4: #8ab3ff;\n --aithe-primary-5: #6092ff;\n --aithe-primary-6: #4a7dff;\n --aithe-primary-7: #3d68e0;\n --aithe-primary-8: #3555b6;\n --aithe-primary-9: #2f478f;\n --aithe-primary-10: #28396f;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f5f7fb;\n --aithe-neutral-2: #dfe5ef;\n --aithe-neutral-3: #c7d0de;\n --aithe-neutral-4: #aab6c9;\n --aithe-neutral-5: #8997b0;\n --aithe-neutral-6: #6d7a92;\n --aithe-neutral-7: #536077;\n --aithe-neutral-8: #3b465a;\n --aithe-neutral-9: #242d3d;\n --aithe-neutral-10: #121925;\n --aithe-color-bg: #0c1018;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(55, 87, 151, 0.22) 0%, rgba(12, 16, 24, 1) 58%);\n --aithe-color-surface: rgba(17, 24, 39, 0.82);\n --aithe-color-surface-elevated: rgba(19, 27, 44, 0.96);\n --aithe-color-surface-muted: #151c2b;\n --aithe-color-border: rgba(172, 188, 217, 0.16);\n --aithe-color-border-strong: rgba(183, 198, 228, 0.24);\n --aithe-color-text: #f0f5ff;\n --aithe-color-text-muted: #a8b5cc;\n --aithe-color-text-subtle: #8894ab;\n --aithe-color-overlay: rgba(1, 4, 11, 0.68);\n --aithe-color-selection: rgba(116, 170, 255, 0.24);\n --aithe-color-focus-ring: rgba(116, 170, 255, 0.42);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.20);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.26);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.32);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.38);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.44);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #e5c07b;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #5c6370;\n --aithe-code-doctype: #5c6370;\n --aithe-code-placeholder: #5c6370;\n}\n\n\n.aithe-theme-gray,\n[data-aithe-theme='gray'] {\n color-scheme: light;\n --aithe-primary-1: #f4f6fb;\n --aithe-primary-2: #e8edf6;\n --aithe-primary-3: #d4dce9;\n --aithe-primary-4: #b8c3d8;\n --aithe-primary-5: #96a4c0;\n --aithe-primary-6: #7485a4;\n --aithe-primary-7: #5e708d;\n --aithe-primary-8: #4d5d76;\n --aithe-primary-9: #404d61;\n --aithe-primary-10: #313a48;\n --aithe-success-1: #eff7f3;\n --aithe-success-2: #dcefe4;\n --aithe-success-3: #badfc9;\n --aithe-success-4: #97cfac;\n --aithe-success-5: #73bd90;\n --aithe-success-6: #5aa277;\n --aithe-success-7: #4a8461;\n --aithe-success-8: #3d6950;\n --aithe-success-9: #335543;\n --aithe-success-10: #294437;\n --aithe-warning-1: #f9f4ea;\n --aithe-warning-2: #f3e8cf;\n --aithe-warning-3: #e8d3a3;\n --aithe-warning-4: #dbbb79;\n --aithe-warning-5: #c7a05b;\n --aithe-warning-6: #ab8442;\n --aithe-warning-7: #8d6a33;\n --aithe-warning-8: #72532a;\n --aithe-warning-9: #5b4324;\n --aithe-warning-10: #49371f;\n --aithe-danger-1: #faf1f2;\n --aithe-danger-2: #f2dfe2;\n --aithe-danger-3: #e8c3c9;\n --aithe-danger-4: #dba0a9;\n --aithe-danger-5: #c97d88;\n --aithe-danger-6: #b0626d;\n --aithe-danger-7: #924f59;\n --aithe-danger-8: #764149;\n --aithe-danger-9: #60363d;\n --aithe-danger-10: #4d2c31;\n --aithe-neutral-1: #fafbfc;\n --aithe-neutral-2: #f0f2f5;\n --aithe-neutral-3: #dfe4ea;\n --aithe-neutral-4: #c8d0db;\n --aithe-neutral-5: #adb7c6;\n --aithe-neutral-6: #8f99aa;\n --aithe-neutral-7: #717b8d;\n --aithe-neutral-8: #566070;\n --aithe-neutral-9: #3d4654;\n --aithe-neutral-10: #252d36;\n --aithe-color-bg: #f1f3f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f6f8fa 0%, #edf0f4 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.84);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.96);\n --aithe-color-surface-muted: #e8ecf2;\n --aithe-color-border: rgba(76, 84, 98, 0.18);\n --aithe-color-border-strong: rgba(55, 62, 72, 0.28);\n --aithe-color-text: #1a202c;\n --aithe-color-text-muted: #4a5468;\n --aithe-color-text-subtle: #788298;\n --aithe-color-overlay: rgba(28, 31, 37, 0.48);\n --aithe-color-selection: rgba(116, 133, 164, 0.20);\n --aithe-color-focus-ring: rgba(116, 133, 164, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #6b7280;\n --aithe-code-boolean: #78716c;\n --aithe-code-builtin: #64748b;\n --aithe-code-number: #78716c;\n --aithe-code-string: #4b5563;\n --aithe-code-function: #64748b;\n --aithe-code-type: #57534e;\n --aithe-code-preprocessor: #6b7280;\n --aithe-code-tag: #6b7280;\n --aithe-code-attr: #78716c;\n --aithe-code-key: #6b7280;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #78716c;\n --aithe-code-comment: #788298;\n --aithe-code-doctype: #788298;\n --aithe-code-placeholder: #788298;\n}\n\n\n.aithe-theme-blue,\n[data-aithe-theme='blue'] {\n color-scheme: light;\n --aithe-primary-1: #eaf3ff;\n --aithe-primary-2: #d2e4ff;\n --aithe-primary-3: #aacbff;\n --aithe-primary-4: #79acff;\n --aithe-primary-5: #518fff;\n --aithe-primary-6: #2c73f6;\n --aithe-primary-7: #245dd0;\n --aithe-primary-8: #234ca6;\n --aithe-primary-9: #213f81;\n --aithe-primary-10: #1f3365;\n --aithe-success-1: #effcf7;\n --aithe-success-2: #d2f5e4;\n --aithe-success-3: #afead0;\n --aithe-success-4: #7fd5af;\n --aithe-success-5: #59bd92;\n --aithe-success-6: #3aa478;\n --aithe-success-7: #2d8964;\n --aithe-success-8: #266f53;\n --aithe-success-9: #215a45;\n --aithe-success-10: #1b4938;\n --aithe-warning-1: #fff8e9;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffdd90;\n --aithe-warning-4: #ffc45c;\n --aithe-warning-5: #f2aa3d;\n --aithe-warning-6: #d38b25;\n --aithe-warning-7: #af6e1b;\n --aithe-warning-8: #8e5718;\n --aithe-warning-9: #724618;\n --aithe-warning-10: #5b3815;\n --aithe-danger-1: #fff0f3;\n --aithe-danger-2: #ffdbe2;\n --aithe-danger-3: #ffbbc8;\n --aithe-danger-4: #ff8fa1;\n --aithe-danger-5: #f66a80;\n --aithe-danger-6: #de5069;\n --aithe-danger-7: #bd3f56;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7c2f3f;\n --aithe-danger-10: #632837;\n --aithe-neutral-1: #f4f7fc;\n --aithe-neutral-2: #e8edf6;\n --aithe-neutral-3: #d3dcf0;\n --aithe-neutral-4: #b5c3e2;\n --aithe-neutral-5: #95a5cf;\n --aithe-neutral-6: #7688b8;\n --aithe-neutral-7: #5a6d9e;\n --aithe-neutral-8: #425580;\n --aithe-neutral-9: #2c3d5e;\n --aithe-neutral-10: #1a2740;\n --aithe-color-bg: #eef3fc;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f4f9ff 0%, #e6edf8 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e0e8f6;\n --aithe-color-border: rgba(44, 115, 246, 0.18);\n --aithe-color-border-strong: rgba(44, 115, 246, 0.30);\n --aithe-color-text: #0e1628;\n --aithe-color-text-muted: #3a4e72;\n --aithe-color-text-subtle: #6a7e9e;\n --aithe-color-overlay: rgba(9, 17, 31, 0.48);\n --aithe-color-selection: rgba(44, 115, 246, 0.18);\n --aithe-color-focus-ring: rgba(44, 115, 246, 0.38);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n\n\n.aithe-theme-festive,\n[data-aithe-theme='festive'] {\n color-scheme: light;\n --aithe-primary-1: #fff5f5;\n --aithe-primary-2: #ffe8e6;\n --aithe-primary-3: #ffd4cf;\n --aithe-primary-4: #ffb3aa;\n --aithe-primary-5: #ff8c80;\n --aithe-primary-6: #f5313d;\n --aithe-primary-7: #d91a2a;\n --aithe-primary-8: #b51020;\n --aithe-primary-9: #8e0a18;\n --aithe-primary-10: #660612;\n --aithe-success-1: #f4fce8;\n --aithe-success-2: #e2f5c8;\n --aithe-success-3: #c5eca0;\n --aithe-success-4: #9ede6a;\n --aithe-success-5: #7acd42;\n --aithe-success-6: #5cb32a;\n --aithe-success-7: #46941e;\n --aithe-success-8: #367618;\n --aithe-success-9: #2a5c14;\n --aithe-success-10: #1f4410;\n --aithe-warning-1: #fffbf0;\n --aithe-warning-2: #fff1cc;\n --aithe-warning-3: #ffe4a0;\n --aithe-warning-4: #ffd470;\n --aithe-warning-5: #f5c242;\n --aithe-warning-6: #d4a017;\n --aithe-warning-7: #b8860b;\n --aithe-warning-8: #8c6d0f;\n --aithe-warning-9: #6b4f0a;\n --aithe-warning-10: #493506;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffccc7;\n --aithe-danger-3: #ffa39e;\n --aithe-danger-4: #ff7875;\n --aithe-danger-5: #ff4d4f;\n --aithe-danger-6: #d91a2a;\n --aithe-danger-7: #b51020;\n --aithe-danger-8: #8e0a18;\n --aithe-danger-9: #660612;\n --aithe-danger-10: #44040c;\n --aithe-neutral-1: #fdfbfa;\n --aithe-neutral-2: #f8f3f1;\n --aithe-neutral-3: #efe6e2;\n --aithe-neutral-4: #ddd0c8;\n --aithe-neutral-5: #c4b2a6;\n --aithe-neutral-6: #a89486;\n --aithe-neutral-7: #8a766a;\n --aithe-neutral-8: #665850;\n --aithe-neutral-9: #423a36;\n --aithe-neutral-10: #221e1c;\n --aithe-color-bg: #fef8f5;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fffbf9 0%, #fef3ed 100%);\n --aithe-color-surface: rgba(255, 253, 251, 0.90);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f8ede6;\n --aithe-color-border: rgba(180, 80, 50, 0.16);\n --aithe-color-border-strong: rgba(160, 60, 35, 0.26);\n --aithe-color-text: #2c1014;\n --aithe-color-text-muted: #6e3a3a;\n --aithe-color-text-subtle: #9a6e68;\n --aithe-color-overlay: rgba(36, 8, 8, 0.48);\n --aithe-color-selection: rgba(245, 49, 61, 0.14);\n --aithe-color-focus-ring: rgba(245, 49, 61, 0.34);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #9333ea;\n --aithe-code-boolean: #c2410c;\n --aithe-code-builtin: #dc2626;\n --aithe-code-number: #c2410c;\n --aithe-code-string: #16a34a;\n --aithe-code-function: #dc2626;\n --aithe-code-type: #b45309;\n --aithe-code-preprocessor: #9333ea;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #c2410c;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #6a5acd;\n --aithe-code-entity: #c2410c;\n --aithe-code-comment: #a8a29e;\n --aithe-code-doctype: #a8a29e;\n --aithe-code-placeholder: #a8a29e;\n}\n\n\n.aithe-theme-orange,\n[data-aithe-theme='orange'] {\n color-scheme: light;\n --aithe-primary-1: #fff7e6;\n --aithe-primary-2: #ffe8c1;\n --aithe-primary-3: #ffd591;\n --aithe-primary-4: #ffba5c;\n --aithe-primary-5: #ff9c2e;\n --aithe-primary-6: #e87a18;\n --aithe-primary-7: #c45e0a;\n --aithe-primary-8: #9e4808;\n --aithe-primary-9: #7a3606;\n --aithe-primary-10: #562504;\n --aithe-success-1: #f0faf2;\n --aithe-success-2: #d8f0dc;\n --aithe-success-3: #b3e2bb;\n --aithe-success-4: #7dce8c;\n --aithe-success-5: #4db866;\n --aithe-success-6: #2f9e4a;\n --aithe-success-7: #1f8138;\n --aithe-success-8: #18652e;\n --aithe-success-9: #124e24;\n --aithe-success-10: #0c381a;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #faf9f7;\n --aithe-neutral-2: #f2efeb;\n --aithe-neutral-3: #e6e0d8;\n --aithe-neutral-4: #d0c7ba;\n --aithe-neutral-5: #b3a794;\n --aithe-neutral-6: #948774;\n --aithe-neutral-7: #746a5c;\n --aithe-neutral-8: #544c42;\n --aithe-neutral-9: #36302a;\n --aithe-neutral-10: #1c1814;\n --aithe-color-bg: #faf2e8;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fef7ee 0%, #f5ecde 100%);\n --aithe-color-surface: rgba(255, 252, 248, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e6d8;\n --aithe-color-border: rgba(160, 110, 50, 0.18);\n --aithe-color-border-strong: rgba(140, 85, 30, 0.28);\n --aithe-color-text: #261a0e;\n --aithe-color-text-muted: #62482e;\n --aithe-color-text-subtle: #927856;\n --aithe-color-overlay: rgba(30, 18, 5, 0.48);\n --aithe-color-selection: rgba(232, 122, 24, 0.16);\n --aithe-color-focus-ring: rgba(232, 122, 24, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #9333ea;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #c2410c;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #c2410c;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #9333ea;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #a8a29e;\n --aithe-code-doctype: #a8a29e;\n --aithe-code-placeholder: #a8a29e;\n}\n\n\n.aithe-theme-purple,\n[data-aithe-theme='purple'] {\n color-scheme: light;\n --aithe-primary-1: #f5f0ff;\n --aithe-primary-2: #e8dbff;\n --aithe-primary-3: #d3bfff;\n --aithe-primary-4: #b899ff;\n --aithe-primary-5: #9b6ff5;\n --aithe-primary-6: #7c4de0;\n --aithe-primary-7: #6334c0;\n --aithe-primary-8: #4e259e;\n --aithe-primary-9: #3b1a7a;\n --aithe-primary-10: #281056;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #f8f7fa;\n --aithe-neutral-2: #eeeef4;\n --aithe-neutral-3: #dddde8;\n --aithe-neutral-4: #c4c3d4;\n --aithe-neutral-5: #a8a6bc;\n --aithe-neutral-6: #8a88a0;\n --aithe-neutral-7: #6c6a82;\n --aithe-neutral-8: #504e64;\n --aithe-neutral-9: #343246;\n --aithe-neutral-10: #1a1926;\n --aithe-color-bg: #eeeaf6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f5f0fc 0%, #e6e0f2 100%);\n --aithe-color-surface: rgba(252, 250, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4def0;\n --aithe-color-border: rgba(100, 70, 160, 0.18);\n --aithe-color-border-strong: rgba(80, 50, 140, 0.28);\n --aithe-color-text: #1a0e2e;\n --aithe-color-text-muted: #4a306e;\n --aithe-color-text-subtle: #7a609e;\n --aithe-color-overlay: rgba(18, 10, 36, 0.48);\n --aithe-color-selection: rgba(124, 77, 224, 0.16);\n --aithe-color-focus-ring: rgba(124, 77, 224, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #6d28d9;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #6d28d9;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be185d;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be185d;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #8b8aa0;\n --aithe-code-doctype: #8b8aa0;\n --aithe-code-placeholder: #8b8aa0;\n}\n\n\n.aithe-theme-pink,\n[data-aithe-theme='pink'] {\n color-scheme: light;\n --aithe-primary-1: #fff0f6;\n --aithe-primary-2: #ffdce8;\n --aithe-primary-3: #ffc0d6;\n --aithe-primary-4: #ff9ebe;\n --aithe-primary-5: #f574a8;\n --aithe-primary-6: #e04d8a;\n --aithe-primary-7: #c03070;\n --aithe-primary-8: #9e1e5a;\n --aithe-primary-9: #7a1246;\n --aithe-primary-10: #560a32;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #faf8f9;\n --aithe-neutral-2: #f2eef0;\n --aithe-neutral-3: #e4dce0;\n --aithe-neutral-4: #cec0c8;\n --aithe-neutral-5: #b0a0aa;\n --aithe-neutral-6: #92828e;\n --aithe-neutral-7: #746474;\n --aithe-neutral-8: #564858;\n --aithe-neutral-9: #382e3a;\n --aithe-neutral-10: #1c161e;\n --aithe-color-bg: #faf0f4;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fef6f9 0%, #f5e8ef 100%);\n --aithe-color-surface: rgba(255, 250, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e2ea;\n --aithe-color-border: rgba(160, 60, 100, 0.18);\n --aithe-color-border-strong: rgba(140, 40, 80, 0.28);\n --aithe-color-text: #2a0e1c;\n --aithe-color-text-muted: #643052;\n --aithe-color-text-subtle: #946282;\n --aithe-color-overlay: rgba(30, 10, 20, 0.48);\n --aithe-color-selection: rgba(224, 77, 138, 0.16);\n --aithe-color-focus-ring: rgba(224, 77, 138, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #db2777;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #db2777;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #92828e;\n --aithe-code-doctype: #92828e;\n --aithe-code-placeholder: #92828e;\n}\n\n\n.aithe-theme-teal,\n[data-aithe-theme='teal'] {\n color-scheme: light;\n --aithe-primary-1: #e6fffb;\n --aithe-primary-2: #b5f5ec;\n --aithe-primary-3: #87e8de;\n --aithe-primary-4: #5cdbd3;\n --aithe-primary-5: #36cfc9;\n --aithe-primary-6: #13a8a8;\n --aithe-primary-7: #088a8a;\n --aithe-primary-8: #006d6d;\n --aithe-primary-9: #005252;\n --aithe-primary-10: #003a3a;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f7faf9;\n --aithe-neutral-2: #ecf2f0;\n --aithe-neutral-3: #d8e6e2;\n --aithe-neutral-4: #bad0ca;\n --aithe-neutral-5: #9ab4ac;\n --aithe-neutral-6: #7c968e;\n --aithe-neutral-7: #5e7872;\n --aithe-neutral-8: #425a56;\n --aithe-neutral-9: #2a3e3a;\n --aithe-neutral-10: #162624;\n --aithe-color-bg: #ecf6f3;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f0faf8 0%, #e4f2ee 100%);\n --aithe-color-surface: rgba(248, 254, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #dceee8;\n --aithe-color-border: rgba(40, 120, 110, 0.18);\n --aithe-color-border-strong: rgba(30, 100, 90, 0.28);\n --aithe-color-text: #0a2622;\n --aithe-color-text-muted: #265a52;\n --aithe-color-text-subtle: #568a82;\n --aithe-color-overlay: rgba(5, 24, 22, 0.48);\n --aithe-color-selection: rgba(19, 168, 168, 0.16);\n --aithe-color-focus-ring: rgba(19, 168, 168, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #0d9488;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #0d9488;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #00897b;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #5e7872;\n --aithe-code-doctype: #5e7872;\n --aithe-code-placeholder: #5e7872;\n}\n\n\n.aithe-theme-indigo,\n[data-aithe-theme='indigo'] {\n color-scheme: light;\n --aithe-primary-1: #f0f0ff;\n --aithe-primary-2: #ddd8ff;\n --aithe-primary-3: #c0b8ff;\n --aithe-primary-4: #9e90ff;\n --aithe-primary-5: #7a68f0;\n --aithe-primary-6: #5c48d6;\n --aithe-primary-7: #4634b0;\n --aithe-primary-8: #34268a;\n --aithe-primary-9: #261a66;\n --aithe-primary-10: #1a1048;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #f7f7fa;\n --aithe-neutral-2: #ededf2;\n --aithe-neutral-3: #d8d8e4;\n --aithe-neutral-4: #bcbcd0;\n --aithe-neutral-5: #9e9eb6;\n --aithe-neutral-6: #80809c;\n --aithe-neutral-7: #626280;\n --aithe-neutral-8: #484862;\n --aithe-neutral-9: #303044;\n --aithe-neutral-10: #18182a;\n --aithe-color-bg: #f0eef8;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f6f4fc 0%, #e8e6f4 100%);\n --aithe-color-surface: rgba(250, 249, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e2e0f0;\n --aithe-color-border: rgba(70, 50, 160, 0.18);\n --aithe-color-border-strong: rgba(55, 35, 140, 0.28);\n --aithe-color-text: #120e2a;\n --aithe-color-text-muted: #382e68;\n --aithe-color-text-subtle: #685ea0;\n --aithe-color-overlay: rgba(10, 6, 30, 0.48);\n --aithe-color-selection: rgba(92, 72, 214, 0.16);\n --aithe-color-focus-ring: rgba(92, 72, 214, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #4f46e5;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #4f46e5;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be185d;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be185d;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #80809c;\n --aithe-code-doctype: #80809c;\n --aithe-code-placeholder: #80809c;\n}\n\n\n.aithe-theme-cyan,\n[data-aithe-theme='cyan'] {\n color-scheme: light;\n --aithe-primary-1: #e6fffe;\n --aithe-primary-2: #b5f5f2;\n --aithe-primary-3: #87e8e4;\n --aithe-primary-4: #5cdbd8;\n --aithe-primary-5: #36cfc9;\n --aithe-primary-6: #0ebfc7;\n --aithe-primary-7: #009da5;\n --aithe-primary-8: #007a82;\n --aithe-primary-9: #005a62;\n --aithe-primary-10: #003e44;\n --aithe-success-1: #edfaf6;\n --aithe-success-2: #cdf5e8;\n --aithe-success-3: #a0ebd0;\n --aithe-success-4: #6cdbb2;\n --aithe-success-5: #40c894;\n --aithe-success-6: #26ae78;\n --aithe-success-7: #1d8f62;\n --aithe-success-8: #19724f;\n --aithe-success-9: #165b40;\n --aithe-success-10: #114733;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff0f2;\n --aithe-danger-2: #ffdbdf;\n --aithe-danger-3: #ffbac2;\n --aithe-danger-4: #ff929e;\n --aithe-danger-5: #f06a7a;\n --aithe-danger-6: #d44c5e;\n --aithe-danger-7: #b03446;\n --aithe-danger-8: #8c2436;\n --aithe-danger-9: #6a1a2a;\n --aithe-danger-10: #4a101e;\n --aithe-neutral-1: #f6fafb;\n --aithe-neutral-2: #eaf2f4;\n --aithe-neutral-3: #d4e4e8;\n --aithe-neutral-4: #b4ccd4;\n --aithe-neutral-5: #92b0ba;\n --aithe-neutral-6: #74949e;\n --aithe-neutral-7: #587882;\n --aithe-neutral-8: #3e5c66;\n --aithe-neutral-9: #284048;\n --aithe-neutral-10: #14282e;\n --aithe-color-bg: #ecf7f8;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f2fbfc 0%, #e4f2f4 100%);\n --aithe-color-surface: rgba(248, 254, 255, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #d8edf0;\n --aithe-color-border: rgba(30, 130, 150, 0.18);\n --aithe-color-border-strong: rgba(20, 110, 130, 0.28);\n --aithe-color-text: #0a1e24;\n --aithe-color-text-muted: #26525e;\n --aithe-color-text-subtle: #56828e;\n --aithe-color-overlay: rgba(4, 20, 24, 0.48);\n --aithe-color-selection: rgba(14, 191, 199, 0.16);\n --aithe-color-focus-ring: rgba(14, 191, 199, 0.36);\n --aithe-color-text-on-primary: #1a1a2e;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #0891b2;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #0891b2;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #0097a7;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #587882;\n --aithe-code-doctype: #587882;\n --aithe-code-placeholder: #587882;\n}\n\n\n.aithe-theme-amber,\n[data-aithe-theme='amber'] {\n color-scheme: light;\n --aithe-primary-1: #fffbe6;\n --aithe-primary-2: #fff3c4;\n --aithe-primary-3: #ffe78a;\n --aithe-primary-4: #ffd84d;\n --aithe-primary-5: #f0c020;\n --aithe-primary-6: #d4a010;\n --aithe-primary-7: #b08008;\n --aithe-primary-8: #8c6206;\n --aithe-primary-9: #6a4a04;\n --aithe-primary-10: #483202;\n --aithe-success-1: #f2faf1;\n --aithe-success-2: #daf0d6;\n --aithe-success-3: #b6e0ae;\n --aithe-success-4: #84cc78;\n --aithe-success-5: #5ab84e;\n --aithe-success-6: #3a9e32;\n --aithe-success-7: #2c8028;\n --aithe-success-8: #236421;\n --aithe-success-9: #1b4c1a;\n --aithe-success-10: #143613;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #faf9f5;\n --aithe-neutral-2: #f2efe6;\n --aithe-neutral-3: #e4ded2;\n --aithe-neutral-4: #cec4b2;\n --aithe-neutral-5: #b0a48e;\n --aithe-neutral-6: #928872;\n --aithe-neutral-7: #746c5c;\n --aithe-neutral-8: #565044;\n --aithe-neutral-9: #38342c;\n --aithe-neutral-10: #1c1a14;\n --aithe-color-bg: #fdfaf2;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fffdf6 0%, #faf4e6 100%);\n --aithe-color-surface: rgba(255, 254, 248, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f2ead8;\n --aithe-color-border: rgba(140, 100, 30, 0.18);\n --aithe-color-border-strong: rgba(120, 80, 20, 0.28);\n --aithe-color-text: #2a2210;\n --aithe-color-text-muted: #6e5a2e;\n --aithe-color-text-subtle: #9e8a5a;\n --aithe-color-overlay: rgba(24, 18, 4, 0.48);\n --aithe-color-selection: rgba(212, 160, 16, 0.16);\n --aithe-color-focus-ring: rgba(212, 160, 16, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #92400e;\n --aithe-code-builtin: #b45309;\n --aithe-code-number: #92400e;\n --aithe-code-string: #15803d;\n --aithe-code-function: #b45309;\n --aithe-code-type: #78350f;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #92400e;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #92400e;\n --aithe-code-comment: #746c5c;\n --aithe-code-doctype: #746c5c;\n --aithe-code-placeholder: #746c5c;\n}\n\n\n.aithe-theme-charcoal,\n[data-aithe-theme='charcoal'] {\n color-scheme: dark;\n --aithe-primary-1: #f2f0ff;\n --aithe-primary-2: #ddd8ff;\n --aithe-primary-3: #c0b8ff;\n --aithe-primary-4: #9e90ff;\n --aithe-primary-5: #7e6ef0;\n --aithe-primary-6: #6454d4;\n --aithe-primary-7: #5040ae;\n --aithe-primary-8: #3e308c;\n --aithe-primary-9: #30246c;\n --aithe-primary-10: #241a50;\n --aithe-success-1: #f0fcee;\n --aithe-success-2: #d2f5cc;\n --aithe-success-3: #aeeaa0;\n --aithe-success-4: #80da6e;\n --aithe-success-5: #5ac648;\n --aithe-success-6: #3eae30;\n --aithe-success-7: #2e9024;\n --aithe-success-8: #22721c;\n --aithe-success-9: #1a5a16;\n --aithe-success-10: #144610;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #fff0c4;\n --aithe-warning-3: #ffe08e;\n --aithe-warning-4: #ffcc5a;\n --aithe-warning-5: #f0b43e;\n --aithe-warning-6: #d09426;\n --aithe-warning-7: #ac761a;\n --aithe-warning-8: #8a5c16;\n --aithe-warning-9: #6e4a14;\n --aithe-warning-10: #583810;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f0eeec;\n --aithe-neutral-2: #d6d2ce;\n --aithe-neutral-3: #b4aea8;\n --aithe-neutral-4: #928a82;\n --aithe-neutral-5: #746c64;\n --aithe-neutral-6: #5a544c;\n --aithe-neutral-7: #423e38;\n --aithe-neutral-8: #302c28;\n --aithe-neutral-9: #201e1a;\n --aithe-neutral-10: #121110;\n --aithe-color-bg: #181614;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(100, 80, 60, 0.16) 0%, rgba(24, 22, 20, 1) 55%);\n --aithe-color-surface: rgba(28, 26, 24, 0.84);\n --aithe-color-surface-elevated: rgba(36, 34, 30, 0.96);\n --aithe-color-surface-muted: #222018;\n --aithe-color-border: rgba(180, 160, 140, 0.17);\n --aithe-color-border-strong: rgba(200, 180, 160, 0.25);\n --aithe-color-text: #f0ece8;\n --aithe-color-text-muted: #a8a096;\n --aithe-color-text-subtle: #847c74;\n --aithe-color-overlay: rgba(8, 6, 4, 0.66);\n --aithe-color-selection: rgba(100, 84, 212, 0.22);\n --aithe-color-focus-ring: rgba(100, 84, 212, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.24);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #e5c07b;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #5a544c;\n --aithe-code-doctype: #5a544c;\n --aithe-code-placeholder: #5a544c;\n}\n\n\n.aithe-theme-ebony,\n[data-aithe-theme='ebony'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0f8;\n --aithe-primary-2: #e0d8f0;\n --aithe-primary-3: #c4b4e0;\n --aithe-primary-4: #a48cc8;\n --aithe-primary-5: #8468b0;\n --aithe-primary-6: #6a5094;\n --aithe-primary-7: #544078;\n --aithe-primary-8: #403260;\n --aithe-primary-9: #30264a;\n --aithe-primary-10: #221c38;\n --aithe-success-1: #f0fcee;\n --aithe-success-2: #d2f5cc;\n --aithe-success-3: #aeeaa0;\n --aithe-success-4: #80da6e;\n --aithe-success-5: #5ac648;\n --aithe-success-6: #3eae30;\n --aithe-success-7: #2e9024;\n --aithe-success-8: #22721c;\n --aithe-success-9: #1a5a16;\n --aithe-success-10: #144610;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #fff0c4;\n --aithe-warning-3: #ffe08e;\n --aithe-warning-4: #ffcc5a;\n --aithe-warning-5: #f0b43e;\n --aithe-warning-6: #d09426;\n --aithe-warning-7: #ac761a;\n --aithe-warning-8: #8a5c16;\n --aithe-warning-9: #6e4a14;\n --aithe-warning-10: #583810;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f0ece8;\n --aithe-neutral-2: #d4ccc4;\n --aithe-neutral-3: #b0a498;\n --aithe-neutral-4: #8c7e72;\n --aithe-neutral-5: #6e6258;\n --aithe-neutral-6: #544c44;\n --aithe-neutral-7: #3e3832;\n --aithe-neutral-8: #2c2822;\n --aithe-neutral-9: #1c1a16;\n --aithe-neutral-10: #0e0c0a;\n --aithe-color-bg: #0c0a08;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 60, 100, 0.14) 0%, rgba(12, 10, 8, 1) 55%);\n --aithe-color-surface: rgba(16, 14, 12, 0.86);\n --aithe-color-surface-elevated: rgba(22, 20, 18, 0.96);\n --aithe-color-surface-muted: #181614;\n --aithe-color-border: rgba(160, 140, 130, 0.17);\n --aithe-color-border-strong: rgba(180, 160, 150, 0.25);\n --aithe-color-text: #ece6e0;\n --aithe-color-text-muted: #a09080;\n --aithe-color-text-subtle: #786c60;\n --aithe-color-overlay: rgba(4, 2, 0, 0.70);\n --aithe-color-selection: rgba(106, 80, 148, 0.20);\n --aithe-color-focus-ring: rgba(106, 80, 148, 0.38);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.28);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.34);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.40);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.46);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.52);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cc8;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3e3832;\n --aithe-code-doctype: #3e3832;\n --aithe-code-placeholder: #3e3832;\n}\n\n\n.aithe-theme-graphite,\n[data-aithe-theme='graphite'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f2f8;\n --aithe-primary-2: #d6dcf0;\n --aithe-primary-3: #b0bce4;\n --aithe-primary-4: #8498d4;\n --aithe-primary-5: #6278c0;\n --aithe-primary-6: #4c60a6;\n --aithe-primary-7: #3c4e88;\n --aithe-primary-8: #2e3e6c;\n --aithe-primary-9: #223054;\n --aithe-primary-10: #182240;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eef0f4;\n --aithe-neutral-2: #d2d6de;\n --aithe-neutral-3: #b0b6c4;\n --aithe-neutral-4: #8c94a8;\n --aithe-neutral-5: #6c748c;\n --aithe-neutral-6: #525a72;\n --aithe-neutral-7: #3c445a;\n --aithe-neutral-8: #2a3044;\n --aithe-neutral-9: #1c2034;\n --aithe-neutral-10: #101424;\n --aithe-color-bg: #12141a;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(80, 90, 130, 0.14) 0%, rgba(18, 20, 26, 1) 55%);\n --aithe-color-surface: rgba(20, 22, 28, 0.84);\n --aithe-color-surface-elevated: rgba(26, 30, 38, 0.96);\n --aithe-color-surface-muted: #1c1e26;\n --aithe-color-border: rgba(150, 160, 190, 0.17);\n --aithe-color-border-strong: rgba(170, 180, 210, 0.25);\n --aithe-color-text: #e8eaf4;\n --aithe-color-text-muted: #989eb0;\n --aithe-color-text-subtle: #727a90;\n --aithe-color-overlay: rgba(4, 4, 10, 0.66);\n --aithe-color-selection: rgba(76, 96, 166, 0.22);\n --aithe-color-focus-ring: rgba(76, 96, 166, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.24);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3c445a;\n --aithe-code-doctype: #3c445a;\n --aithe-code-placeholder: #3c445a;\n}\n\n\n.aithe-theme-ink,\n[data-aithe-theme='ink'] {\n color-scheme: dark;\n --aithe-primary-1: #f2f0ff;\n --aithe-primary-2: #ddd8ff;\n --aithe-primary-3: #c0b8ff;\n --aithe-primary-4: #9e90ff;\n --aithe-primary-5: #7e6ef0;\n --aithe-primary-6: #6454d4;\n --aithe-primary-7: #5040ae;\n --aithe-primary-8: #3e308c;\n --aithe-primary-9: #30246c;\n --aithe-primary-10: #241a50;\n --aithe-success-1: #edfcf8;\n --aithe-success-2: #c9f5e8;\n --aithe-success-3: #9cecd4;\n --aithe-success-4: #6cd8b8;\n --aithe-success-5: #44c09e;\n --aithe-success-6: #2ea882;\n --aithe-success-7: #228c6c;\n --aithe-success-8: #1a7056;\n --aithe-success-9: #145a46;\n --aithe-success-10: #104838;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff0f6;\n --aithe-danger-2: #ffdae8;\n --aithe-danger-3: #ffb8d0;\n --aithe-danger-4: #ff8eb4;\n --aithe-danger-5: #f06896;\n --aithe-danger-6: #d44c7a;\n --aithe-danger-7: #b03460;\n --aithe-danger-8: #8c244c;\n --aithe-danger-9: #6e1a3a;\n --aithe-danger-10: #52122c;\n --aithe-neutral-1: #eeeef6;\n --aithe-neutral-2: #d0d0e0;\n --aithe-neutral-3: #aaaac0;\n --aithe-neutral-4: #8484a0;\n --aithe-neutral-5: #646480;\n --aithe-neutral-6: #4a4a64;\n --aithe-neutral-7: #363650;\n --aithe-neutral-8: #26263c;\n --aithe-neutral-9: #18182c;\n --aithe-neutral-10: #0c0c1c;\n --aithe-color-bg: #0e0c18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(80, 60, 140, 0.16) 0%, rgba(14, 12, 24, 1) 55%);\n --aithe-color-surface: rgba(18, 16, 28, 0.84);\n --aithe-color-surface-elevated: rgba(24, 22, 38, 0.96);\n --aithe-color-surface-muted: #16142a;\n --aithe-color-border: rgba(150, 140, 200, 0.17);\n --aithe-color-border-strong: rgba(170, 160, 220, 0.25);\n --aithe-color-text: #eae8f8;\n --aithe-color-text-muted: #9c98b8;\n --aithe-color-text-subtle: #747098;\n --aithe-color-overlay: rgba(4, 2, 10, 0.68);\n --aithe-color-selection: rgba(100, 84, 212, 0.22);\n --aithe-color-focus-ring: rgba(100, 84, 212, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #9e90ff;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #363650;\n --aithe-code-doctype: #363650;\n --aithe-code-placeholder: #363650;\n}\n\n\n.aithe-theme-midnight,\n[data-aithe-theme='midnight'] {\n color-scheme: dark;\n --aithe-primary-1: #edf2ff;\n --aithe-primary-2: #d4e0ff;\n --aithe-primary-3: #afc6ff;\n --aithe-primary-4: #84a8ff;\n --aithe-primary-5: #5c8af5;\n --aithe-primary-6: #4070e0;\n --aithe-primary-7: #3458b8;\n --aithe-primary-8: #2a4494;\n --aithe-primary-9: #223472;\n --aithe-primary-10: #1a2654;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eef0f8;\n --aithe-neutral-2: #d2d8e8;\n --aithe-neutral-3: #aeb8ce;\n --aithe-neutral-4: #8a96b2;\n --aithe-neutral-5: #6a7894;\n --aithe-neutral-6: #4e5c76;\n --aithe-neutral-7: #384460;\n --aithe-neutral-8: #26304c;\n --aithe-neutral-9: #18203a;\n --aithe-neutral-10: #0e1428;\n --aithe-color-bg: #0a0e1c;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(50, 80, 160, 0.20) 0%, rgba(10, 14, 28, 1) 55%);\n --aithe-color-surface: rgba(14, 20, 36, 0.84);\n --aithe-color-surface-elevated: rgba(18, 26, 48, 0.96);\n --aithe-color-surface-muted: #121828;\n --aithe-color-border: rgba(140, 170, 230, 0.17);\n --aithe-color-border-strong: rgba(160, 190, 245, 0.25);\n --aithe-color-text: #eaf0fc;\n --aithe-color-text-muted: #98a8c6;\n --aithe-color-text-subtle: #6e82a6;\n --aithe-color-overlay: rgba(2, 4, 12, 0.68);\n --aithe-color-selection: rgba(64, 112, 224, 0.22);\n --aithe-color-focus-ring: rgba(64, 112, 224, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #384460;\n --aithe-code-doctype: #384460;\n --aithe-code-placeholder: #384460;\n}\n\n\n.aithe-theme-navy,\n[data-aithe-theme='navy'] {\n color-scheme: dark;\n --aithe-primary-1: #ecf0ff;\n --aithe-primary-2: #d0dcff;\n --aithe-primary-3: #a8c0ff;\n --aithe-primary-4: #789ef5;\n --aithe-primary-5: #5880e0;\n --aithe-primary-6: #4066c0;\n --aithe-primary-7: #3450a0;\n --aithe-primary-8: #283e80;\n --aithe-primary-9: #1e3062;\n --aithe-primary-10: #162448;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #e8ecf8;\n --aithe-neutral-2: #c8d0e4;\n --aithe-neutral-3: #9eaac8;\n --aithe-neutral-4: #7484a8;\n --aithe-neutral-5: #566488;\n --aithe-neutral-6: #3e4c6c;\n --aithe-neutral-7: #2c3854;\n --aithe-neutral-8: #1e2840;\n --aithe-neutral-9: #141c30;\n --aithe-neutral-10: #0a1020;\n --aithe-color-bg: #080c18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(40, 70, 150, 0.18) 0%, rgba(8, 12, 24, 1) 55%);\n --aithe-color-surface: rgba(12, 16, 28, 0.84);\n --aithe-color-surface-elevated: rgba(16, 22, 40, 0.96);\n --aithe-color-surface-muted: #101628;\n --aithe-color-border: rgba(120, 150, 220, 0.17);\n --aithe-color-border-strong: rgba(140, 170, 240, 0.25);\n --aithe-color-text: #e6eefc;\n --aithe-color-text-muted: #90a0c0;\n --aithe-color-text-subtle: #6878a0;\n --aithe-color-overlay: rgba(2, 4, 10, 0.68);\n --aithe-color-selection: rgba(64, 102, 192, 0.22);\n --aithe-color-focus-ring: rgba(64, 102, 192, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #789ef5;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #2c3854;\n --aithe-code-doctype: #2c3854;\n --aithe-code-placeholder: #2c3854;\n}\n\n\n.aithe-theme-obsidian,\n[data-aithe-theme='obsidian'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f4ff;\n --aithe-primary-2: #d8e2ff;\n --aithe-primary-3: #b4c8ff;\n --aithe-primary-4: #88a8ff;\n --aithe-primary-5: #6288f0;\n --aithe-primary-6: #4c6cd4;\n --aithe-primary-7: #3c54ae;\n --aithe-primary-8: #2e408a;\n --aithe-primary-9: #223068;\n --aithe-primary-10: #18224c;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eef0f4;\n --aithe-neutral-2: #d0d4dc;\n --aithe-neutral-3: #a8aec0;\n --aithe-neutral-4: #828a9e;\n --aithe-neutral-5: #606880;\n --aithe-neutral-6: #464e64;\n --aithe-neutral-7: #323a50;\n --aithe-neutral-8: #22283c;\n --aithe-neutral-9: #161a2c;\n --aithe-neutral-10: #0c0e1a;\n --aithe-color-bg: #080a12;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(60, 70, 120, 0.14) 0%, rgba(8, 10, 18, 1) 55%);\n --aithe-color-surface: rgba(12, 14, 22, 0.86);\n --aithe-color-surface-elevated: rgba(16, 20, 32, 0.96);\n --aithe-color-surface-muted: #10121c;\n --aithe-color-border: rgba(130, 150, 200, 0.16);\n --aithe-color-border-strong: rgba(150, 170, 220, 0.24);\n --aithe-color-text: #e6eaf6;\n --aithe-color-text-muted: #9098b0;\n --aithe-color-text-subtle: #687088;\n --aithe-color-overlay: rgba(2, 2, 8, 0.70);\n --aithe-color-selection: rgba(76, 108, 212, 0.20);\n --aithe-color-focus-ring: rgba(76, 108, 212, 0.38);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.30);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.36);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.42);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.48);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.54);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #323a50;\n --aithe-code-doctype: #323a50;\n --aithe-code-placeholder: #323a50;\n}\n\n\n.aithe-theme-onyx,\n[data-aithe-theme='onyx'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f2f6;\n --aithe-primary-2: #d8dce8;\n --aithe-primary-3: #b4bcd0;\n --aithe-primary-4: #8c98b8;\n --aithe-primary-5: #6878a0;\n --aithe-primary-6: #506088;\n --aithe-primary-7: #3e4e70;\n --aithe-primary-8: #2e3e5a;\n --aithe-primary-9: #223046;\n --aithe-primary-10: #182234;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eceef2;\n --aithe-neutral-2: #ccd0d8;\n --aithe-neutral-3: #a4aab8;\n --aithe-neutral-4: #808898;\n --aithe-neutral-5: #606878;\n --aithe-neutral-6: #484e5e;\n --aithe-neutral-7: #343a48;\n --aithe-neutral-8: #242834;\n --aithe-neutral-9: #161a24;\n --aithe-neutral-10: #0a0c14;\n --aithe-color-bg: #06070a;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(50, 56, 80, 0.12) 0%, rgba(6, 7, 10, 1) 55%);\n --aithe-color-surface: rgba(10, 12, 18, 0.88);\n --aithe-color-surface-elevated: rgba(14, 16, 24, 0.96);\n --aithe-color-surface-muted: #0e1018;\n --aithe-color-border: rgba(120, 130, 170, 0.16);\n --aithe-color-border-strong: rgba(140, 150, 190, 0.24);\n --aithe-color-text: #e2e6f2;\n --aithe-color-text-muted: #8c94a8;\n --aithe-color-text-subtle: #646c80;\n --aithe-color-overlay: rgba(0, 0, 4, 0.72);\n --aithe-color-selection: rgba(80, 96, 136, 0.20);\n --aithe-color-focus-ring: rgba(80, 96, 136, 0.38);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.32);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.38);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.44);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.50);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.56);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #343a48;\n --aithe-code-doctype: #343a48;\n --aithe-code-placeholder: #343a48;\n}\n\n\n.aithe-theme-raisin,\n[data-aithe-theme='raisin'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0ff;\n --aithe-primary-2: #e0d8ff;\n --aithe-primary-3: #c4b4ff;\n --aithe-primary-4: #a48cf5;\n --aithe-primary-5: #8868e0;\n --aithe-primary-6: #6e50c0;\n --aithe-primary-7: #583ca0;\n --aithe-primary-8: #442e80;\n --aithe-primary-9: #342264;\n --aithe-primary-10: #26184a;\n --aithe-success-1: #edfcf8;\n --aithe-success-2: #c9f5e8;\n --aithe-success-3: #9cecd4;\n --aithe-success-4: #6cd8b8;\n --aithe-success-5: #44c09e;\n --aithe-success-6: #2ea882;\n --aithe-success-7: #228c6c;\n --aithe-success-8: #1a7056;\n --aithe-success-9: #145a46;\n --aithe-success-10: #104838;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff0f6;\n --aithe-danger-2: #ffdae8;\n --aithe-danger-3: #ffb8d0;\n --aithe-danger-4: #ff8eb4;\n --aithe-danger-5: #f06896;\n --aithe-danger-6: #d44c7a;\n --aithe-danger-7: #b03460;\n --aithe-danger-8: #8c244c;\n --aithe-danger-9: #6e1a3a;\n --aithe-danger-10: #52122c;\n --aithe-neutral-1: #eeeef6;\n --aithe-neutral-2: #d0cee0;\n --aithe-neutral-3: #aaa8c0;\n --aithe-neutral-4: #8680a0;\n --aithe-neutral-5: #666080;\n --aithe-neutral-6: #4e4868;\n --aithe-neutral-7: #3a3452;\n --aithe-neutral-8: #2a263e;\n --aithe-neutral-9: #1c1a2e;\n --aithe-neutral-10: #0e0c1e;\n --aithe-color-bg: #0e0a18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 50, 140, 0.18) 0%, rgba(14, 10, 24, 1) 55%);\n --aithe-color-surface: rgba(16, 12, 24, 0.84);\n --aithe-color-surface-elevated: rgba(22, 18, 34, 0.96);\n --aithe-color-surface-muted: #18142a;\n --aithe-color-border: rgba(150, 130, 200, 0.17);\n --aithe-color-border-strong: rgba(170, 150, 220, 0.25);\n --aithe-color-text: #eae4f8;\n --aithe-color-text-muted: #9c90b8;\n --aithe-color-text-subtle: #746898;\n --aithe-color-overlay: rgba(4, 2, 8, 0.68);\n --aithe-color-selection: rgba(110, 80, 192, 0.22);\n --aithe-color-focus-ring: rgba(110, 80, 192, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cf5;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3a3452;\n --aithe-code-doctype: #3a3452;\n --aithe-code-placeholder: #3a3452;\n}\n\n\n.aithe-theme-slate,\n[data-aithe-theme='slate'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f4ff;\n --aithe-primary-2: #d9e4ff;\n --aithe-primary-3: #b8ccff;\n --aithe-primary-4: #8eaaff;\n --aithe-primary-5: #6b8cf5;\n --aithe-primary-6: #5470e0;\n --aithe-primary-7: #4358b8;\n --aithe-primary-8: #364590;\n --aithe-primary-9: #2b3670;\n --aithe-primary-10: #212954;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f1f3f8;\n --aithe-neutral-2: #d8dce6;\n --aithe-neutral-3: #b8bfce;\n --aithe-neutral-4: #96a0b4;\n --aithe-neutral-5: #76829a;\n --aithe-neutral-6: #5a6680;\n --aithe-neutral-7: #424d64;\n --aithe-neutral-8: #2e374c;\n --aithe-neutral-9: #1e2536;\n --aithe-neutral-10: #111620;\n --aithe-color-bg: #121824;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(70, 90, 140, 0.18) 0%, rgba(18, 24, 36, 1) 55%);\n --aithe-color-surface: rgba(22, 30, 44, 0.84);\n --aithe-color-surface-elevated: rgba(26, 36, 54, 0.96);\n --aithe-color-surface-muted: #1a2230;\n --aithe-color-border: rgba(160, 180, 220, 0.17);\n --aithe-color-border-strong: rgba(175, 195, 235, 0.25);\n --aithe-color-text: #eef2fc;\n --aithe-color-text-muted: #a0aec6;\n --aithe-color-text-subtle: #7a88a2;\n --aithe-color-overlay: rgba(4, 8, 16, 0.66);\n --aithe-color-selection: rgba(84, 112, 224, 0.22);\n --aithe-color-focus-ring: rgba(84, 112, 224, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.22);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.28);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.34);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.40);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.46);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #4a5568;\n --aithe-code-doctype: #4a5568;\n --aithe-code-placeholder: #4a5568;\n}\n\n\n.aithe-theme-huawei,\n[data-aithe-theme='huawei'] {\n color-scheme: light;\n --aithe-primary-1: #fef2f3;\n --aithe-primary-2: #fde3e5;\n --aithe-primary-3: #fbc8cd;\n --aithe-primary-4: #f9a1a9;\n --aithe-primary-5: #f57582;\n --aithe-primary-6: #e8414f;\n --aithe-primary-7: #cf102d;\n --aithe-primary-8: #a80d24;\n --aithe-primary-9: #860e1f;\n --aithe-primary-10: #6b0e1b;\n --aithe-success-1: #effcf6;\n --aithe-success-2: #d9f5e6;\n --aithe-success-3: #b7ebcf;\n --aithe-success-4: #84d9ae;\n --aithe-success-5: #52c48a;\n --aithe-success-6: #2eae70;\n --aithe-success-7: #1f915d;\n --aithe-success-8: #1b754e;\n --aithe-success-9: #185e40;\n --aithe-success-10: #144b34;\n --aithe-warning-1: #fff8e8;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffe08c;\n --aithe-warning-4: #ffcc59;\n --aithe-warning-5: #f6b73a;\n --aithe-warning-6: #dd9621;\n --aithe-warning-7: #b97516;\n --aithe-warning-8: #955b14;\n --aithe-warning-9: #754712;\n --aithe-warning-10: #5c390f;\n --aithe-danger-1: #fff1f2;\n --aithe-danger-2: #ffe0e4;\n --aithe-danger-3: #ffc4cb;\n --aithe-danger-4: #ff9ca8;\n --aithe-danger-5: #ff7283;\n --aithe-danger-6: #f04f64;\n --aithe-danger-7: #cf3950;\n --aithe-danger-8: #ab3144;\n --aithe-danger-9: #882c3a;\n --aithe-danger-10: #6d2630;\n --aithe-neutral-1: #f5f7fa;\n --aithe-neutral-2: #e9ecf3;\n --aithe-neutral-3: #d5dae6;\n --aithe-neutral-4: #b8bfd0;\n --aithe-neutral-5: #98a0b5;\n --aithe-neutral-6: #78809a;\n --aithe-neutral-7: #59617c;\n --aithe-neutral-8: #3d4560;\n --aithe-neutral-9: #262d45;\n --aithe-neutral-10: #13182b;\n --aithe-color-bg: #faf5f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fefafa 0%, #f5eef0 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e8ea;\n --aithe-color-border: rgba(207, 16, 45, 0.15);\n --aithe-color-border-strong: rgba(207, 16, 45, 0.25);\n --aithe-color-text: #0c1222;\n --aithe-color-text-muted: #3a4560;\n --aithe-color-text-subtle: #68748f;\n --aithe-color-overlay: rgba(8, 13, 26, 0.52);\n --aithe-color-selection: rgba(207, 16, 45, 0.14);\n --aithe-color-focus-ring: rgba(207, 16, 45, 0.34);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #a626a4;\n --aithe-code-boolean: #986801;\n --aithe-code-builtin: #4078f2;\n --aithe-code-number: #986801;\n --aithe-code-string: #50a14f;\n --aithe-code-function: #4078f2;\n --aithe-code-type: #c18401;\n --aithe-code-preprocessor: #a626a4;\n --aithe-code-tag: #e45649;\n --aithe-code-attr: #986801;\n --aithe-code-key: #e45649;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #986801;\n --aithe-code-comment: #a0a1a7;\n --aithe-code-doctype: #a0a1a7;\n --aithe-code-placeholder: #a0a1a7;\n}\n\n\n.aithe-theme-tianyi,\n[data-aithe-theme='tianyi'] {\n color-scheme: light;\n --aithe-primary-1: #edf5ff;\n --aithe-primary-2: #d4e8ff;\n --aithe-primary-3: #a8d0ff;\n --aithe-primary-4: #75b2ff;\n --aithe-primary-5: #4d97ff;\n --aithe-primary-6: #2679f0;\n --aithe-primary-7: #0052cc;\n --aithe-primary-8: #0042a8;\n --aithe-primary-9: #003688;\n --aithe-primary-10: #002b6b;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f4f6fa;\n --aithe-neutral-2: #e6eaf3;\n --aithe-neutral-3: #d0d7e6;\n --aithe-neutral-4: #b1bbd0;\n --aithe-neutral-5: #8f9bb5;\n --aithe-neutral-6: #6f7c9a;\n --aithe-neutral-7: #515f7e;\n --aithe-neutral-8: #384662;\n --aithe-neutral-9: #222e47;\n --aithe-neutral-10: #111a2d;\n --aithe-color-bg: #f2f6fc;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f8fbff 0%, #ecf2fa 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4ebf6;\n --aithe-color-border: rgba(0, 82, 204, 0.16);\n --aithe-color-border-strong: rgba(0, 82, 204, 0.28);\n --aithe-color-text: #0c1324;\n --aithe-color-text-muted: #384b6a;\n --aithe-color-text-subtle: #687b9a;\n --aithe-color-overlay: rgba(6, 14, 28, 0.50);\n --aithe-color-selection: rgba(0, 82, 204, 0.16);\n --aithe-color-focus-ring: rgba(0, 82, 204, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n\n\n.aithe-theme-aliyun,\n[data-aithe-theme='aliyun'] {\n color-scheme: light;\n --aithe-primary-1: #fff7ed;\n --aithe-primary-2: #ffedd5;\n --aithe-primary-3: #ffd8a8;\n --aithe-primary-4: #ffbe78;\n --aithe-primary-5: #ffa04a;\n --aithe-primary-6: #ff8228;\n --aithe-primary-7: #ff6a00;\n --aithe-primary-8: #d65700;\n --aithe-primary-9: #ad4700;\n --aithe-primary-10: #8a3900;\n --aithe-success-1: #effcf7;\n --aithe-success-2: #d2f5e4;\n --aithe-success-3: #afead0;\n --aithe-success-4: #7fd5af;\n --aithe-success-5: #59bd92;\n --aithe-success-6: #3aa478;\n --aithe-success-7: #2d8964;\n --aithe-success-8: #266f53;\n --aithe-success-9: #215a45;\n --aithe-success-10: #1b4938;\n --aithe-warning-1: #fff8e9;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffdd90;\n --aithe-warning-4: #ffc45c;\n --aithe-warning-5: #f2aa3d;\n --aithe-warning-6: #d38b25;\n --aithe-warning-7: #af6e1b;\n --aithe-warning-8: #8e5718;\n --aithe-warning-9: #724618;\n --aithe-warning-10: #5b3815;\n --aithe-danger-1: #fff0f3;\n --aithe-danger-2: #ffdbe2;\n --aithe-danger-3: #ffbbc8;\n --aithe-danger-4: #ff8fa1;\n --aithe-danger-5: #f66a80;\n --aithe-danger-6: #de5069;\n --aithe-danger-7: #bd3f56;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7c2f3f;\n --aithe-danger-10: #632837;\n --aithe-neutral-1: #f6f7f9;\n --aithe-neutral-2: #ebedf2;\n --aithe-neutral-3: #d9dce6;\n --aithe-neutral-4: #bfc4d2;\n --aithe-neutral-5: #a2a8ba;\n --aithe-neutral-6: #848ba0;\n --aithe-neutral-7: #656d85;\n --aithe-neutral-8: #485069;\n --aithe-neutral-9: #2c344b;\n --aithe-neutral-10: #161c2e;\n --aithe-color-bg: #faf7f3;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fefbf8 0%, #f5f0ea 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0eae2;\n --aithe-color-border: rgba(255, 106, 0, 0.16);\n --aithe-color-border-strong: rgba(255, 106, 0, 0.28);\n --aithe-color-text: #0e1524;\n --aithe-color-text-muted: #3d4a64;\n --aithe-color-text-subtle: #6c7a94;\n --aithe-color-overlay: rgba(10, 15, 28, 0.50);\n --aithe-color-selection: rgba(255, 106, 0, 0.16);\n --aithe-color-focus-ring: rgba(255, 106, 0, 0.34);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n\n\n:root {\n --aithe-space-0: 0;\n --aithe-space-1: 4px;\n --aithe-space-2: 8px;\n --aithe-space-3: 12px;\n --aithe-space-4: 16px;\n --aithe-space-5: 20px;\n --aithe-space-6: 24px;\n --aithe-space-7: 32px;\n --aithe-space-8: 40px;\n --aithe-space-9: 48px;\n --aithe-space-10: 64px;\n --aithe-space-xs: var(--aithe-space-2);\n --aithe-space-sm: var(--aithe-space-3);\n --aithe-space-md: var(--aithe-space-4);\n --aithe-space-lg: var(--aithe-space-6);\n --aithe-space-xl: var(--aithe-space-8);\n --aithe-radius-sm: 6px;\n --aithe-radius-md: 10px;\n --aithe-radius-lg: 14px;\n --aithe-radius-xl: 20px;\n --aithe-radius-full: 999px;\n --aithe-container-radius-sm: 6px;\n --aithe-container-radius-md: 10px;\n --aithe-container-radius-lg: 14px;\n --aithe-container-radius-xl: 20px;\n --aithe-container-radius-full: 999px;\n --aithe-shadow-1: 0 2px 4px rgba(18, 24, 38, 0.1), 0 4px 8px rgba(18, 24, 38, 0.06);\n --aithe-shadow-2: 0 4px 8px rgba(18, 24, 38, 0.12), 0 8px 16px rgba(18, 24, 38, 0.08);\n --aithe-shadow-3: 0 6px 12px rgba(18, 24, 38, 0.14), 0 12px 24px rgba(18, 24, 38, 0.1);\n --aithe-shadow-4: 0 8px 16px rgba(18, 24, 38, 0.16), 0 16px 32px rgba(18, 24, 38, 0.12);\n --aithe-shadow-5: 0 12px 20px rgba(18, 24, 38, 0.18), 0 20px 40px rgba(18, 24, 38, 0.14);\n --aithe-shadow-glow: none;\n --aithe-shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.15);\n --aithe-shadow-blur: 0px;\n --aithe-shadow-opacity: 1;\n --aithe-shadow-border-glow: 0px;\n --aithe-font-family: 'Sora', 'IBM Plex Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;\n --aithe-font-family-mono: 'JetBrains Mono', 'SFMono-Regular', 'Consolas', monospace;\n --aithe-font-size-xs: 12px;\n --aithe-font-size-sm: 13px;\n --aithe-font-size-md: 14px;\n --aithe-font-size-lg: 16px;\n --aithe-font-size-xl: 20px;\n --aithe-font-size-2xl: 28px;\n --aithe-font-weight-regular: 400;\n --aithe-font-weight-medium: 500;\n --aithe-font-weight-semibold: 600;\n --aithe-font-weight-bold: 700;\n --aithe-line-height-tight: 1.2;\n --aithe-line-height-base: 1.5;\n --aithe-line-height-loose: 1.7;\n --aithe-z-base: 1;\n --aithe-z-dropdown: 1000;\n --aithe-z-popover: 1010;\n --aithe-z-modal: 1080;\n --aithe-z-drawer: 1090;\n --aithe-z-tooltip: 1120;\n --aithe-duration-fast: 140ms;\n --aithe-duration-base: 220ms;\n --aithe-duration-slow: 320ms;\n --aithe-ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);\n --aithe-control-height-sm: 32px;\n --aithe-control-height-md: 40px;\n --aithe-control-height-lg: 48px;\n}\n\nhtml,\nbody {\n margin: 0;\n width: 100%;\n min-height: 100%;\n background: var(--aithe-color-bg-subtle);\n color: var(--aithe-color-text);\n font-family: var(--aithe-font-family);\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n::selection {\n background: var(--aithe-color-selection);\n}\n\n";
8
+ export declare const aitheThemeText = "\n\n.aithe-theme-light,\n[data-aithe-theme='light'],\n:root {\n color-scheme: light;\n --aithe-primary-1: #f2f7ff;\n --aithe-primary-2: #e3efff;\n --aithe-primary-3: #c8deff;\n --aithe-primary-4: #9ec5ff;\n --aithe-primary-5: #74aaff;\n --aithe-primary-6: #4d8dff;\n --aithe-primary-7: #326fe1;\n --aithe-primary-8: #2859b5;\n --aithe-primary-9: #22488f;\n --aithe-primary-10: #1d3970;\n --aithe-success-1: #effcf6;\n --aithe-success-2: #d9f5e6;\n --aithe-success-3: #b7ebcf;\n --aithe-success-4: #84d9ae;\n --aithe-success-5: #52c48a;\n --aithe-success-6: #2eae70;\n --aithe-success-7: #1f915d;\n --aithe-success-8: #1b754e;\n --aithe-success-9: #185e40;\n --aithe-success-10: #144b34;\n --aithe-warning-1: #fff8e8;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffe08c;\n --aithe-warning-4: #ffcc59;\n --aithe-warning-5: #f6b73a;\n --aithe-warning-6: #dd9621;\n --aithe-warning-7: #b97516;\n --aithe-warning-8: #955b14;\n --aithe-warning-9: #754712;\n --aithe-warning-10: #5c390f;\n --aithe-danger-1: #fff1f2;\n --aithe-danger-2: #ffe0e4;\n --aithe-danger-3: #ffc4cb;\n --aithe-danger-4: #ff9ca8;\n --aithe-danger-5: #ff7283;\n --aithe-danger-6: #f04f64;\n --aithe-danger-7: #cf3950;\n --aithe-danger-8: #ab3144;\n --aithe-danger-9: #882c3a;\n --aithe-danger-10: #6d2630;\n --aithe-neutral-1: #f7f8fb;\n --aithe-neutral-2: #eef1f6;\n --aithe-neutral-3: #e1e6ef;\n --aithe-neutral-4: #c9d1df;\n --aithe-neutral-5: #aeb8cb;\n --aithe-neutral-6: #8f9ab0;\n --aithe-neutral-7: #6d788f;\n --aithe-neutral-8: #4d576b;\n --aithe-neutral-9: #2f3747;\n --aithe-neutral-10: #151a22;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #f2f5fa;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f7faff 0%, #eef2f8 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.85);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e8ecf4;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(76, 94, 132, 0.20);\n --aithe-color-border-strong: rgba(52, 66, 96, 0.30);\n --aithe-color-text: #0e1628;\n --aithe-color-text-muted: #3d4a66;\n --aithe-color-text-subtle: #6a7a94;\n --aithe-color-overlay: rgba(11, 17, 29, 0.54);\n --aithe-color-selection: rgba(77, 141, 255, 0.18);\n --aithe-color-focus-ring: rgba(77, 141, 255, 0.38);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #a626a4;\n --aithe-code-boolean: #986801;\n --aithe-code-builtin: #4078f2;\n --aithe-code-number: #986801;\n --aithe-code-string: #50a14f;\n --aithe-code-function: #4078f2;\n --aithe-code-type: #c18401;\n --aithe-code-preprocessor: #a626a4;\n --aithe-code-tag: #e45649;\n --aithe-code-attr: #986801;\n --aithe-code-key: #e45649;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #986801;\n --aithe-code-comment: #a0a1a7;\n --aithe-code-doctype: #a0a1a7;\n --aithe-code-placeholder: #a0a1a7;\n}\n\n\n.aithe-theme-dark,\n[data-aithe-theme='dark'] {\n color-scheme: dark;\n --aithe-primary-1: #edf4ff;\n --aithe-primary-2: #d7e5ff;\n --aithe-primary-3: #b8d2ff;\n --aithe-primary-4: #8ab3ff;\n --aithe-primary-5: #6092ff;\n --aithe-primary-6: #4a7dff;\n --aithe-primary-7: #3d68e0;\n --aithe-primary-8: #3555b6;\n --aithe-primary-9: #2f478f;\n --aithe-primary-10: #28396f;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f5f7fb;\n --aithe-neutral-2: #dfe5ef;\n --aithe-neutral-3: #c7d0de;\n --aithe-neutral-4: #aab6c9;\n --aithe-neutral-5: #8997b0;\n --aithe-neutral-6: #6d7a92;\n --aithe-neutral-7: #536077;\n --aithe-neutral-8: #3b465a;\n --aithe-neutral-9: #242d3d;\n --aithe-neutral-10: #121925;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #0c1018;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(55, 87, 151, 0.22) 0%, rgba(12, 16, 24, 1) 58%);\n --aithe-color-surface: rgba(17, 24, 39, 0.82);\n --aithe-color-surface-elevated: rgba(19, 27, 44, 0.96);\n --aithe-color-surface-muted: #151c2b;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(172, 188, 217, 0.16);\n --aithe-color-border-strong: rgba(183, 198, 228, 0.24);\n --aithe-color-text: #f0f5ff;\n --aithe-color-text-muted: #a8b5cc;\n --aithe-color-text-subtle: #8894ab;\n --aithe-color-overlay: rgba(1, 4, 11, 0.68);\n --aithe-color-selection: rgba(116, 170, 255, 0.24);\n --aithe-color-focus-ring: rgba(116, 170, 255, 0.42);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.20);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.26);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.32);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.38);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.44);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #e5c07b;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #5c6370;\n --aithe-code-doctype: #5c6370;\n --aithe-code-placeholder: #5c6370;\n}\n\n\n.aithe-theme-gray,\n[data-aithe-theme='gray'] {\n color-scheme: light;\n --aithe-primary-1: #f4f6fb;\n --aithe-primary-2: #e8edf6;\n --aithe-primary-3: #d4dce9;\n --aithe-primary-4: #b8c3d8;\n --aithe-primary-5: #96a4c0;\n --aithe-primary-6: #7485a4;\n --aithe-primary-7: #5e708d;\n --aithe-primary-8: #4d5d76;\n --aithe-primary-9: #404d61;\n --aithe-primary-10: #313a48;\n --aithe-success-1: #eff7f3;\n --aithe-success-2: #dcefe4;\n --aithe-success-3: #badfc9;\n --aithe-success-4: #97cfac;\n --aithe-success-5: #73bd90;\n --aithe-success-6: #5aa277;\n --aithe-success-7: #4a8461;\n --aithe-success-8: #3d6950;\n --aithe-success-9: #335543;\n --aithe-success-10: #294437;\n --aithe-warning-1: #f9f4ea;\n --aithe-warning-2: #f3e8cf;\n --aithe-warning-3: #e8d3a3;\n --aithe-warning-4: #dbbb79;\n --aithe-warning-5: #c7a05b;\n --aithe-warning-6: #ab8442;\n --aithe-warning-7: #8d6a33;\n --aithe-warning-8: #72532a;\n --aithe-warning-9: #5b4324;\n --aithe-warning-10: #49371f;\n --aithe-danger-1: #faf1f2;\n --aithe-danger-2: #f2dfe2;\n --aithe-danger-3: #e8c3c9;\n --aithe-danger-4: #dba0a9;\n --aithe-danger-5: #c97d88;\n --aithe-danger-6: #b0626d;\n --aithe-danger-7: #924f59;\n --aithe-danger-8: #764149;\n --aithe-danger-9: #60363d;\n --aithe-danger-10: #4d2c31;\n --aithe-neutral-1: #fafbfc;\n --aithe-neutral-2: #f0f2f5;\n --aithe-neutral-3: #dfe4ea;\n --aithe-neutral-4: #c8d0db;\n --aithe-neutral-5: #adb7c6;\n --aithe-neutral-6: #8f99aa;\n --aithe-neutral-7: #717b8d;\n --aithe-neutral-8: #566070;\n --aithe-neutral-9: #3d4654;\n --aithe-neutral-10: #252d36;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #f1f3f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f6f8fa 0%, #edf0f4 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.84);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.96);\n --aithe-color-surface-muted: #e8ecf2;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(76, 84, 98, 0.18);\n --aithe-color-border-strong: rgba(55, 62, 72, 0.28);\n --aithe-color-text: #1a202c;\n --aithe-color-text-muted: #4a5468;\n --aithe-color-text-subtle: #788298;\n --aithe-color-overlay: rgba(28, 31, 37, 0.48);\n --aithe-color-selection: rgba(116, 133, 164, 0.20);\n --aithe-color-focus-ring: rgba(116, 133, 164, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #6b7280;\n --aithe-code-boolean: #78716c;\n --aithe-code-builtin: #64748b;\n --aithe-code-number: #78716c;\n --aithe-code-string: #4b5563;\n --aithe-code-function: #64748b;\n --aithe-code-type: #57534e;\n --aithe-code-preprocessor: #6b7280;\n --aithe-code-tag: #6b7280;\n --aithe-code-attr: #78716c;\n --aithe-code-key: #6b7280;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #78716c;\n --aithe-code-comment: #788298;\n --aithe-code-doctype: #788298;\n --aithe-code-placeholder: #788298;\n}\n\n\n.aithe-theme-blue,\n[data-aithe-theme='blue'] {\n color-scheme: light;\n --aithe-primary-1: #eaf3ff;\n --aithe-primary-2: #d2e4ff;\n --aithe-primary-3: #aacbff;\n --aithe-primary-4: #79acff;\n --aithe-primary-5: #518fff;\n --aithe-primary-6: #2c73f6;\n --aithe-primary-7: #245dd0;\n --aithe-primary-8: #234ca6;\n --aithe-primary-9: #213f81;\n --aithe-primary-10: #1f3365;\n --aithe-success-1: #effcf7;\n --aithe-success-2: #d2f5e4;\n --aithe-success-3: #afead0;\n --aithe-success-4: #7fd5af;\n --aithe-success-5: #59bd92;\n --aithe-success-6: #3aa478;\n --aithe-success-7: #2d8964;\n --aithe-success-8: #266f53;\n --aithe-success-9: #215a45;\n --aithe-success-10: #1b4938;\n --aithe-warning-1: #fff8e9;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffdd90;\n --aithe-warning-4: #ffc45c;\n --aithe-warning-5: #f2aa3d;\n --aithe-warning-6: #d38b25;\n --aithe-warning-7: #af6e1b;\n --aithe-warning-8: #8e5718;\n --aithe-warning-9: #724618;\n --aithe-warning-10: #5b3815;\n --aithe-danger-1: #fff0f3;\n --aithe-danger-2: #ffdbe2;\n --aithe-danger-3: #ffbbc8;\n --aithe-danger-4: #ff8fa1;\n --aithe-danger-5: #f66a80;\n --aithe-danger-6: #de5069;\n --aithe-danger-7: #bd3f56;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7c2f3f;\n --aithe-danger-10: #632837;\n --aithe-neutral-1: #f4f7fc;\n --aithe-neutral-2: #e8edf6;\n --aithe-neutral-3: #d3dcf0;\n --aithe-neutral-4: #b5c3e2;\n --aithe-neutral-5: #95a5cf;\n --aithe-neutral-6: #7688b8;\n --aithe-neutral-7: #5a6d9e;\n --aithe-neutral-8: #425580;\n --aithe-neutral-9: #2c3d5e;\n --aithe-neutral-10: #1a2740;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #eef3fc;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f4f9ff 0%, #e6edf8 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e0e8f6;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(44, 115, 246, 0.18);\n --aithe-color-border-strong: rgba(44, 115, 246, 0.30);\n --aithe-color-text: #0e1628;\n --aithe-color-text-muted: #3a4e72;\n --aithe-color-text-subtle: #6a7e9e;\n --aithe-color-overlay: rgba(9, 17, 31, 0.48);\n --aithe-color-selection: rgba(44, 115, 246, 0.18);\n --aithe-color-focus-ring: rgba(44, 115, 246, 0.38);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n\n\n.aithe-theme-festive,\n[data-aithe-theme='festive'] {\n color-scheme: light;\n --aithe-primary-1: #fff5f5;\n --aithe-primary-2: #ffe8e6;\n --aithe-primary-3: #ffd4cf;\n --aithe-primary-4: #ffb3aa;\n --aithe-primary-5: #ff8c80;\n --aithe-primary-6: #f5313d;\n --aithe-primary-7: #d91a2a;\n --aithe-primary-8: #b51020;\n --aithe-primary-9: #8e0a18;\n --aithe-primary-10: #660612;\n --aithe-success-1: #f4fce8;\n --aithe-success-2: #e2f5c8;\n --aithe-success-3: #c5eca0;\n --aithe-success-4: #9ede6a;\n --aithe-success-5: #7acd42;\n --aithe-success-6: #5cb32a;\n --aithe-success-7: #46941e;\n --aithe-success-8: #367618;\n --aithe-success-9: #2a5c14;\n --aithe-success-10: #1f4410;\n --aithe-warning-1: #fffbf0;\n --aithe-warning-2: #fff1cc;\n --aithe-warning-3: #ffe4a0;\n --aithe-warning-4: #ffd470;\n --aithe-warning-5: #f5c242;\n --aithe-warning-6: #d4a017;\n --aithe-warning-7: #b8860b;\n --aithe-warning-8: #8c6d0f;\n --aithe-warning-9: #6b4f0a;\n --aithe-warning-10: #493506;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffccc7;\n --aithe-danger-3: #ffa39e;\n --aithe-danger-4: #ff7875;\n --aithe-danger-5: #ff4d4f;\n --aithe-danger-6: #d91a2a;\n --aithe-danger-7: #b51020;\n --aithe-danger-8: #8e0a18;\n --aithe-danger-9: #660612;\n --aithe-danger-10: #44040c;\n --aithe-neutral-1: #fdfbfa;\n --aithe-neutral-2: #f8f3f1;\n --aithe-neutral-3: #efe6e2;\n --aithe-neutral-4: #ddd0c8;\n --aithe-neutral-5: #c4b2a6;\n --aithe-neutral-6: #a89486;\n --aithe-neutral-7: #8a766a;\n --aithe-neutral-8: #665850;\n --aithe-neutral-9: #423a36;\n --aithe-neutral-10: #221e1c;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #fef8f5;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fffbf9 0%, #fef3ed 100%);\n --aithe-color-surface: rgba(255, 253, 251, 0.90);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f8ede6;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(180, 80, 50, 0.16);\n --aithe-color-border-strong: rgba(160, 60, 35, 0.26);\n --aithe-color-text: #2c1014;\n --aithe-color-text-muted: #6e3a3a;\n --aithe-color-text-subtle: #9a6e68;\n --aithe-color-overlay: rgba(36, 8, 8, 0.48);\n --aithe-color-selection: rgba(245, 49, 61, 0.14);\n --aithe-color-focus-ring: rgba(245, 49, 61, 0.34);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #9333ea;\n --aithe-code-boolean: #c2410c;\n --aithe-code-builtin: #dc2626;\n --aithe-code-number: #c2410c;\n --aithe-code-string: #16a34a;\n --aithe-code-function: #dc2626;\n --aithe-code-type: #b45309;\n --aithe-code-preprocessor: #9333ea;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #c2410c;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #6a5acd;\n --aithe-code-entity: #c2410c;\n --aithe-code-comment: #a8a29e;\n --aithe-code-doctype: #a8a29e;\n --aithe-code-placeholder: #a8a29e;\n}\n\n\n.aithe-theme-orange,\n[data-aithe-theme='orange'] {\n color-scheme: light;\n --aithe-primary-1: #fff7e6;\n --aithe-primary-2: #ffe8c1;\n --aithe-primary-3: #ffd591;\n --aithe-primary-4: #ffba5c;\n --aithe-primary-5: #ff9c2e;\n --aithe-primary-6: #e87a18;\n --aithe-primary-7: #c45e0a;\n --aithe-primary-8: #9e4808;\n --aithe-primary-9: #7a3606;\n --aithe-primary-10: #562504;\n --aithe-success-1: #f0faf2;\n --aithe-success-2: #d8f0dc;\n --aithe-success-3: #b3e2bb;\n --aithe-success-4: #7dce8c;\n --aithe-success-5: #4db866;\n --aithe-success-6: #2f9e4a;\n --aithe-success-7: #1f8138;\n --aithe-success-8: #18652e;\n --aithe-success-9: #124e24;\n --aithe-success-10: #0c381a;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #faf9f7;\n --aithe-neutral-2: #f2efeb;\n --aithe-neutral-3: #e6e0d8;\n --aithe-neutral-4: #d0c7ba;\n --aithe-neutral-5: #b3a794;\n --aithe-neutral-6: #948774;\n --aithe-neutral-7: #746a5c;\n --aithe-neutral-8: #544c42;\n --aithe-neutral-9: #36302a;\n --aithe-neutral-10: #1c1814;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #faf2e8;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fef7ee 0%, #f5ecde 100%);\n --aithe-color-surface: rgba(255, 252, 248, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e6d8;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(160, 110, 50, 0.18);\n --aithe-color-border-strong: rgba(140, 85, 30, 0.28);\n --aithe-color-text: #261a0e;\n --aithe-color-text-muted: #62482e;\n --aithe-color-text-subtle: #927856;\n --aithe-color-overlay: rgba(30, 18, 5, 0.48);\n --aithe-color-selection: rgba(232, 122, 24, 0.16);\n --aithe-color-focus-ring: rgba(232, 122, 24, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #9333ea;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #c2410c;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #c2410c;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #9333ea;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #a8a29e;\n --aithe-code-doctype: #a8a29e;\n --aithe-code-placeholder: #a8a29e;\n}\n\n\n.aithe-theme-purple,\n[data-aithe-theme='purple'] {\n color-scheme: light;\n --aithe-primary-1: #f5f0ff;\n --aithe-primary-2: #e8dbff;\n --aithe-primary-3: #d3bfff;\n --aithe-primary-4: #b899ff;\n --aithe-primary-5: #9b6ff5;\n --aithe-primary-6: #7c4de0;\n --aithe-primary-7: #6334c0;\n --aithe-primary-8: #4e259e;\n --aithe-primary-9: #3b1a7a;\n --aithe-primary-10: #281056;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #f8f7fa;\n --aithe-neutral-2: #eeeef4;\n --aithe-neutral-3: #dddde8;\n --aithe-neutral-4: #c4c3d4;\n --aithe-neutral-5: #a8a6bc;\n --aithe-neutral-6: #8a88a0;\n --aithe-neutral-7: #6c6a82;\n --aithe-neutral-8: #504e64;\n --aithe-neutral-9: #343246;\n --aithe-neutral-10: #1a1926;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #eeeaf6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f5f0fc 0%, #e6e0f2 100%);\n --aithe-color-surface: rgba(252, 250, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4def0;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(100, 70, 160, 0.18);\n --aithe-color-border-strong: rgba(80, 50, 140, 0.28);\n --aithe-color-text: #1a0e2e;\n --aithe-color-text-muted: #4a306e;\n --aithe-color-text-subtle: #7a609e;\n --aithe-color-overlay: rgba(18, 10, 36, 0.48);\n --aithe-color-selection: rgba(124, 77, 224, 0.16);\n --aithe-color-focus-ring: rgba(124, 77, 224, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #6d28d9;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #6d28d9;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be185d;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be185d;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #8b8aa0;\n --aithe-code-doctype: #8b8aa0;\n --aithe-code-placeholder: #8b8aa0;\n}\n\n\n.aithe-theme-pink,\n[data-aithe-theme='pink'] {\n color-scheme: light;\n --aithe-primary-1: #fff0f6;\n --aithe-primary-2: #ffdce8;\n --aithe-primary-3: #ffc0d6;\n --aithe-primary-4: #ff9ebe;\n --aithe-primary-5: #f574a8;\n --aithe-primary-6: #e04d8a;\n --aithe-primary-7: #c03070;\n --aithe-primary-8: #9e1e5a;\n --aithe-primary-9: #7a1246;\n --aithe-primary-10: #560a32;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #faf8f9;\n --aithe-neutral-2: #f2eef0;\n --aithe-neutral-3: #e4dce0;\n --aithe-neutral-4: #cec0c8;\n --aithe-neutral-5: #b0a0aa;\n --aithe-neutral-6: #92828e;\n --aithe-neutral-7: #746474;\n --aithe-neutral-8: #564858;\n --aithe-neutral-9: #382e3a;\n --aithe-neutral-10: #1c161e;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #faf0f4;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fef6f9 0%, #f5e8ef 100%);\n --aithe-color-surface: rgba(255, 250, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e2ea;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(160, 60, 100, 0.18);\n --aithe-color-border-strong: rgba(140, 40, 80, 0.28);\n --aithe-color-text: #2a0e1c;\n --aithe-color-text-muted: #643052;\n --aithe-color-text-subtle: #946282;\n --aithe-color-overlay: rgba(30, 10, 20, 0.48);\n --aithe-color-selection: rgba(224, 77, 138, 0.16);\n --aithe-color-focus-ring: rgba(224, 77, 138, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #db2777;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #db2777;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #92828e;\n --aithe-code-doctype: #92828e;\n --aithe-code-placeholder: #92828e;\n}\n\n\n.aithe-theme-teal,\n[data-aithe-theme='teal'] {\n color-scheme: light;\n --aithe-primary-1: #e6fffb;\n --aithe-primary-2: #b5f5ec;\n --aithe-primary-3: #87e8de;\n --aithe-primary-4: #5cdbd3;\n --aithe-primary-5: #36cfc9;\n --aithe-primary-6: #13a8a8;\n --aithe-primary-7: #088a8a;\n --aithe-primary-8: #006d6d;\n --aithe-primary-9: #005252;\n --aithe-primary-10: #003a3a;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f7faf9;\n --aithe-neutral-2: #ecf2f0;\n --aithe-neutral-3: #d8e6e2;\n --aithe-neutral-4: #bad0ca;\n --aithe-neutral-5: #9ab4ac;\n --aithe-neutral-6: #7c968e;\n --aithe-neutral-7: #5e7872;\n --aithe-neutral-8: #425a56;\n --aithe-neutral-9: #2a3e3a;\n --aithe-neutral-10: #162624;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #ecf6f3;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f0faf8 0%, #e4f2ee 100%);\n --aithe-color-surface: rgba(248, 254, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #dceee8;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(40, 120, 110, 0.18);\n --aithe-color-border-strong: rgba(30, 100, 90, 0.28);\n --aithe-color-text: #0a2622;\n --aithe-color-text-muted: #265a52;\n --aithe-color-text-subtle: #568a82;\n --aithe-color-overlay: rgba(5, 24, 22, 0.48);\n --aithe-color-selection: rgba(19, 168, 168, 0.16);\n --aithe-color-focus-ring: rgba(19, 168, 168, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #0d9488;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #0d9488;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #00897b;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #5e7872;\n --aithe-code-doctype: #5e7872;\n --aithe-code-placeholder: #5e7872;\n}\n\n\n.aithe-theme-indigo,\n[data-aithe-theme='indigo'] {\n color-scheme: light;\n --aithe-primary-1: #f0f0ff;\n --aithe-primary-2: #ddd8ff;\n --aithe-primary-3: #c0b8ff;\n --aithe-primary-4: #9e90ff;\n --aithe-primary-5: #7a68f0;\n --aithe-primary-6: #5c48d6;\n --aithe-primary-7: #4634b0;\n --aithe-primary-8: #34268a;\n --aithe-primary-9: #261a66;\n --aithe-primary-10: #1a1048;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #f7f7fa;\n --aithe-neutral-2: #ededf2;\n --aithe-neutral-3: #d8d8e4;\n --aithe-neutral-4: #bcbcd0;\n --aithe-neutral-5: #9e9eb6;\n --aithe-neutral-6: #80809c;\n --aithe-neutral-7: #626280;\n --aithe-neutral-8: #484862;\n --aithe-neutral-9: #303044;\n --aithe-neutral-10: #18182a;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #f0eef8;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f6f4fc 0%, #e8e6f4 100%);\n --aithe-color-surface: rgba(250, 249, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e2e0f0;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(70, 50, 160, 0.18);\n --aithe-color-border-strong: rgba(55, 35, 140, 0.28);\n --aithe-color-text: #120e2a;\n --aithe-color-text-muted: #382e68;\n --aithe-color-text-subtle: #685ea0;\n --aithe-color-overlay: rgba(10, 6, 30, 0.48);\n --aithe-color-selection: rgba(92, 72, 214, 0.16);\n --aithe-color-focus-ring: rgba(92, 72, 214, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #4f46e5;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #4f46e5;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be185d;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be185d;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #80809c;\n --aithe-code-doctype: #80809c;\n --aithe-code-placeholder: #80809c;\n}\n\n\n.aithe-theme-cyan,\n[data-aithe-theme='cyan'] {\n color-scheme: light;\n --aithe-primary-1: #e6fffe;\n --aithe-primary-2: #b5f5f2;\n --aithe-primary-3: #87e8e4;\n --aithe-primary-4: #5cdbd8;\n --aithe-primary-5: #36cfc9;\n --aithe-primary-6: #0ebfc7;\n --aithe-primary-7: #009da5;\n --aithe-primary-8: #007a82;\n --aithe-primary-9: #005a62;\n --aithe-primary-10: #003e44;\n --aithe-success-1: #edfaf6;\n --aithe-success-2: #cdf5e8;\n --aithe-success-3: #a0ebd0;\n --aithe-success-4: #6cdbb2;\n --aithe-success-5: #40c894;\n --aithe-success-6: #26ae78;\n --aithe-success-7: #1d8f62;\n --aithe-success-8: #19724f;\n --aithe-success-9: #165b40;\n --aithe-success-10: #114733;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff0f2;\n --aithe-danger-2: #ffdbdf;\n --aithe-danger-3: #ffbac2;\n --aithe-danger-4: #ff929e;\n --aithe-danger-5: #f06a7a;\n --aithe-danger-6: #d44c5e;\n --aithe-danger-7: #b03446;\n --aithe-danger-8: #8c2436;\n --aithe-danger-9: #6a1a2a;\n --aithe-danger-10: #4a101e;\n --aithe-neutral-1: #f6fafb;\n --aithe-neutral-2: #eaf2f4;\n --aithe-neutral-3: #d4e4e8;\n --aithe-neutral-4: #b4ccd4;\n --aithe-neutral-5: #92b0ba;\n --aithe-neutral-6: #74949e;\n --aithe-neutral-7: #587882;\n --aithe-neutral-8: #3e5c66;\n --aithe-neutral-9: #284048;\n --aithe-neutral-10: #14282e;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #ecf7f8;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f2fbfc 0%, #e4f2f4 100%);\n --aithe-color-surface: rgba(248, 254, 255, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #d8edf0;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(30, 130, 150, 0.18);\n --aithe-color-border-strong: rgba(20, 110, 130, 0.28);\n --aithe-color-text: #0a1e24;\n --aithe-color-text-muted: #26525e;\n --aithe-color-text-subtle: #56828e;\n --aithe-color-overlay: rgba(4, 20, 24, 0.48);\n --aithe-color-selection: rgba(14, 191, 199, 0.16);\n --aithe-color-focus-ring: rgba(14, 191, 199, 0.36);\n --aithe-color-text-on-primary: #1a1a2e;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #0891b2;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #0891b2;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #0097a7;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #587882;\n --aithe-code-doctype: #587882;\n --aithe-code-placeholder: #587882;\n}\n\n\n.aithe-theme-amber,\n[data-aithe-theme='amber'] {\n color-scheme: light;\n --aithe-primary-1: #fffbe6;\n --aithe-primary-2: #fff3c4;\n --aithe-primary-3: #ffe78a;\n --aithe-primary-4: #ffd84d;\n --aithe-primary-5: #f0c020;\n --aithe-primary-6: #d4a010;\n --aithe-primary-7: #b08008;\n --aithe-primary-8: #8c6206;\n --aithe-primary-9: #6a4a04;\n --aithe-primary-10: #483202;\n --aithe-success-1: #f2faf1;\n --aithe-success-2: #daf0d6;\n --aithe-success-3: #b6e0ae;\n --aithe-success-4: #84cc78;\n --aithe-success-5: #5ab84e;\n --aithe-success-6: #3a9e32;\n --aithe-success-7: #2c8028;\n --aithe-success-8: #236421;\n --aithe-success-9: #1b4c1a;\n --aithe-success-10: #143613;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #faf9f5;\n --aithe-neutral-2: #f2efe6;\n --aithe-neutral-3: #e4ded2;\n --aithe-neutral-4: #cec4b2;\n --aithe-neutral-5: #b0a48e;\n --aithe-neutral-6: #928872;\n --aithe-neutral-7: #746c5c;\n --aithe-neutral-8: #565044;\n --aithe-neutral-9: #38342c;\n --aithe-neutral-10: #1c1a14;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #fdfaf2;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fffdf6 0%, #faf4e6 100%);\n --aithe-color-surface: rgba(255, 254, 248, 0.86);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f2ead8;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(140, 100, 30, 0.18);\n --aithe-color-border-strong: rgba(120, 80, 20, 0.28);\n --aithe-color-text: #2a2210;\n --aithe-color-text-muted: #6e5a2e;\n --aithe-color-text-subtle: #9e8a5a;\n --aithe-color-overlay: rgba(24, 18, 4, 0.48);\n --aithe-color-selection: rgba(212, 160, 16, 0.16);\n --aithe-color-focus-ring: rgba(212, 160, 16, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #92400e;\n --aithe-code-builtin: #b45309;\n --aithe-code-number: #92400e;\n --aithe-code-string: #15803d;\n --aithe-code-function: #b45309;\n --aithe-code-type: #78350f;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #92400e;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #92400e;\n --aithe-code-comment: #746c5c;\n --aithe-code-doctype: #746c5c;\n --aithe-code-placeholder: #746c5c;\n}\n\n\n.aithe-theme-charcoal,\n[data-aithe-theme='charcoal'] {\n color-scheme: dark;\n --aithe-primary-1: #f2f0ff;\n --aithe-primary-2: #ddd8ff;\n --aithe-primary-3: #c0b8ff;\n --aithe-primary-4: #9e90ff;\n --aithe-primary-5: #7e6ef0;\n --aithe-primary-6: #6454d4;\n --aithe-primary-7: #5040ae;\n --aithe-primary-8: #3e308c;\n --aithe-primary-9: #30246c;\n --aithe-primary-10: #241a50;\n --aithe-success-1: #f0fcee;\n --aithe-success-2: #d2f5cc;\n --aithe-success-3: #aeeaa0;\n --aithe-success-4: #80da6e;\n --aithe-success-5: #5ac648;\n --aithe-success-6: #3eae30;\n --aithe-success-7: #2e9024;\n --aithe-success-8: #22721c;\n --aithe-success-9: #1a5a16;\n --aithe-success-10: #144610;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #fff0c4;\n --aithe-warning-3: #ffe08e;\n --aithe-warning-4: #ffcc5a;\n --aithe-warning-5: #f0b43e;\n --aithe-warning-6: #d09426;\n --aithe-warning-7: #ac761a;\n --aithe-warning-8: #8a5c16;\n --aithe-warning-9: #6e4a14;\n --aithe-warning-10: #583810;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f0eeec;\n --aithe-neutral-2: #d6d2ce;\n --aithe-neutral-3: #b4aea8;\n --aithe-neutral-4: #928a82;\n --aithe-neutral-5: #746c64;\n --aithe-neutral-6: #5a544c;\n --aithe-neutral-7: #423e38;\n --aithe-neutral-8: #302c28;\n --aithe-neutral-9: #201e1a;\n --aithe-neutral-10: #121110;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #181614;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(100, 80, 60, 0.16) 0%, rgba(24, 22, 20, 1) 55%);\n --aithe-color-surface: rgba(28, 26, 24, 0.84);\n --aithe-color-surface-elevated: rgba(36, 34, 30, 0.96);\n --aithe-color-surface-muted: #222018;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(180, 160, 140, 0.17);\n --aithe-color-border-strong: rgba(200, 180, 160, 0.25);\n --aithe-color-text: #f0ece8;\n --aithe-color-text-muted: #a8a096;\n --aithe-color-text-subtle: #847c74;\n --aithe-color-overlay: rgba(8, 6, 4, 0.66);\n --aithe-color-selection: rgba(100, 84, 212, 0.22);\n --aithe-color-focus-ring: rgba(100, 84, 212, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.24);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #e5c07b;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #5a544c;\n --aithe-code-doctype: #5a544c;\n --aithe-code-placeholder: #5a544c;\n}\n\n\n.aithe-theme-ebony,\n[data-aithe-theme='ebony'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0f8;\n --aithe-primary-2: #e0d8f0;\n --aithe-primary-3: #c4b4e0;\n --aithe-primary-4: #a48cc8;\n --aithe-primary-5: #8468b0;\n --aithe-primary-6: #6a5094;\n --aithe-primary-7: #544078;\n --aithe-primary-8: #403260;\n --aithe-primary-9: #30264a;\n --aithe-primary-10: #221c38;\n --aithe-success-1: #f0fcee;\n --aithe-success-2: #d2f5cc;\n --aithe-success-3: #aeeaa0;\n --aithe-success-4: #80da6e;\n --aithe-success-5: #5ac648;\n --aithe-success-6: #3eae30;\n --aithe-success-7: #2e9024;\n --aithe-success-8: #22721c;\n --aithe-success-9: #1a5a16;\n --aithe-success-10: #144610;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #fff0c4;\n --aithe-warning-3: #ffe08e;\n --aithe-warning-4: #ffcc5a;\n --aithe-warning-5: #f0b43e;\n --aithe-warning-6: #d09426;\n --aithe-warning-7: #ac761a;\n --aithe-warning-8: #8a5c16;\n --aithe-warning-9: #6e4a14;\n --aithe-warning-10: #583810;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f0ece8;\n --aithe-neutral-2: #d4ccc4;\n --aithe-neutral-3: #b0a498;\n --aithe-neutral-4: #8c7e72;\n --aithe-neutral-5: #6e6258;\n --aithe-neutral-6: #544c44;\n --aithe-neutral-7: #3e3832;\n --aithe-neutral-8: #2c2822;\n --aithe-neutral-9: #1c1a16;\n --aithe-neutral-10: #0e0c0a;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #0c0a08;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 60, 100, 0.14) 0%, rgba(12, 10, 8, 1) 55%);\n --aithe-color-surface: rgba(16, 14, 12, 0.86);\n --aithe-color-surface-elevated: rgba(22, 20, 18, 0.96);\n --aithe-color-surface-muted: #181614;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(160, 140, 130, 0.17);\n --aithe-color-border-strong: rgba(180, 160, 150, 0.25);\n --aithe-color-text: #ece6e0;\n --aithe-color-text-muted: #a09080;\n --aithe-color-text-subtle: #786c60;\n --aithe-color-overlay: rgba(4, 2, 0, 0.70);\n --aithe-color-selection: rgba(106, 80, 148, 0.20);\n --aithe-color-focus-ring: rgba(106, 80, 148, 0.38);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.28);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.34);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.40);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.46);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.52);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cc8;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3e3832;\n --aithe-code-doctype: #3e3832;\n --aithe-code-placeholder: #3e3832;\n}\n\n\n.aithe-theme-graphite,\n[data-aithe-theme='graphite'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f2f8;\n --aithe-primary-2: #d6dcf0;\n --aithe-primary-3: #b0bce4;\n --aithe-primary-4: #8498d4;\n --aithe-primary-5: #6278c0;\n --aithe-primary-6: #4c60a6;\n --aithe-primary-7: #3c4e88;\n --aithe-primary-8: #2e3e6c;\n --aithe-primary-9: #223054;\n --aithe-primary-10: #182240;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eef0f4;\n --aithe-neutral-2: #d2d6de;\n --aithe-neutral-3: #b0b6c4;\n --aithe-neutral-4: #8c94a8;\n --aithe-neutral-5: #6c748c;\n --aithe-neutral-6: #525a72;\n --aithe-neutral-7: #3c445a;\n --aithe-neutral-8: #2a3044;\n --aithe-neutral-9: #1c2034;\n --aithe-neutral-10: #101424;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #12141a;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(80, 90, 130, 0.14) 0%, rgba(18, 20, 26, 1) 55%);\n --aithe-color-surface: rgba(20, 22, 28, 0.84);\n --aithe-color-surface-elevated: rgba(26, 30, 38, 0.96);\n --aithe-color-surface-muted: #1c1e26;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(150, 160, 190, 0.17);\n --aithe-color-border-strong: rgba(170, 180, 210, 0.25);\n --aithe-color-text: #e8eaf4;\n --aithe-color-text-muted: #989eb0;\n --aithe-color-text-subtle: #727a90;\n --aithe-color-overlay: rgba(4, 4, 10, 0.66);\n --aithe-color-selection: rgba(76, 96, 166, 0.22);\n --aithe-color-focus-ring: rgba(76, 96, 166, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.24);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3c445a;\n --aithe-code-doctype: #3c445a;\n --aithe-code-placeholder: #3c445a;\n}\n\n\n.aithe-theme-ink,\n[data-aithe-theme='ink'] {\n color-scheme: dark;\n --aithe-primary-1: #f2f0ff;\n --aithe-primary-2: #ddd8ff;\n --aithe-primary-3: #c0b8ff;\n --aithe-primary-4: #9e90ff;\n --aithe-primary-5: #7e6ef0;\n --aithe-primary-6: #6454d4;\n --aithe-primary-7: #5040ae;\n --aithe-primary-8: #3e308c;\n --aithe-primary-9: #30246c;\n --aithe-primary-10: #241a50;\n --aithe-success-1: #edfcf8;\n --aithe-success-2: #c9f5e8;\n --aithe-success-3: #9cecd4;\n --aithe-success-4: #6cd8b8;\n --aithe-success-5: #44c09e;\n --aithe-success-6: #2ea882;\n --aithe-success-7: #228c6c;\n --aithe-success-8: #1a7056;\n --aithe-success-9: #145a46;\n --aithe-success-10: #104838;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff0f6;\n --aithe-danger-2: #ffdae8;\n --aithe-danger-3: #ffb8d0;\n --aithe-danger-4: #ff8eb4;\n --aithe-danger-5: #f06896;\n --aithe-danger-6: #d44c7a;\n --aithe-danger-7: #b03460;\n --aithe-danger-8: #8c244c;\n --aithe-danger-9: #6e1a3a;\n --aithe-danger-10: #52122c;\n --aithe-neutral-1: #eeeef6;\n --aithe-neutral-2: #d0d0e0;\n --aithe-neutral-3: #aaaac0;\n --aithe-neutral-4: #8484a0;\n --aithe-neutral-5: #646480;\n --aithe-neutral-6: #4a4a64;\n --aithe-neutral-7: #363650;\n --aithe-neutral-8: #26263c;\n --aithe-neutral-9: #18182c;\n --aithe-neutral-10: #0c0c1c;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #0e0c18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(80, 60, 140, 0.16) 0%, rgba(14, 12, 24, 1) 55%);\n --aithe-color-surface: rgba(18, 16, 28, 0.84);\n --aithe-color-surface-elevated: rgba(24, 22, 38, 0.96);\n --aithe-color-surface-muted: #16142a;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(150, 140, 200, 0.17);\n --aithe-color-border-strong: rgba(170, 160, 220, 0.25);\n --aithe-color-text: #eae8f8;\n --aithe-color-text-muted: #9c98b8;\n --aithe-color-text-subtle: #747098;\n --aithe-color-overlay: rgba(4, 2, 10, 0.68);\n --aithe-color-selection: rgba(100, 84, 212, 0.22);\n --aithe-color-focus-ring: rgba(100, 84, 212, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #9e90ff;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #363650;\n --aithe-code-doctype: #363650;\n --aithe-code-placeholder: #363650;\n}\n\n\n.aithe-theme-midnight,\n[data-aithe-theme='midnight'] {\n color-scheme: dark;\n --aithe-primary-1: #edf2ff;\n --aithe-primary-2: #d4e0ff;\n --aithe-primary-3: #afc6ff;\n --aithe-primary-4: #84a8ff;\n --aithe-primary-5: #5c8af5;\n --aithe-primary-6: #4070e0;\n --aithe-primary-7: #3458b8;\n --aithe-primary-8: #2a4494;\n --aithe-primary-9: #223472;\n --aithe-primary-10: #1a2654;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eef0f8;\n --aithe-neutral-2: #d2d8e8;\n --aithe-neutral-3: #aeb8ce;\n --aithe-neutral-4: #8a96b2;\n --aithe-neutral-5: #6a7894;\n --aithe-neutral-6: #4e5c76;\n --aithe-neutral-7: #384460;\n --aithe-neutral-8: #26304c;\n --aithe-neutral-9: #18203a;\n --aithe-neutral-10: #0e1428;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #0a0e1c;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(50, 80, 160, 0.20) 0%, rgba(10, 14, 28, 1) 55%);\n --aithe-color-surface: rgba(14, 20, 36, 0.84);\n --aithe-color-surface-elevated: rgba(18, 26, 48, 0.96);\n --aithe-color-surface-muted: #121828;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(140, 170, 230, 0.17);\n --aithe-color-border-strong: rgba(160, 190, 245, 0.25);\n --aithe-color-text: #eaf0fc;\n --aithe-color-text-muted: #98a8c6;\n --aithe-color-text-subtle: #6e82a6;\n --aithe-color-overlay: rgba(2, 4, 12, 0.68);\n --aithe-color-selection: rgba(64, 112, 224, 0.22);\n --aithe-color-focus-ring: rgba(64, 112, 224, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #384460;\n --aithe-code-doctype: #384460;\n --aithe-code-placeholder: #384460;\n}\n\n\n.aithe-theme-navy,\n[data-aithe-theme='navy'] {\n color-scheme: dark;\n --aithe-primary-1: #ecf0ff;\n --aithe-primary-2: #d0dcff;\n --aithe-primary-3: #a8c0ff;\n --aithe-primary-4: #789ef5;\n --aithe-primary-5: #5880e0;\n --aithe-primary-6: #4066c0;\n --aithe-primary-7: #3450a0;\n --aithe-primary-8: #283e80;\n --aithe-primary-9: #1e3062;\n --aithe-primary-10: #162448;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #e8ecf8;\n --aithe-neutral-2: #c8d0e4;\n --aithe-neutral-3: #9eaac8;\n --aithe-neutral-4: #7484a8;\n --aithe-neutral-5: #566488;\n --aithe-neutral-6: #3e4c6c;\n --aithe-neutral-7: #2c3854;\n --aithe-neutral-8: #1e2840;\n --aithe-neutral-9: #141c30;\n --aithe-neutral-10: #0a1020;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #080c18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(40, 70, 150, 0.18) 0%, rgba(8, 12, 24, 1) 55%);\n --aithe-color-surface: rgba(12, 16, 28, 0.84);\n --aithe-color-surface-elevated: rgba(16, 22, 40, 0.96);\n --aithe-color-surface-muted: #101628;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(120, 150, 220, 0.17);\n --aithe-color-border-strong: rgba(140, 170, 240, 0.25);\n --aithe-color-text: #e6eefc;\n --aithe-color-text-muted: #90a0c0;\n --aithe-color-text-subtle: #6878a0;\n --aithe-color-overlay: rgba(2, 4, 10, 0.68);\n --aithe-color-selection: rgba(64, 102, 192, 0.22);\n --aithe-color-focus-ring: rgba(64, 102, 192, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #789ef5;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #2c3854;\n --aithe-code-doctype: #2c3854;\n --aithe-code-placeholder: #2c3854;\n}\n\n\n.aithe-theme-obsidian,\n[data-aithe-theme='obsidian'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f4ff;\n --aithe-primary-2: #d8e2ff;\n --aithe-primary-3: #b4c8ff;\n --aithe-primary-4: #88a8ff;\n --aithe-primary-5: #6288f0;\n --aithe-primary-6: #4c6cd4;\n --aithe-primary-7: #3c54ae;\n --aithe-primary-8: #2e408a;\n --aithe-primary-9: #223068;\n --aithe-primary-10: #18224c;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eef0f4;\n --aithe-neutral-2: #d0d4dc;\n --aithe-neutral-3: #a8aec0;\n --aithe-neutral-4: #828a9e;\n --aithe-neutral-5: #606880;\n --aithe-neutral-6: #464e64;\n --aithe-neutral-7: #323a50;\n --aithe-neutral-8: #22283c;\n --aithe-neutral-9: #161a2c;\n --aithe-neutral-10: #0c0e1a;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #080a12;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(60, 70, 120, 0.14) 0%, rgba(8, 10, 18, 1) 55%);\n --aithe-color-surface: rgba(12, 14, 22, 0.86);\n --aithe-color-surface-elevated: rgba(16, 20, 32, 0.96);\n --aithe-color-surface-muted: #10121c;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(130, 150, 200, 0.16);\n --aithe-color-border-strong: rgba(150, 170, 220, 0.24);\n --aithe-color-text: #e6eaf6;\n --aithe-color-text-muted: #9098b0;\n --aithe-color-text-subtle: #687088;\n --aithe-color-overlay: rgba(2, 2, 8, 0.70);\n --aithe-color-selection: rgba(76, 108, 212, 0.20);\n --aithe-color-focus-ring: rgba(76, 108, 212, 0.38);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.30);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.36);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.42);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.48);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.54);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #323a50;\n --aithe-code-doctype: #323a50;\n --aithe-code-placeholder: #323a50;\n}\n\n\n.aithe-theme-onyx,\n[data-aithe-theme='onyx'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f2f6;\n --aithe-primary-2: #d8dce8;\n --aithe-primary-3: #b4bcd0;\n --aithe-primary-4: #8c98b8;\n --aithe-primary-5: #6878a0;\n --aithe-primary-6: #506088;\n --aithe-primary-7: #3e4e70;\n --aithe-primary-8: #2e3e5a;\n --aithe-primary-9: #223046;\n --aithe-primary-10: #182234;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #eceef2;\n --aithe-neutral-2: #ccd0d8;\n --aithe-neutral-3: #a4aab8;\n --aithe-neutral-4: #808898;\n --aithe-neutral-5: #606878;\n --aithe-neutral-6: #484e5e;\n --aithe-neutral-7: #343a48;\n --aithe-neutral-8: #242834;\n --aithe-neutral-9: #161a24;\n --aithe-neutral-10: #0a0c14;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #06070a;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(50, 56, 80, 0.12) 0%, rgba(6, 7, 10, 1) 55%);\n --aithe-color-surface: rgba(10, 12, 18, 0.88);\n --aithe-color-surface-elevated: rgba(14, 16, 24, 0.96);\n --aithe-color-surface-muted: #0e1018;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(120, 130, 170, 0.16);\n --aithe-color-border-strong: rgba(140, 150, 190, 0.24);\n --aithe-color-text: #e2e6f2;\n --aithe-color-text-muted: #8c94a8;\n --aithe-color-text-subtle: #646c80;\n --aithe-color-overlay: rgba(0, 0, 4, 0.72);\n --aithe-color-selection: rgba(80, 96, 136, 0.20);\n --aithe-color-focus-ring: rgba(80, 96, 136, 0.38);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.32);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.38);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.44);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.50);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.56);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #343a48;\n --aithe-code-doctype: #343a48;\n --aithe-code-placeholder: #343a48;\n}\n\n\n.aithe-theme-raisin,\n[data-aithe-theme='raisin'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0ff;\n --aithe-primary-2: #e0d8ff;\n --aithe-primary-3: #c4b4ff;\n --aithe-primary-4: #a48cf5;\n --aithe-primary-5: #8868e0;\n --aithe-primary-6: #6e50c0;\n --aithe-primary-7: #583ca0;\n --aithe-primary-8: #442e80;\n --aithe-primary-9: #342264;\n --aithe-primary-10: #26184a;\n --aithe-success-1: #edfcf8;\n --aithe-success-2: #c9f5e8;\n --aithe-success-3: #9cecd4;\n --aithe-success-4: #6cd8b8;\n --aithe-success-5: #44c09e;\n --aithe-success-6: #2ea882;\n --aithe-success-7: #228c6c;\n --aithe-success-8: #1a7056;\n --aithe-success-9: #145a46;\n --aithe-success-10: #104838;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff0f6;\n --aithe-danger-2: #ffdae8;\n --aithe-danger-3: #ffb8d0;\n --aithe-danger-4: #ff8eb4;\n --aithe-danger-5: #f06896;\n --aithe-danger-6: #d44c7a;\n --aithe-danger-7: #b03460;\n --aithe-danger-8: #8c244c;\n --aithe-danger-9: #6e1a3a;\n --aithe-danger-10: #52122c;\n --aithe-neutral-1: #eeeef6;\n --aithe-neutral-2: #d0cee0;\n --aithe-neutral-3: #aaa8c0;\n --aithe-neutral-4: #8680a0;\n --aithe-neutral-5: #666080;\n --aithe-neutral-6: #4e4868;\n --aithe-neutral-7: #3a3452;\n --aithe-neutral-8: #2a263e;\n --aithe-neutral-9: #1c1a2e;\n --aithe-neutral-10: #0e0c1e;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #0e0a18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 50, 140, 0.18) 0%, rgba(14, 10, 24, 1) 55%);\n --aithe-color-surface: rgba(16, 12, 24, 0.84);\n --aithe-color-surface-elevated: rgba(22, 18, 34, 0.96);\n --aithe-color-surface-muted: #18142a;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(150, 130, 200, 0.17);\n --aithe-color-border-strong: rgba(170, 150, 220, 0.25);\n --aithe-color-text: #eae4f8;\n --aithe-color-text-muted: #9c90b8;\n --aithe-color-text-subtle: #746898;\n --aithe-color-overlay: rgba(4, 2, 8, 0.68);\n --aithe-color-selection: rgba(110, 80, 192, 0.22);\n --aithe-color-focus-ring: rgba(110, 80, 192, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cf5;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3a3452;\n --aithe-code-doctype: #3a3452;\n --aithe-code-placeholder: #3a3452;\n}\n\n\n.aithe-theme-slate,\n[data-aithe-theme='slate'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f4ff;\n --aithe-primary-2: #d9e4ff;\n --aithe-primary-3: #b8ccff;\n --aithe-primary-4: #8eaaff;\n --aithe-primary-5: #6b8cf5;\n --aithe-primary-6: #5470e0;\n --aithe-primary-7: #4358b8;\n --aithe-primary-8: #364590;\n --aithe-primary-9: #2b3670;\n --aithe-primary-10: #212954;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f1f3f8;\n --aithe-neutral-2: #d8dce6;\n --aithe-neutral-3: #b8bfce;\n --aithe-neutral-4: #96a0b4;\n --aithe-neutral-5: #76829a;\n --aithe-neutral-6: #5a6680;\n --aithe-neutral-7: #424d64;\n --aithe-neutral-8: #2e374c;\n --aithe-neutral-9: #1e2536;\n --aithe-neutral-10: #111620;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #121824;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(70, 90, 140, 0.18) 0%, rgba(18, 24, 36, 1) 55%);\n --aithe-color-surface: rgba(22, 30, 44, 0.84);\n --aithe-color-surface-elevated: rgba(26, 36, 54, 0.96);\n --aithe-color-surface-muted: #1a2230;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(160, 180, 220, 0.17);\n --aithe-color-border-strong: rgba(175, 195, 235, 0.25);\n --aithe-color-text: #eef2fc;\n --aithe-color-text-muted: #a0aec6;\n --aithe-color-text-subtle: #7a88a2;\n --aithe-color-overlay: rgba(4, 8, 16, 0.66);\n --aithe-color-selection: rgba(84, 112, 224, 0.22);\n --aithe-color-focus-ring: rgba(84, 112, 224, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.22);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.28);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.34);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.40);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.46);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #4a5568;\n --aithe-code-doctype: #4a5568;\n --aithe-code-placeholder: #4a5568;\n}\n\n\n.aithe-theme-huawei,\n[data-aithe-theme='huawei'] {\n color-scheme: light;\n --aithe-primary-1: #fef2f3;\n --aithe-primary-2: #fde3e5;\n --aithe-primary-3: #fbc8cd;\n --aithe-primary-4: #f9a1a9;\n --aithe-primary-5: #f57582;\n --aithe-primary-6: #e8414f;\n --aithe-primary-7: #cf102d;\n --aithe-primary-8: #a80d24;\n --aithe-primary-9: #860e1f;\n --aithe-primary-10: #6b0e1b;\n --aithe-success-1: #effcf6;\n --aithe-success-2: #d9f5e6;\n --aithe-success-3: #b7ebcf;\n --aithe-success-4: #84d9ae;\n --aithe-success-5: #52c48a;\n --aithe-success-6: #2eae70;\n --aithe-success-7: #1f915d;\n --aithe-success-8: #1b754e;\n --aithe-success-9: #185e40;\n --aithe-success-10: #144b34;\n --aithe-warning-1: #fff8e8;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffe08c;\n --aithe-warning-4: #ffcc59;\n --aithe-warning-5: #f6b73a;\n --aithe-warning-6: #dd9621;\n --aithe-warning-7: #b97516;\n --aithe-warning-8: #955b14;\n --aithe-warning-9: #754712;\n --aithe-warning-10: #5c390f;\n --aithe-danger-1: #fff1f2;\n --aithe-danger-2: #ffe0e4;\n --aithe-danger-3: #ffc4cb;\n --aithe-danger-4: #ff9ca8;\n --aithe-danger-5: #ff7283;\n --aithe-danger-6: #f04f64;\n --aithe-danger-7: #cf3950;\n --aithe-danger-8: #ab3144;\n --aithe-danger-9: #882c3a;\n --aithe-danger-10: #6d2630;\n --aithe-neutral-1: #f5f7fa;\n --aithe-neutral-2: #e9ecf3;\n --aithe-neutral-3: #d5dae6;\n --aithe-neutral-4: #b8bfd0;\n --aithe-neutral-5: #98a0b5;\n --aithe-neutral-6: #78809a;\n --aithe-neutral-7: #59617c;\n --aithe-neutral-8: #3d4560;\n --aithe-neutral-9: #262d45;\n --aithe-neutral-10: #13182b;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #faf5f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fefafa 0%, #f5eef0 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e8ea;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(207, 16, 45, 0.15);\n --aithe-color-border-strong: rgba(207, 16, 45, 0.25);\n --aithe-color-text: #0c1222;\n --aithe-color-text-muted: #3a4560;\n --aithe-color-text-subtle: #68748f;\n --aithe-color-overlay: rgba(8, 13, 26, 0.52);\n --aithe-color-selection: rgba(207, 16, 45, 0.14);\n --aithe-color-focus-ring: rgba(207, 16, 45, 0.34);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #a626a4;\n --aithe-code-boolean: #986801;\n --aithe-code-builtin: #4078f2;\n --aithe-code-number: #986801;\n --aithe-code-string: #50a14f;\n --aithe-code-function: #4078f2;\n --aithe-code-type: #c18401;\n --aithe-code-preprocessor: #a626a4;\n --aithe-code-tag: #e45649;\n --aithe-code-attr: #986801;\n --aithe-code-key: #e45649;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #986801;\n --aithe-code-comment: #a0a1a7;\n --aithe-code-doctype: #a0a1a7;\n --aithe-code-placeholder: #a0a1a7;\n}\n\n\n.aithe-theme-tianyi,\n[data-aithe-theme='tianyi'] {\n color-scheme: light;\n --aithe-primary-1: #edf5ff;\n --aithe-primary-2: #d4e8ff;\n --aithe-primary-3: #a8d0ff;\n --aithe-primary-4: #75b2ff;\n --aithe-primary-5: #4d97ff;\n --aithe-primary-6: #2679f0;\n --aithe-primary-7: #0052cc;\n --aithe-primary-8: #0042a8;\n --aithe-primary-9: #003688;\n --aithe-primary-10: #002b6b;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f4f6fa;\n --aithe-neutral-2: #e6eaf3;\n --aithe-neutral-3: #d0d7e6;\n --aithe-neutral-4: #b1bbd0;\n --aithe-neutral-5: #8f9bb5;\n --aithe-neutral-6: #6f7c9a;\n --aithe-neutral-7: #515f7e;\n --aithe-neutral-8: #384662;\n --aithe-neutral-9: #222e47;\n --aithe-neutral-10: #111a2d;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #f2f6fc;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f8fbff 0%, #ecf2fa 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4ebf6;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(0, 82, 204, 0.16);\n --aithe-color-border-strong: rgba(0, 82, 204, 0.28);\n --aithe-color-text: #0c1324;\n --aithe-color-text-muted: #384b6a;\n --aithe-color-text-subtle: #687b9a;\n --aithe-color-overlay: rgba(6, 14, 28, 0.50);\n --aithe-color-selection: rgba(0, 82, 204, 0.16);\n --aithe-color-focus-ring: rgba(0, 82, 204, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n\n\n.aithe-theme-aliyun,\n[data-aithe-theme='aliyun'] {\n color-scheme: light;\n --aithe-primary-1: #fff7ed;\n --aithe-primary-2: #ffedd5;\n --aithe-primary-3: #ffd8a8;\n --aithe-primary-4: #ffbe78;\n --aithe-primary-5: #ffa04a;\n --aithe-primary-6: #ff8228;\n --aithe-primary-7: #ff6a00;\n --aithe-primary-8: #d65700;\n --aithe-primary-9: #ad4700;\n --aithe-primary-10: #8a3900;\n --aithe-success-1: #effcf7;\n --aithe-success-2: #d2f5e4;\n --aithe-success-3: #afead0;\n --aithe-success-4: #7fd5af;\n --aithe-success-5: #59bd92;\n --aithe-success-6: #3aa478;\n --aithe-success-7: #2d8964;\n --aithe-success-8: #266f53;\n --aithe-success-9: #215a45;\n --aithe-success-10: #1b4938;\n --aithe-warning-1: #fff8e9;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffdd90;\n --aithe-warning-4: #ffc45c;\n --aithe-warning-5: #f2aa3d;\n --aithe-warning-6: #d38b25;\n --aithe-warning-7: #af6e1b;\n --aithe-warning-8: #8e5718;\n --aithe-warning-9: #724618;\n --aithe-warning-10: #5b3815;\n --aithe-danger-1: #fff0f3;\n --aithe-danger-2: #ffdbe2;\n --aithe-danger-3: #ffbbc8;\n --aithe-danger-4: #ff8fa1;\n --aithe-danger-5: #f66a80;\n --aithe-danger-6: #de5069;\n --aithe-danger-7: #bd3f56;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7c2f3f;\n --aithe-danger-10: #632837;\n --aithe-neutral-1: #f6f7f9;\n --aithe-neutral-2: #ebedf2;\n --aithe-neutral-3: #d9dce6;\n --aithe-neutral-4: #bfc4d2;\n --aithe-neutral-5: #a2a8ba;\n --aithe-neutral-6: #848ba0;\n --aithe-neutral-7: #656d85;\n --aithe-neutral-8: #485069;\n --aithe-neutral-9: #2c344b;\n --aithe-neutral-10: #161c2e;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #faf7f3;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fefbf8 0%, #f5f0ea 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0eae2;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(255, 106, 0, 0.16);\n --aithe-color-border-strong: rgba(255, 106, 0, 0.28);\n --aithe-color-text: #0e1524;\n --aithe-color-text-muted: #3d4a64;\n --aithe-color-text-subtle: #6c7a94;\n --aithe-color-overlay: rgba(10, 15, 28, 0.50);\n --aithe-color-selection: rgba(255, 106, 0, 0.16);\n --aithe-color-focus-ring: rgba(255, 106, 0, 0.34);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n\n\n:root {\n --aithe-space-0: 0;\n --aithe-space-1: 4px;\n --aithe-space-2: 8px;\n --aithe-space-3: 12px;\n --aithe-space-4: 16px;\n --aithe-space-5: 20px;\n --aithe-space-6: 24px;\n --aithe-space-7: 32px;\n --aithe-space-8: 40px;\n --aithe-space-9: 48px;\n --aithe-space-10: 64px;\n --aithe-space-xs: var(--aithe-space-2);\n --aithe-space-sm: var(--aithe-space-3);\n --aithe-space-md: var(--aithe-space-4);\n --aithe-space-lg: var(--aithe-space-6);\n --aithe-space-xl: var(--aithe-space-8);\n --aithe-radius-sm: 6px;\n --aithe-radius-md: 10px;\n --aithe-radius-lg: 14px;\n --aithe-radius-xl: 20px;\n --aithe-radius-full: 999px;\n --aithe-container-radius-sm: 6px;\n --aithe-container-radius-md: 10px;\n --aithe-container-radius-lg: 14px;\n --aithe-container-radius-xl: 20px;\n --aithe-container-radius-full: 999px;\n --aithe-shadow-1: 0 2px 4px rgba(18, 24, 38, 0.1), 0 4px 8px rgba(18, 24, 38, 0.06);\n --aithe-shadow-2: 0 4px 8px rgba(18, 24, 38, 0.12), 0 8px 16px rgba(18, 24, 38, 0.08);\n --aithe-shadow-3: 0 6px 12px rgba(18, 24, 38, 0.14), 0 12px 24px rgba(18, 24, 38, 0.1);\n --aithe-shadow-4: 0 8px 16px rgba(18, 24, 38, 0.16), 0 16px 32px rgba(18, 24, 38, 0.12);\n --aithe-shadow-5: 0 12px 20px rgba(18, 24, 38, 0.18), 0 20px 40px rgba(18, 24, 38, 0.14);\n --aithe-shadow-glow: none;\n --aithe-shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.15);\n --aithe-shadow-blur: 0px;\n --aithe-shadow-opacity: 1;\n --aithe-shadow-border-glow: 0px;\n --aithe-font-family: 'Sora', 'IBM Plex Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;\n --aithe-font-family-mono: 'JetBrains Mono', 'SFMono-Regular', 'Consolas', monospace;\n --aithe-font-size-xs: 12px;\n --aithe-font-size-sm: 13px;\n --aithe-font-size-md: 14px;\n --aithe-font-size-lg: 16px;\n --aithe-font-size-xl: 20px;\n --aithe-font-size-2xl: 28px;\n --aithe-font-size-base: 14px;\n --aithe-font-size-3xl: 32px;\n --aithe-font-size-4xl: 48px;\n --aithe-font-size-5xl: 64px;\n --aithe-font-weight-regular: 400;\n --aithe-font-weight-medium: 500;\n --aithe-font-weight-semibold: 600;\n --aithe-font-weight-bold: 700;\n --aithe-line-height-tight: 1.2;\n --aithe-line-height-base: 1.5;\n --aithe-line-height-loose: 1.7;\n --aithe-z-base: 1;\n --aithe-z-dropdown: 1000;\n --aithe-z-popover: 1010;\n --aithe-z-modal: 1080;\n --aithe-z-drawer: 1090;\n --aithe-z-tooltip: 1120;\n --aithe-duration-fast: 140ms;\n --aithe-duration-base: 220ms;\n --aithe-duration-slow: 320ms;\n --aithe-ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);\n --aithe-control-height-sm: 32px;\n --aithe-control-height-md: 40px;\n --aithe-control-height-lg: 48px;\n}\n\nhtml,\nbody {\n margin: 0;\n width: 100%;\n min-height: 100%;\n background: var(--aithe-color-bg-subtle);\n color: var(--aithe-color-text);\n font-family: var(--aithe-font-family);\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n::selection {\n background: var(--aithe-color-selection);\n}\n\n";
9
9
  /**
10
10
  * Theme color preview values for each built-in theme.
11
11
  * 每个内置主题的颜色预览值。
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AA6BrD,kCAAkC;AAClC,eAAO,MAAM,mBAAmB,EAAE,cAAwB,CAAC;AAC3D,sFAAsF;AACtF,eAAO,MAAM,uBAAuB,mBAAmB,CAAC;AASxD,mGAAmG;AACnG,eAAO,MAAM,cAAc,um3EA2B1B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA0B/C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,iBAAiB,EAG3C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,iBAAiB,EAG1C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,iBAAiB,EAE3C,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS,EAAE,iBAAiB,EAkCxC,CAAC;AAEF;;;GAGG;AACH,wBAAgB,kBAAkB,IAAI,IAAI,CAczC;AAED,gEAAgE;AAChE,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,cAAc,GAAG,MAAM,CAE/D;AAED;;;GAGG;AACH,wBAAgB,cAAc,IAAI,cAAc,CAe/C;AAED;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,UAAO,GAAG,IAAI,CAuB1E;AAED,wFAAwF;AACxF,wBAAgB,eAAe,IAAI,cAAc,GAAG,IAAI,CAMvD;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,WAAW,EACpB,cAAc,CAAC,EAAE,cAAc,GAC9B,cAAc,CAiBhB;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,YAAY,GAAE,cAAoC,GAAG,IAAI,CAIvF;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,MAAM,IAAI,CAG7D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAClE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AA6BrD,kCAAkC;AAClC,eAAO,MAAM,mBAAmB,EAAE,cAAwB,CAAC;AAC3D,sFAAsF;AACtF,eAAO,MAAM,uBAAuB,mBAAmB,CAAC;AASxD,mGAAmG;AACnG,eAAO,MAAM,cAAc,+wnFA2B1B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA0B/C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,iBAAiB,EAG3C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,iBAAiB,EAG1C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,iBAAiB,EAE3C,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS,EAAE,iBAAiB,EAkCxC,CAAC;AAEF;;;GAGG;AACH,wBAAgB,kBAAkB,IAAI,IAAI,CAczC;AAED,gEAAgE;AAChE,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,cAAc,GAAG,MAAM,CAE/D;AAED;;;GAGG;AACH,wBAAgB,cAAc,IAAI,cAAc,CAe/C;AAED;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,UAAO,GAAG,IAAI,CAuB1E;AAED,wFAAwF;AACxF,wBAAgB,eAAe,IAAI,cAAc,GAAG,IAAI,CAMvD;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,WAAW,EACpB,cAAc,CAAC,EAAE,cAAc,GAC9B,cAAc,CAiBhB;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,YAAY,GAAE,cAAoC,GAAG,IAAI,CAIvF;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,MAAM,IAAI,CAG7D"}