@liorian/sdk 0.28.0-alpha.56010ca

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 (362) hide show
  1. package/README.md +483 -0
  2. package/package.json +94 -0
  3. package/schemas/module.schema.json +818 -0
  4. package/src/application/index.ts +3 -0
  5. package/src/application/module-instance.ts +36 -0
  6. package/src/application/service/auth-api-service.ts +291 -0
  7. package/src/application/service/auth-user.service.ts +108 -0
  8. package/src/application/service/index.ts +12 -0
  9. package/src/application/service/module-activation-api.service.ts +105 -0
  10. package/src/application/service/notifications-api-service.ts +38 -0
  11. package/src/application/service/notifications-push.service.ts +299 -0
  12. package/src/application/service/notifications-socket-service.ts +76 -0
  13. package/src/application/service/organizations-api-service.ts +104 -0
  14. package/src/application/service/otp-api-service.ts +11 -0
  15. package/src/application/service/storage-api-service.ts +77 -0
  16. package/src/application/service/storefront-api.service.ts +72 -0
  17. package/src/application/service/user-preferences-api.service.ts +57 -0
  18. package/src/domain/config/app.config.ts +35 -0
  19. package/src/domain/config/auth.config.ts +30 -0
  20. package/src/domain/config/index.ts +4 -0
  21. package/src/domain/config/logo.config.ts +17 -0
  22. package/src/domain/entities/activities.interface.ts +18 -0
  23. package/src/domain/entities/catalog.interface.ts +96 -0
  24. package/src/domain/entities/index.ts +13 -0
  25. package/src/domain/entities/media.ts +22 -0
  26. package/src/domain/entities/module-activation.interface.ts +173 -0
  27. package/src/domain/entities/module.interface.ts +101 -0
  28. package/src/domain/entities/notification.interface.ts +23 -0
  29. package/src/domain/entities/objectable.type.ts +3 -0
  30. package/src/domain/entities/organization.interface.ts +81 -0
  31. package/src/domain/entities/user-auth.interface.ts +17 -0
  32. package/src/domain/entities/user-phone.interface.ts +11 -0
  33. package/src/domain/entities/user-profile.interface.ts +23 -0
  34. package/src/domain/entities/user.interface.ts +79 -0
  35. package/src/domain/enums/coloring.enum.ts +6 -0
  36. package/src/domain/enums/domains.enum.ts +282 -0
  37. package/src/domain/enums/index.ts +8 -0
  38. package/src/domain/enums/module-category.enum.ts +57 -0
  39. package/src/domain/enums/module.enum.ts +97 -0
  40. package/src/domain/enums/routine.enum.ts +12 -0
  41. package/src/domain/enums/user-profile.enum.ts +25 -0
  42. package/src/domain/enums/user-status.enum.ts +7 -0
  43. package/src/domain/index.ts +6 -0
  44. package/src/domain/typing/auth-caches.ts +12 -0
  45. package/src/domain/typing/auth-oauth.types.ts +172 -0
  46. package/src/domain/typing/devise.ts +2 -0
  47. package/src/domain/typing/index.ts +10 -0
  48. package/src/domain/typing/response.ts +30 -0
  49. package/src/domain/typing/routine.types.ts +113 -0
  50. package/src/domain/typing/session.interface.ts +28 -0
  51. package/src/domain/typing/statisticals.ts +11 -0
  52. package/src/domain/typing/user-media-upload.ts +9 -0
  53. package/src/domain/typing/values.ts +6 -0
  54. package/src/index.tsx +168 -0
  55. package/src/infrastructure/capabilities/cache-storage/capability.ts +129 -0
  56. package/src/infrastructure/capabilities/cache-storage/enum.ts +5 -0
  57. package/src/infrastructure/capabilities/cache-storage/index.ts +4 -0
  58. package/src/infrastructure/capabilities/cache-storage/types.ts +13 -0
  59. package/src/infrastructure/capabilities/index.ts +3 -0
  60. package/src/infrastructure/capabilities/stackable/capability.ts +55 -0
  61. package/src/infrastructure/capabilities/stackable/index.ts +3 -0
  62. package/src/infrastructure/capabilities/stackable/types.ts +24 -0
  63. package/src/infrastructure/common-classname.constant.ts +4 -0
  64. package/src/infrastructure/data/countries.ts +208 -0
  65. package/src/infrastructure/data/gender.ts +5 -0
  66. package/src/infrastructure/data/index.ts +3 -0
  67. package/src/infrastructure/dataset/index.ts +3 -0
  68. package/src/infrastructure/dataset/sign-in.dataset.ts +21 -0
  69. package/src/infrastructure/dataset/sign-up.dataset.ts +64 -0
  70. package/src/infrastructure/hooks/index.ts +10 -0
  71. package/src/infrastructure/hooks/use-activity-lock-draft.ts +69 -0
  72. package/src/infrastructure/hooks/use-auth.ts +24 -0
  73. package/src/infrastructure/hooks/use-elastic-interaction.ts +180 -0
  74. package/src/infrastructure/hooks/use-is-desktop.ts +25 -0
  75. package/src/infrastructure/hooks/use-is-tauri.ts +17 -0
  76. package/src/infrastructure/hooks/use-mobile.ts +19 -0
  77. package/src/infrastructure/hooks/use-notifications.ts +128 -0
  78. package/src/infrastructure/hooks/use-recent-colors.ts +113 -0
  79. package/src/infrastructure/hooks/use-recent-modules.ts +76 -0
  80. package/src/infrastructure/index.tsx +11 -0
  81. package/src/infrastructure/library/design-system.ts +95 -0
  82. package/src/infrastructure/library/index.tsx +5 -0
  83. package/src/infrastructure/library/motion-utils.ts +77 -0
  84. package/src/infrastructure/library/motion.tsx +31 -0
  85. package/src/infrastructure/library/scroll-progress.tsx +93 -0
  86. package/src/infrastructure/providers/auth-guard.provider.tsx +47 -0
  87. package/src/infrastructure/providers/auth.provider.tsx +168 -0
  88. package/src/infrastructure/providers/index.tsx +8 -0
  89. package/src/infrastructure/providers/module-usage.provider.tsx +95 -0
  90. package/src/infrastructure/providers/modules-guard.provider.tsx +64 -0
  91. package/src/infrastructure/providers/modules-routines.provider.tsx +33 -0
  92. package/src/infrastructure/providers/modules-switcher.provider.tsx +25 -0
  93. package/src/infrastructure/providers/query.provider.tsx +27 -0
  94. package/src/infrastructure/routines/__tests__/routine.test.ts +368 -0
  95. package/src/infrastructure/routines/index.tsx +3 -0
  96. package/src/infrastructure/routines/routine.hook.ts +121 -0
  97. package/src/infrastructure/routines/routine.ts +283 -0
  98. package/src/infrastructure/routines/routine.tsx +283 -0
  99. package/src/infrastructure/stores/activity-lock.store.ts +22 -0
  100. package/src/infrastructure/stores/auth-user-connected.store.ts +24 -0
  101. package/src/infrastructure/stores/dataset.store.ts +106 -0
  102. package/src/infrastructure/stores/index.ts +6 -0
  103. package/src/infrastructure/stores/module.store.ts +266 -0
  104. package/src/infrastructure/stores/upload.store.ts +198 -0
  105. package/src/infrastructure/utilities/access-label.util.ts +158 -0
  106. package/src/infrastructure/utilities/activities.util.tsx +54 -0
  107. package/src/infrastructure/utilities/activity-lock.service.ts +263 -0
  108. package/src/infrastructure/utilities/activity-tracker.service.ts +205 -0
  109. package/src/infrastructure/utilities/api-service.ts +237 -0
  110. package/src/infrastructure/utilities/auth-logout.util.ts +23 -0
  111. package/src/infrastructure/utilities/classname.util.ts +7 -0
  112. package/src/infrastructure/utilities/encryption.service.ts +125 -0
  113. package/src/infrastructure/utilities/form-snapshot.service.ts +304 -0
  114. package/src/infrastructure/utilities/format.util.ts +40 -0
  115. package/src/infrastructure/utilities/index.tsx +23 -0
  116. package/src/infrastructure/utilities/media-label.service.ts +47 -0
  117. package/src/infrastructure/utilities/modules.ts +11 -0
  118. package/src/infrastructure/utilities/permission.util.ts +22 -0
  119. package/src/infrastructure/utilities/push-permission.util.ts +43 -0
  120. package/src/infrastructure/utilities/route-access.ts +38 -0
  121. package/src/infrastructure/utilities/socket-service.ts +123 -0
  122. package/src/infrastructure/utilities/sso-auth.util.ts +188 -0
  123. package/src/infrastructure/utilities/stringable.util.ts +16 -0
  124. package/src/infrastructure/utilities/strings.util.ts +18 -0
  125. package/src/infrastructure/utilities/tauri.util.ts +15 -0
  126. package/src/infrastructure/utilities/utils.ts +6 -0
  127. package/src/infrastructure/utilities/values.ts +5 -0
  128. package/src/presentation/8starlabs-ui/button.tsx +94 -0
  129. package/src/presentation/8starlabs-ui/flip-clock.tsx +368 -0
  130. package/src/presentation/8starlabs-ui/heatmap.tsx +430 -0
  131. package/src/presentation/8starlabs-ui/hooks/index.tsx +2 -0
  132. package/src/presentation/8starlabs-ui/hooks/use-mobile.ts +21 -0
  133. package/src/presentation/8starlabs-ui/index.tsx +20 -0
  134. package/src/presentation/8starlabs-ui/json-viewer.tsx +972 -0
  135. package/src/presentation/8starlabs-ui/marquee.tsx +134 -0
  136. package/src/presentation/8starlabs-ui/partition-bar.tsx +198 -0
  137. package/src/presentation/8starlabs-ui/scroll-fade.tsx +158 -0
  138. package/src/presentation/8starlabs-ui/status-indicator.tsx +86 -0
  139. package/src/presentation/8starlabs-ui/system-banner.tsx +50 -0
  140. package/src/presentation/8starlabs-ui/timeline.tsx +576 -0
  141. package/src/presentation/8starlabs-ui/transport-badge.tsx +249 -0
  142. package/src/presentation/8starlabs-ui/ui/copy-button.tsx +60 -0
  143. package/src/presentation/8starlabs-ui/ui/index.tsx +2 -0
  144. package/src/presentation/analytics-section.tsx +85 -0
  145. package/src/presentation/app-sidebar.tsx +234 -0
  146. package/src/presentation/charts/area-widget.chart-skeleton.tsx +61 -0
  147. package/src/presentation/charts/area-widget.chart.tsx +128 -0
  148. package/src/presentation/charts/chart-widgets.types.ts +81 -0
  149. package/src/presentation/charts/index.tsx +16 -0
  150. package/src/presentation/charts/line-widget.chart-skeleton.tsx +64 -0
  151. package/src/presentation/charts/line-widget.chart.tsx +105 -0
  152. package/src/presentation/charts/pie-widget.chart-skeleton.tsx +56 -0
  153. package/src/presentation/charts/pie-widget.chart.tsx +168 -0
  154. package/src/presentation/charts/radar-widget.chart-skeleton.tsx +67 -0
  155. package/src/presentation/charts/radar-widget.chart.tsx +80 -0
  156. package/src/presentation/charts/radial-stacked-widget.chart-skeleton.tsx +66 -0
  157. package/src/presentation/charts/radial-stacked-widget.chart.tsx +120 -0
  158. package/src/presentation/charts/radial-widget.chart-skeleton.tsx +61 -0
  159. package/src/presentation/charts/radial-widget.chart.tsx +87 -0
  160. package/src/presentation/charts/tooltip-widget.chart-skeleton.tsx +64 -0
  161. package/src/presentation/charts/tooltip-widget.chart.tsx +89 -0
  162. package/src/presentation/components/activity-actions.tsx +20 -0
  163. package/src/presentation/components/activity-container.tsx +55 -0
  164. package/src/presentation/components/activity-content.tsx +20 -0
  165. package/src/presentation/components/activity-descriptor-parser.tsx +37 -0
  166. package/src/presentation/components/activity-header.tsx +20 -0
  167. package/src/presentation/components/activity-loader.tsx +19 -0
  168. package/src/presentation/components/activity-title.tsx +32 -0
  169. package/src/presentation/components/activity.tsx +22 -0
  170. package/src/presentation/components/auth/index.tsx +4 -0
  171. package/src/presentation/components/auth/sso-callback.view.tsx +44 -0
  172. package/src/presentation/components/auth/sso-disconnect.view.tsx +41 -0
  173. package/src/presentation/components/auth/sso-sign-in.view.tsx +29 -0
  174. package/src/presentation/components/auth-lock-screen.tsx +309 -0
  175. package/src/presentation/components/auth-session.view.tsx +17 -0
  176. package/src/presentation/components/data-table.tsx +814 -0
  177. package/src/presentation/components/dynamic-icon.tsx +16 -0
  178. package/src/presentation/components/floating-upload.tsx +291 -0
  179. package/src/presentation/components/index.tsx +40 -0
  180. package/src/presentation/components/local-time.tsx +170 -0
  181. package/src/presentation/components/markdown-parser.tsx +201 -0
  182. package/src/presentation/components/message-scroller.tsx +131 -0
  183. package/src/presentation/components/module-first-access-config.view.tsx +181 -0
  184. package/src/presentation/components/module-first-access-pending.view.tsx +38 -0
  185. package/src/presentation/components/module-guard.tsx +34 -0
  186. package/src/presentation/components/modules-first-access.guard.tsx +88 -0
  187. package/src/presentation/components/modules-guard-forbidden.tsx +46 -0
  188. package/src/presentation/components/notification-details.modal.tsx +145 -0
  189. package/src/presentation/components/notification-item.tsx +127 -0
  190. package/src/presentation/components/notifications-popover.tsx +128 -0
  191. package/src/presentation/components/push-notifications.provider.tsx +65 -0
  192. package/src/presentation/components/upload-progress-dialog.tsx +140 -0
  193. package/src/presentation/components/waiting-bar.tsx +22 -0
  194. package/src/presentation/components/waiting-section.tsx +15 -0
  195. package/src/presentation/components/waiting.tsx +14 -0
  196. package/src/presentation/data-grid/data-grid-empty.tsx +24 -0
  197. package/src/presentation/data-grid/data-grid-search-engine.tsx +32 -0
  198. package/src/presentation/data-grid/data-grid.tsx +892 -0
  199. package/src/presentation/data-grid/index.tsx +4 -0
  200. package/src/presentation/form-screen.tsx +95 -0
  201. package/src/presentation/icons/custom.tsx +20 -0
  202. package/src/presentation/icons/glyphIcons.tsx +53 -0
  203. package/src/presentation/icons/icons.enum.ts +4 -0
  204. package/src/presentation/icons/icons.util.ts +6 -0
  205. package/src/presentation/icons/index.tsx +8 -0
  206. package/src/presentation/icons/lucide.tsx +17 -0
  207. package/src/presentation/icons/remix.tsx +33 -0
  208. package/src/presentation/icons/types.ts +27 -0
  209. package/src/presentation/index.tsx +45 -0
  210. package/src/presentation/modals/components/ModalBox.tsx +74 -0
  211. package/src/presentation/modals/components/ModalPortal.tsx +31 -0
  212. package/src/presentation/modals/components/ModalStepper.tsx +319 -0
  213. package/src/presentation/modals/components/ModalWrapper.tsx +65 -0
  214. package/src/presentation/modals/components/index.tsx +5 -0
  215. package/src/presentation/modals/hooks/index.ts +2 -0
  216. package/src/presentation/modals/hooks/useModal.ts +38 -0
  217. package/src/presentation/modals/index.tsx +5 -0
  218. package/src/presentation/modals/stores/index.ts +2 -0
  219. package/src/presentation/modals/stores/useModalStore.ts +90 -0
  220. package/src/presentation/modals/types/index.ts +2 -0
  221. package/src/presentation/modals/types/modal.type.ts +33 -0
  222. package/src/presentation/module-menubar.tsx +300 -0
  223. package/src/presentation/module-widget.tsx +233 -0
  224. package/src/presentation/nav-documents.tsx +89 -0
  225. package/src/presentation/nav-main.tsx +62 -0
  226. package/src/presentation/nav-secondary.tsx +41 -0
  227. package/src/presentation/nav-user.tsx +109 -0
  228. package/src/presentation/permission-action-badge.tsx +35 -0
  229. package/src/presentation/reui/index.tsx +3 -0
  230. package/src/presentation/reui/stepper.tsx +508 -0
  231. package/src/presentation/reui/timeline.tsx +226 -0
  232. package/src/presentation/sheets/index.tsx +2 -0
  233. package/src/presentation/sheets/legacy-sheet-header.tsx +0 -0
  234. package/src/presentation/sheets/legacy-sheet.tsx +37 -0
  235. package/src/presentation/size.enum.ts +19 -0
  236. package/src/presentation/system/index.tsx +3 -0
  237. package/src/presentation/system/logo.theme.tsx +21 -0
  238. package/src/presentation/system/types.ts +10 -0
  239. package/src/presentation/theme/index.tsx +6 -0
  240. package/src/presentation/theme/prefer-color-scheme.tsx +50 -0
  241. package/src/presentation/theme/switch-color-scheme.tsx +16 -0
  242. package/src/presentation/theme/theme-switcher-button.tsx +20 -0
  243. package/src/presentation/theme/theme.enum.ts +4 -0
  244. package/src/presentation/theme/theme.store.ts +87 -0
  245. package/src/presentation/themes/index.tsx +2 -0
  246. package/src/presentation/themes/katon/dashboard-layout.tsx +1080 -0
  247. package/src/presentation/themes/katon/edge-section.tsx +19 -0
  248. package/src/presentation/themes/katon/header-menubar.tsx +270 -0
  249. package/src/presentation/themes/katon/header-modules-available.tsx +44 -0
  250. package/src/presentation/themes/katon/header-modules-recents.tsx +52 -0
  251. package/src/presentation/themes/katon/header-modules-store.tsx +25 -0
  252. package/src/presentation/themes/katon/header-options.tsx +13 -0
  253. package/src/presentation/themes/katon/header-organization-select.tsx +146 -0
  254. package/src/presentation/themes/katon/header-routines.tsx +74 -0
  255. package/src/presentation/themes/katon/header-tasks-connected-user.tsx +150 -0
  256. package/src/presentation/themes/katon/index.tsx +16 -0
  257. package/src/presentation/themes/katon/main-wrapper.tsx +34 -0
  258. package/src/presentation/themes/katon/module-item-link.tsx +32 -0
  259. package/src/presentation/themes/katon/view-frame.tsx +25 -0
  260. package/src/presentation/themes/katon/view-helmet.tsx +53 -0
  261. package/src/presentation/themes/katon/view-status.tsx +32 -0
  262. package/src/presentation/themes/katon/view-wrapper.tsx +15 -0
  263. package/src/presentation/themes/katon/view.tsx +42 -0
  264. package/src/presentation/ui/accordion-multiselect.tsx +206 -0
  265. package/src/presentation/ui/accordion.tsx +81 -0
  266. package/src/presentation/ui/alert-dialog.tsx +199 -0
  267. package/src/presentation/ui/alert.tsx +76 -0
  268. package/src/presentation/ui/aspect-ratio.tsx +11 -0
  269. package/src/presentation/ui/attachment.tsx +204 -0
  270. package/src/presentation/ui/avatar.tsx +112 -0
  271. package/src/presentation/ui/badge.tsx +49 -0
  272. package/src/presentation/ui/breadcrumb.tsx +122 -0
  273. package/src/presentation/ui/bubble.tsx +125 -0
  274. package/src/presentation/ui/button-group.tsx +83 -0
  275. package/src/presentation/ui/button.tsx +87 -0
  276. package/src/presentation/ui/calendar.tsx +222 -0
  277. package/src/presentation/ui/card.tsx +106 -0
  278. package/src/presentation/ui/carousel.tsx +242 -0
  279. package/src/presentation/ui/chart.tsx +373 -0
  280. package/src/presentation/ui/checkbox.tsx +33 -0
  281. package/src/presentation/ui/clickable.tsx +58 -0
  282. package/src/presentation/ui/collapsible.tsx +33 -0
  283. package/src/presentation/ui/color-swatch-selector.tsx +81 -0
  284. package/src/presentation/ui/combobox.tsx +299 -0
  285. package/src/presentation/ui/command.tsx +195 -0
  286. package/src/presentation/ui/context-menu.tsx +263 -0
  287. package/src/presentation/ui/dialog.tsx +168 -0
  288. package/src/presentation/ui/direction.tsx +22 -0
  289. package/src/presentation/ui/drawer.tsx +134 -0
  290. package/src/presentation/ui/dropdown-menu.tsx +269 -0
  291. package/src/presentation/ui/empty.tsx +104 -0
  292. package/src/presentation/ui/field.tsx +238 -0
  293. package/src/presentation/ui/granularity-selector.tsx +58 -0
  294. package/src/presentation/ui/hover-card.tsx +44 -0
  295. package/src/presentation/ui/index.tsx +74 -0
  296. package/src/presentation/ui/input-group.tsx +156 -0
  297. package/src/presentation/ui/input-otp.tsx +87 -0
  298. package/src/presentation/ui/input.tsx +19 -0
  299. package/src/presentation/ui/item.tsx +196 -0
  300. package/src/presentation/ui/kpi-card.tsx +203 -0
  301. package/src/presentation/ui/label-selector.tsx +100 -0
  302. package/src/presentation/ui/label.tsx +24 -0
  303. package/src/presentation/ui/legacy-birth-date-input.tsx +43 -0
  304. package/src/presentation/ui/legacy-color-picker/index.tsx +42 -0
  305. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.content.tsx +37 -0
  306. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.context.tsx +42 -0
  307. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.hex-input.tsx +97 -0
  308. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.picker.tsx +266 -0
  309. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.presets.ts +22 -0
  310. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.quick-list.tsx +49 -0
  311. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.recent.tsx +43 -0
  312. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.swatches.tsx +111 -0
  313. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.trigger.tsx +128 -0
  314. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.tsx +110 -0
  315. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.types.ts +1 -0
  316. package/src/presentation/ui/legacy-color-picker/legacy-color-picker.utils.ts +114 -0
  317. package/src/presentation/ui/legacy-country-input.tsx +171 -0
  318. package/src/presentation/ui/legacy-gender-input.tsx +22 -0
  319. package/src/presentation/ui/legacy-input.tsx +106 -0
  320. package/src/presentation/ui/legacy-phone-input.tsx +213 -0
  321. package/src/presentation/ui/legacy-select-input.tsx +114 -0
  322. package/src/presentation/ui/legacy-text-area.tsx +111 -0
  323. package/src/presentation/ui/list-items.tsx +59 -0
  324. package/src/presentation/ui/marker.tsx +69 -0
  325. package/src/presentation/ui/media-player/index.tsx +12 -0
  326. package/src/presentation/ui/media-player/media-player.context.tsx +36 -0
  327. package/src/presentation/ui/media-player/media-player.tsx +167 -0
  328. package/src/presentation/ui/media-player/player-controls.tsx +207 -0
  329. package/src/presentation/ui/media-player/players/audio-player.tsx +78 -0
  330. package/src/presentation/ui/media-player/players/index.tsx +4 -0
  331. package/src/presentation/ui/media-player/players/video-player.tsx +193 -0
  332. package/src/presentation/ui/media-player/players/voice-note-player.tsx +108 -0
  333. package/src/presentation/ui/media-player/use-media-player.hook.ts +263 -0
  334. package/src/presentation/ui/menubar.tsx +281 -0
  335. package/src/presentation/ui/message.tsx +92 -0
  336. package/src/presentation/ui/navigation-menu.tsx +172 -0
  337. package/src/presentation/ui/pagination.tsx +129 -0
  338. package/src/presentation/ui/popover.tsx +89 -0
  339. package/src/presentation/ui/progress.tsx +31 -0
  340. package/src/presentation/ui/resizable.tsx +50 -0
  341. package/src/presentation/ui/select.tsx +192 -0
  342. package/src/presentation/ui/separator.tsx +28 -0
  343. package/src/presentation/ui/sheet.tsx +147 -0
  344. package/src/presentation/ui/sidebar.tsx +702 -0
  345. package/src/presentation/ui/skeleton.tsx +13 -0
  346. package/src/presentation/ui/slide-to-confirm.tsx +129 -0
  347. package/src/presentation/ui/slider.tsx +59 -0
  348. package/src/presentation/ui/sonner.tsx +58 -0
  349. package/src/presentation/ui/switch.tsx +33 -0
  350. package/src/presentation/ui/table.tsx +116 -0
  351. package/src/presentation/ui/tabs.tsx +90 -0
  352. package/src/presentation/ui/text-gradient.tsx +84 -0
  353. package/src/presentation/ui/textarea.tsx +18 -0
  354. package/src/presentation/ui/timeline-steps.tsx +235 -0
  355. package/src/presentation/ui/toggle-group.tsx +89 -0
  356. package/src/presentation/ui/toggle.tsx +47 -0
  357. package/src/presentation/ui/tooltip.tsx +57 -0
  358. package/src/presentation/uploading/index.tsx +3 -0
  359. package/src/presentation/uploading/media-upload-field.tsx +152 -0
  360. package/src/presentation/uploading/storage-media.tsx +210 -0
  361. package/src/styles.css +403 -0
  362. package/src/themes.css +1038 -0
package/src/themes.css ADDED
@@ -0,0 +1,1038 @@
1
+
2
+ /* Theme: Default — Debut */
3
+ *:not([data-theme]) {
4
+ .view-component-effects {
5
+ @apply hidden;
6
+ }
7
+ }
8
+
9
+ :root:not([data-theme]) {
10
+ --background: oklch(0.9977 0.0045 134.8488);
11
+ --foreground: oklch(0.2178 0 0);
12
+ --card: oklch(1.0000 0 0);
13
+ --card-foreground: oklch(0.2178 0 0);
14
+ --popover: oklch(1.0000 0 0);
15
+ --popover-foreground: oklch(0.2178 0 0);
16
+ --primary: oklch(0.7414 0.0738 84.5946);
17
+ --primary-foreground: oklch(1.0000 0 0);
18
+ --secondary: oklch(0.9096 0.0167 91.5611);
19
+ --secondary-foreground: oklch(0.2178 0 0);
20
+ --muted: oklch(0.9459 0.0165 91.5544);
21
+ --muted-foreground: oklch(0.5022 0.0278 85.7741);
22
+ --accent: oklch(0.7414 0.0738 84.5946);
23
+ --accent-foreground: oklch(1.0000 0 0);
24
+ --destructive: oklch(0.5680 0.2002 26.4057);
25
+ --destructive-foreground: oklch(1.0000 0 0);
26
+ --success: oklch(0.5960 0.1450 163.225);
27
+ --success-50: oklch(0.9620 0.0500 163.225);
28
+ --success-100: oklch(0.9000 0.0700 163.225);
29
+ --success-200: oklch(0.8400 0.0900 163.225);
30
+ --success-300: oklch(0.7800 0.1100 163.225);
31
+ --success-400: oklch(0.7100 0.1300 163.225);
32
+ --success-500: var(--success);
33
+ --success-600: oklch(0.4700 0.1300 163.225);
34
+ --success-700: oklch(0.3900 0.1100 163.225);
35
+ --success-800: oklch(0.3100 0.0900 163.225);
36
+ --success-900: oklch(0.2300 0.0700 163.225);
37
+ --success-950: oklch(0.1500 0.0500 163.225);
38
+ --success-foreground: oklch(1.0000 0 0);
39
+
40
+ --warning: oklch(0.6660 0.1790 58.318);
41
+ --warning-50: oklch(0.9720 0.0800 58.318);
42
+ --warning-100: oklch(0.9180 0.1050 58.318);
43
+ --warning-200: oklch(0.8640 0.1280 58.318);
44
+ --warning-300: oklch(0.8100 0.1480 58.318);
45
+ --warning-400: oklch(0.7500 0.1640 58.318);
46
+ --warning-500: var(--warning);
47
+ --warning-600: oklch(0.5200 0.1640 58.318);
48
+ --warning-700: oklch(0.4300 0.1480 58.318);
49
+ --warning-800: oklch(0.3400 0.1280 58.318);
50
+ --warning-900: oklch(0.2500 0.1050 58.318);
51
+ --warning-950: oklch(0.1600 0.0800 58.318);
52
+ --warning-foreground: oklch(0.1500 0.0400 58.000);
53
+
54
+ --info: oklch(0.5880 0.1580 241.966);
55
+ --info-50: oklch(0.9650 0.0600 241.966);
56
+ --info-100: oklch(0.9050 0.0820 241.966);
57
+ --info-200: oklch(0.8450 0.1030 241.966);
58
+ --info-300: oklch(0.7850 0.1220 241.966);
59
+ --info-400: oklch(0.7150 0.1400 241.966);
60
+ --info-500: var(--info);
61
+ --info-600: oklch(0.4850 0.1400 241.966);
62
+ --info-700: oklch(0.4000 0.1220 241.966);
63
+ --info-800: oklch(0.3150 0.1030 241.966);
64
+ --info-900: oklch(0.2350 0.0820 241.966);
65
+ --info-950: oklch(0.1550 0.0600 241.966);
66
+ --info-foreground: oklch(1.0000 0 0);
67
+ --border: oklch(0.8986 0.0258 97.1423);
68
+ --input: oklch(0.8986 0.0258 97.1423);
69
+ --ring: oklch(0.7414 0.0738 84.5946);
70
+ --chart-1: oklch(0.7414 0.0738 84.5946);
71
+ --chart-2: oklch(0.3738 0.0116 258.3660);
72
+ --chart-3: oklch(0.9096 0.0167 91.5611);
73
+ --chart-4: oklch(0.5933 0.0472 87.9063);
74
+ --chart-5: oklch(0.2958 0.0084 255.5667);
75
+ --sidebar: oklch(0.9459 0.0165 91.5544);
76
+ --sidebar-foreground: oklch(0.2178 0 0);
77
+ --sidebar-primary: oklch(0.7414 0.0738 84.5946);
78
+ --sidebar-primary-foreground: oklch(1.0000 0 0);
79
+ --sidebar-accent: oklch(0.8986 0.0258 97.1423);
80
+ --sidebar-accent-foreground: oklch(0.2178 0 0);
81
+ --sidebar-border: oklch(0.8986 0.0258 97.1423);
82
+ --sidebar-ring: oklch(0.7414 0.0738 84.5946);
83
+ --radius: 0.75rem;
84
+ --shadow-x: 0px;
85
+ --shadow-y: 8px;
86
+ --shadow-blur: 15px;
87
+ --shadow-spread: 0px;
88
+ --shadow-opacity: 0.05;
89
+ --shadow-color: #000000;
90
+ --shadow-2xs: 0px 8px 15px 0px hsl(0 0% 0% / 0.03);
91
+ --shadow-xs: 0px 8px 15px 0px hsl(0 0% 0% / 0.03);
92
+ --shadow-sm: 0px 8px 15px 0px hsl(0 0% 0% / 0.05), 0px 1px 2px -1px hsl(0 0% 0% / 0.05);
93
+ --shadow: 0px 8px 15px 0px hsl(0 0% 0% / 0.05), 0px 1px 2px -1px hsl(0 0% 0% / 0.05);
94
+ --shadow-md: 0px 8px 15px 0px hsl(0 0% 0% / 0.05), 0px 2px 4px -1px hsl(0 0% 0% / 0.05);
95
+ --shadow-lg: 0px 8px 15px 0px hsl(0 0% 0% / 0.05), 0px 4px 6px -1px hsl(0 0% 0% / 0.05);
96
+ --shadow-xl: 0px 8px 15px 0px hsl(0 0% 0% / 0.05), 0px 8px 10px -1px hsl(0 0% 0% / 0.05);
97
+ --shadow-2xl: 0px 8px 15px 0px hsl(0 0% 0% / 0.13);
98
+ --tracking-normal: -0.02em;
99
+ --spacing: 0.25rem;
100
+ }
101
+
102
+ .dark:not([data-theme]) {
103
+ --background: oklch(0.1904 0.0040 106.7692);
104
+ --foreground: oklch(0.9755 0.0067 97.3510);
105
+ --card: oklch(0.2343 0.0038 106.6863);
106
+ --card-foreground: oklch(0.9755 0.0067 97.3510);
107
+ --popover: oklch(0.2343 0.0038 106.6863);
108
+ --popover-foreground: oklch(0.9755 0.0067 97.3510);
109
+ --primary: oklch(0.8039 0.0702 84.7579);
110
+ --primary-foreground: oklch(0.1904 0.0040 106.7692);
111
+ --secondary: oklch(0.2901 0.0061 78.2320);
112
+ --secondary-foreground: oklch(0.9755 0.0067 97.3510);
113
+ --muted: oklch(0.2596 0.0037 106.6523);
114
+ --muted-foreground: oklch(0.7006 0.0154 84.5911);
115
+ --accent: oklch(0.8039 0.0702 84.7579);
116
+ --accent-foreground: oklch(0.1904 0.0040 106.7692);
117
+ --destructive: oklch(0.6368 0.2078 25.3313);
118
+ --destructive-foreground: oklch(0.9755 0.0067 97.3510);
119
+ --border: oklch(0.2901 0.0061 78.2320);
120
+ --input: oklch(0.2901 0.0061 78.2320);
121
+ --ring: oklch(0.8039 0.0702 84.7579);
122
+ --chart-1: oklch(0.8039 0.0702 84.7579);
123
+ --chart-2: oklch(0.5498 0.0111 252.8780);
124
+ --chart-3: oklch(0.3142 0.0060 78.2414);
125
+ --chart-4: oklch(0.6926 0.0459 87.9527);
126
+ --chart-5: oklch(0.2170 0.0038 106.7146);
127
+ --sidebar: oklch(0.1904 0.0040 106.7692);
128
+ --sidebar-foreground: oklch(0.9755 0.0067 97.3510);
129
+ --sidebar-primary: oklch(0.8039 0.0702 84.7579);
130
+ --sidebar-primary-foreground: oklch(0.1904 0.0040 106.7692);
131
+ --sidebar-accent: oklch(0.2901 0.0061 78.2320);
132
+ --sidebar-accent-foreground: oklch(0.9755 0.0067 97.3510);
133
+ --sidebar-border: oklch(0.2901 0.0061 78.2320);
134
+ --sidebar-ring: oklch(0.8039 0.0702 84.7579);
135
+ --radius: 0.75rem;
136
+ --shadow-x: 0px;
137
+ --shadow-y: 10px;
138
+ --shadow-blur: 25px;
139
+ --shadow-spread: 0px;
140
+ --shadow-opacity: 0.28;
141
+ --shadow-color: #000000;
142
+ --shadow-2xs: 0px 10px 25px 0px hsl(0 0% 0% / 0.14);
143
+ --shadow-xs: 0px 10px 25px 0px hsl(0 0% 0% / 0.14);
144
+ --shadow-sm: 0px 10px 25px 0px hsl(0 0% 0% / 0.28), 0px 1px 2px -1px hsl(0 0% 0% / 0.28);
145
+ --shadow: 0px 10px 25px 0px hsl(0 0% 0% / 0.28), 0px 1px 2px -1px hsl(0 0% 0% / 0.28);
146
+ --shadow-md: 0px 10px 25px 0px hsl(0 0% 0% / 0.28), 0px 2px 4px -1px hsl(0 0% 0% / 0.28);
147
+ --shadow-lg: 0px 10px 25px 0px hsl(0 0% 0% / 0.28), 0px 4px 6px -1px hsl(0 0% 0% / 0.28);
148
+ --shadow-xl: 0px 10px 25px 0px hsl(0 0% 0% / 0.28), 0px 8px 10px -1px hsl(0 0% 0% / 0.28);
149
+ --shadow-2xl: 0px 10px 25px 0px hsl(0 0% 0% / 0.70);
150
+ }
151
+ /* Theme: Default — Debut */
152
+
153
+
154
+ /* Theme: Crimson — Debut */
155
+ *[data-theme="crimson"]{
156
+ .view-component-effects {
157
+ @apply block absolute aspect-square rounded-full;
158
+ }
159
+ .view-component-effects.effect-1 {
160
+ @apply top-[-5%] left-[-5%] w-[30%] bg-primary/10 blur-[120px];
161
+ }
162
+ .view-component-effects.effect-2 {
163
+ @apply top-[-20%] right-[-20%] w-[45%] bg-primary/10 blur-[150px];
164
+ }
165
+ .view-component-effects.effect-3 {
166
+ @apply bottom-[-30%] right-[20%] w-[25%] bg-primary/15 blur-[180px];
167
+ }
168
+ }
169
+
170
+ *[data-theme="crimson"] {
171
+ --background: oklch(0.9827 0.0152 325.69);
172
+ --background-50: oklch(0.9983 0.0091 325.69);
173
+ --background-100: oklch(0.9957 0.0109 325.69);
174
+ --background-200: oklch(0.9931 0.0125 325.69);
175
+ --background-300: oklch(0.9905 0.0137 325.69);
176
+ --background-400: oklch(0.9879 0.0144 325.69);
177
+ --background-500: var(--background);
178
+ --background-600: oklch(0.7862 0.0144 325.69);
179
+ --background-700: oklch(0.6486 0.0137 325.69);
180
+ --background-800: oklch(0.5110 0.0125 325.69);
181
+ --background-900: oklch(0.3734 0.0109 325.69);
182
+ --background-950: oklch(0.2358 0.0091 325.69);
183
+
184
+ --foreground: oklch(0.0000 0.0000 0.00);
185
+ --foreground-50: oklch(0.9000 0.0000 0.00);
186
+ --foreground-100: oklch(0.7500 0.0000 0.00);
187
+ --foreground-200: oklch(0.6000 0.0000 0.00);
188
+ --foreground-300: oklch(0.4500 0.0000 0.00);
189
+ --foreground-400: oklch(0.3000 0.0000 0.00);
190
+ --foreground-500: var(--foreground);
191
+ --foreground-600: oklch(0.0000 0.0000 0.00);
192
+ --foreground-700: oklch(0.0000 0.0000 0.00);
193
+ --foreground-800: oklch(0.0000 0.0000 0.00);
194
+ --foreground-900: oklch(0.0000 0.0000 0.00);
195
+ --foreground-950: oklch(0.0000 0.0000 0.00);
196
+
197
+ --card: oklch(0.9865 0.0140 325.69);
198
+ --card-50: oklch(0.9987 0.0084 325.69);
199
+ --card-100: oklch(0.9966 0.0101 325.69);
200
+ --card-200: oklch(0.9946 0.0115 325.69);
201
+ --card-300: oklch(0.9926 0.0126 325.69);
202
+ --card-400: oklch(0.9906 0.0133 325.69);
203
+ --card-500: var(--card);
204
+ --card-600: oklch(0.7892 0.0133 325.69);
205
+ --card-700: oklch(0.6511 0.0126 325.69);
206
+ --card-800: oklch(0.5130 0.0115 325.69);
207
+ --card-900: oklch(0.3749 0.0101 325.69);
208
+ --card-950: oklch(0.2368 0.0084 325.69);
209
+ --card-foreground: var(--foreground);
210
+ --popover: var(--card);
211
+ --popover-foreground: var(--foreground);
212
+
213
+ --primary: oklch(0.6041 0.1924 38.70);
214
+ --primary-50: oklch(0.9604 0.1154 38.70);
215
+ --primary-100: oklch(0.9010 0.1385 38.70);
216
+ --primary-200: oklch(0.8416 0.1578 38.70);
217
+ --primary-300: oklch(0.7823 0.1732 38.70);
218
+ --primary-400: oklch(0.7229 0.1828 38.70);
219
+ --primary-500: var(--primary);
220
+ --primary-600: oklch(0.4833 0.1828 38.70);
221
+ --primary-700: oklch(0.3987 0.1732 38.70);
222
+ --primary-800: oklch(0.3141 0.1578 38.70);
223
+ --primary-900: oklch(0.2296 0.1385 38.70);
224
+ --primary-950: oklch(0.1450 0.1154 38.70);
225
+
226
+ --primary-foreground: oklch(0.9827 0.0152 325.69);
227
+ --primary-foreground-50: oklch(0.9983 0.0091 325.69);
228
+ --primary-foreground-100: oklch(0.9957 0.0109 325.69);
229
+ --primary-foreground-200: oklch(0.9931 0.0125 325.69);
230
+ --primary-foreground-300: oklch(0.9905 0.0137 325.69);
231
+ --primary-foreground-400: oklch(0.9879 0.0144 325.69);
232
+ --primary-foreground-500: var(--primary-foreground);
233
+ --primary-foreground-600: oklch(0.7862 0.0144 325.69);
234
+ --primary-foreground-700: oklch(0.6486 0.0137 325.69);
235
+ --primary-foreground-800: oklch(0.5110 0.0125 325.69);
236
+ --primary-foreground-900: oklch(0.3734 0.0109 325.69);
237
+ --primary-foreground-950: oklch(0.2358 0.0091 325.69);
238
+
239
+ --secondary: oklch(0.4241 0.1606 29.44);
240
+ --secondary-50: oklch(0.9424 0.0964 29.44);
241
+ --secondary-100: oklch(0.8560 0.1156 29.44);
242
+ --secondary-200: oklch(0.7696 0.1317 29.44);
243
+ --secondary-300: oklch(0.6833 0.1445 29.44);
244
+ --secondary-400: oklch(0.5969 0.1526 29.44);
245
+ --secondary-500: var(--secondary);
246
+ --secondary-600: oklch(0.3393 0.1526 29.44);
247
+ --secondary-700: oklch(0.2799 0.1445 29.44);
248
+ --secondary-800: oklch(0.2205 0.1317 29.44);
249
+ --secondary-900: oklch(0.1612 0.1156 29.44);
250
+ --secondary-950: oklch(0.1018 0.0964 29.44);
251
+
252
+ --secondary-foreground: oklch(0.9827 0.0152 325.69);
253
+ --secondary-foreground-50: oklch(0.9983 0.0091 325.69);
254
+ --secondary-foreground-100: oklch(0.9957 0.0109 325.69);
255
+ --secondary-foreground-200: oklch(0.9931 0.0125 325.69);
256
+ --secondary-foreground-300: oklch(0.9905 0.0137 325.69);
257
+ --secondary-foreground-400: oklch(0.9879 0.0144 325.69);
258
+ --secondary-foreground-500: var(--secondary-foreground);
259
+ --secondary-foreground-600: oklch(0.7862 0.0144 325.69);
260
+ --secondary-foreground-700: oklch(0.6486 0.0137 325.69);
261
+ --secondary-foreground-800: oklch(0.5110 0.0125 325.69);
262
+ --secondary-foreground-900: oklch(0.3734 0.0109 325.69);
263
+ --secondary-foreground-950: oklch(0.2358 0.0091 325.69);
264
+
265
+ --muted: oklch(0.9500 0.0180 330.00);
266
+ --muted-50: oklch(0.9950 0.0108 330.00);
267
+ --muted-100: oklch(0.9875 0.0130 330.00);
268
+ --muted-200: oklch(0.9800 0.0148 330.00);
269
+ --muted-300: oklch(0.9725 0.0162 330.00);
270
+ --muted-400: oklch(0.9650 0.0171 330.00);
271
+ --muted-500: var(--muted);
272
+ --muted-600: oklch(0.7600 0.0171 330.00);
273
+ --muted-700: oklch(0.6270 0.0162 330.00);
274
+ --muted-800: oklch(0.4940 0.0148 330.00);
275
+ --muted-900: oklch(0.3610 0.0130 330.00);
276
+ --muted-950: oklch(0.2280 0.0108 330.00);
277
+
278
+ --muted-foreground: oklch(0.5200 0.0450 330.00);
279
+ --muted-foreground-50: oklch(0.9520 0.0270 330.00);
280
+ --muted-foreground-100: oklch(0.8800 0.0324 330.00);
281
+ --muted-foreground-200: oklch(0.8080 0.0369 330.00);
282
+ --muted-foreground-300: oklch(0.7360 0.0405 330.00);
283
+ --muted-foreground-400: oklch(0.6640 0.0427 330.00);
284
+ --muted-foreground-500: var(--muted-foreground);
285
+ --muted-foreground-600: oklch(0.4160 0.0427 330.00);
286
+ --muted-foreground-700: oklch(0.3432 0.0405 330.00);
287
+ --muted-foreground-800: oklch(0.2704 0.0369 330.00);
288
+ --muted-foreground-900: oklch(0.1976 0.0324 330.00);
289
+ --muted-foreground-950: oklch(0.1248 0.0270 330.00);
290
+
291
+ --accent: oklch(0.9400 0.0240 330.00);
292
+ --accent-50: oklch(0.9940 0.0144 330.00);
293
+ --accent-100: oklch(0.9850 0.0173 330.00);
294
+ --accent-200: oklch(0.9760 0.0197 330.00);
295
+ --accent-300: oklch(0.9670 0.0216 330.00);
296
+ --accent-400: oklch(0.9580 0.0228 330.00);
297
+ --accent-500: var(--accent);
298
+ --accent-600: oklch(0.7520 0.0228 330.00);
299
+ --accent-700: oklch(0.6204 0.0216 330.00);
300
+ --accent-800: oklch(0.4888 0.0197 330.00);
301
+ --accent-900: oklch(0.3572 0.0173 330.00);
302
+ --accent-950: oklch(0.2256 0.0144 330.00);
303
+
304
+ --accent-foreground: oklch(0.3000 0.0500 330.00);
305
+ --accent-foreground-50: oklch(0.9300 0.0300 330.00);
306
+ --accent-foreground-100: oklch(0.8250 0.0360 330.00);
307
+ --accent-foreground-200: oklch(0.7200 0.0410 330.00);
308
+ --accent-foreground-300: oklch(0.6150 0.0450 330.00);
309
+ --accent-foreground-400: oklch(0.5100 0.0475 330.00);
310
+ --accent-foreground-500: var(--accent-foreground);
311
+ --accent-foreground-600: oklch(0.2400 0.0475 330.00);
312
+ --accent-foreground-700: oklch(0.1980 0.0450 330.00);
313
+ --accent-foreground-800: oklch(0.1560 0.0410 330.00);
314
+ --accent-foreground-900: oklch(0.1140 0.0360 330.00);
315
+ --accent-foreground-950: oklch(0.0720 0.0300 330.00);
316
+
317
+ --destructive: oklch(0.5770 0.2450 27.3250);
318
+ --destructive-50: oklch(0.958 0.147 27.33);
319
+ --destructive-100: oklch(0.894 0.176 27.33);
320
+ --destructive-200: oklch(0.831 0.201 27.33);
321
+ --destructive-300: oklch(0.767 0.221 27.33);
322
+ --destructive-400: oklch(0.704 0.233 27.33);
323
+ --destructive-500: var(--destructive);
324
+ --destructive-600: oklch(0.462 0.233 27.33);
325
+ --destructive-700: oklch(0.381 0.221 27.33);
326
+ --destructive-800: oklch(0.3 0.201 27.33);
327
+ --destructive-900: oklch(0.219 0.176 27.33);
328
+ --destructive-950: oklch(0.138 0.147 27.33);
329
+
330
+ --destructive-foreground: oklch(1 0 0);
331
+ --destructive-foreground-50: oklch(1 0 0);
332
+ --destructive-foreground-100: oklch(1 0 0);
333
+ --destructive-foreground-200: oklch(1 0 0);
334
+ --destructive-foreground-300: oklch(1 0 0);
335
+ --destructive-foreground-400: oklch(1 0 0);
336
+ --destructive-foreground-500: var(--destructive-foreground);
337
+ --destructive-foreground-600: oklch(0.8 0 0);
338
+ --destructive-foreground-700: oklch(0.66 0 0);
339
+ --destructive-foreground-800: oklch(0.52 0 0);
340
+ --destructive-foreground-900: oklch(0.38 0 0);
341
+ --destructive-foreground-950: oklch(0.24 0 0);
342
+
343
+ --success: oklch(0.5960 0.1450 163.225);
344
+ --success-foreground: oklch(1 0 0);
345
+ --warning: oklch(0.6660 0.1790 58.318);
346
+ --warning-foreground: oklch(0.1500 0.0400 58.000);
347
+ --info: oklch(0.5880 0.1580 241.966);
348
+ --info-foreground: oklch(1 0 0);
349
+
350
+ --border: oklch(0.9000 0.0200 330.00);
351
+ --input: oklch(0.9000 0.0200 330.00);
352
+ --ring: oklch(0.6500 0.1500 38.70);
353
+ --chart-1: oklch(0.6041 0.1924 38.70);
354
+ --chart-2: oklch(0.4241 0.1606 29.44);
355
+ --chart-3: oklch(0.5500 0.1300 330.00);
356
+ --chart-4: oklch(0.7000 0.1400 15.00);
357
+ --chart-5: oklch(0.3500 0.1200 15.00);
358
+
359
+ --sidebar: oklch(0.9520 0.0110 325.69);
360
+ --sidebar-50: oklch(0.9952 0.0066 325.69);
361
+ --sidebar-100: oklch(0.9880 0.0079 325.69);
362
+ --sidebar-200: oklch(0.9808 0.0090 325.69);
363
+ --sidebar-300: oklch(0.9736 0.0099 325.69);
364
+ --sidebar-400: oklch(0.9664 0.0104 325.69);
365
+ --sidebar-500: var(--sidebar);
366
+ --sidebar-600: oklch(0.7616 0.0104 325.69);
367
+ --sidebar-700: oklch(0.6283 0.0099 325.69);
368
+ --sidebar-800: oklch(0.4950 0.0090 325.69);
369
+ --sidebar-900: oklch(0.3618 0.0079 325.69);
370
+ --sidebar-950: oklch(0.2285 0.0066 325.69);
371
+
372
+ --sidebar-foreground: oklch(0.0000 0.0000 0.00);
373
+ --sidebar-foreground-50: oklch(0.9000 0.0000 0.00);
374
+ --sidebar-foreground-100: oklch(0.7500 0.0000 0.00);
375
+ --sidebar-foreground-200: oklch(0.6000 0.0000 0.00);
376
+ --sidebar-foreground-300: oklch(0.4500 0.0000 0.00);
377
+ --sidebar-foreground-400: oklch(0.3000 0.0000 0.00);
378
+ --sidebar-foreground-500: var(--sidebar-foreground);
379
+ --sidebar-foreground-600: oklch(0.0000 0.0000 0.00);
380
+ --sidebar-foreground-700: oklch(0.0000 0.0000 0.00);
381
+ --sidebar-foreground-800: oklch(0.0000 0.0000 0.00);
382
+ --sidebar-foreground-900: oklch(0.0000 0.0000 0.00);
383
+ --sidebar-foreground-950: oklch(0.0000 0.0000 0.00);
384
+ --sidebar-primary: var(--primary);
385
+ --sidebar-primary-foreground: var(--primary-foreground);
386
+ --sidebar-accent: var(--accent);
387
+ --sidebar-accent-foreground: var(--accent-foreground);
388
+ --sidebar-border: var(--border);
389
+ --sidebar-ring: var(--ring);
390
+ --radius: 0.625rem;
391
+ --shadow-x: 0;
392
+ --shadow-y: 1px;
393
+ --shadow-blur: 3px;
394
+ --shadow-spread: 0px;
395
+ --shadow-opacity: 0.1;
396
+ --shadow-color: oklch(0 0 0);
397
+ --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
398
+ --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
399
+ --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
400
+ --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
401
+ --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
402
+ --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
403
+ --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
404
+ --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);
405
+ --tracking-normal: 0em;
406
+ --spacing: 0.25rem;
407
+ --shadow-offset-x: 0;
408
+ --shadow-offset-y: 1px;
409
+ --letter-spacing: 0em;
410
+ }
411
+
412
+ *.dark[data-theme="crimson"] {
413
+
414
+ --background: oklch(0.1444 0.0209 330.84);
415
+ --background-50: oklch(0.9144 0.0125 330.84);
416
+ --background-100: oklch(0.7861 0.0150 330.84);
417
+ --background-200: oklch(0.6578 0.0171 330.84);
418
+ --background-300: oklch(0.5294 0.0188 330.84);
419
+ --background-400: oklch(0.4011 0.0199 330.84);
420
+ --background-500: var(--background);
421
+ --background-600: oklch(0.1155 0.0199 330.84);
422
+ --background-700: oklch(0.0953 0.0188 330.84);
423
+ --background-800: oklch(0.0751 0.0171 330.84);
424
+ --background-900: oklch(0.0549 0.0150 330.84);
425
+ --background-950: oklch(0.0347 0.0125 330.84);
426
+
427
+ --foreground: oklch(0.9827 0.0152 325.69);
428
+ --foreground-50: oklch(0.9983 0.0091 325.69);
429
+ --foreground-100: oklch(0.9957 0.0109 325.69);
430
+ --foreground-200: oklch(0.9931 0.0125 325.69);
431
+ --foreground-300: oklch(0.9905 0.0137 325.69);
432
+ --foreground-400: oklch(0.9879 0.0144 325.69);
433
+ --foreground-500: var(--foreground);
434
+ --foreground-600: oklch(0.7862 0.0144 325.69);
435
+ --foreground-700: oklch(0.6486 0.0137 325.69);
436
+ --foreground-800: oklch(0.5110 0.0125 325.69);
437
+ --foreground-900: oklch(0.3734 0.0109 325.69);
438
+ --foreground-950: oklch(0.2358 0.0091 325.69);
439
+
440
+ --card: oklch(0.1700 0.0200 330.84);
441
+ --card-50: oklch(0.9170 0.0120 330.84);
442
+ --card-100: oklch(0.7925 0.0144 330.84);
443
+ --card-200: oklch(0.6680 0.0164 330.84);
444
+ --card-300: oklch(0.5435 0.0180 330.84);
445
+ --card-400: oklch(0.4190 0.0190 330.84);
446
+ --card-500: var(--card);
447
+ --card-600: oklch(0.1360 0.0190 330.84);
448
+ --card-700: oklch(0.1122 0.0180 330.84);
449
+ --card-800: oklch(0.0884 0.0164 330.84);
450
+ --card-900: oklch(0.0646 0.0144 330.84);
451
+ --card-950: oklch(0.0408 0.0120 330.84);
452
+ --card-foreground: var(--foreground);
453
+ --popover: var(--card);
454
+ --popover-foreground: var(--foreground);
455
+
456
+ --primary: oklch(0.6041 0.1924 38.70);
457
+ --primary-50: oklch(0.9604 0.1154 38.70);
458
+ --primary-100: oklch(0.9010 0.1385 38.70);
459
+ --primary-200: oklch(0.8416 0.1578 38.70);
460
+ --primary-300: oklch(0.7823 0.1732 38.70);
461
+ --primary-400: oklch(0.7229 0.1828 38.70);
462
+ --primary-500: var(--primary);
463
+ --primary-600: oklch(0.4833 0.1828 38.70);
464
+ --primary-700: oklch(0.3987 0.1732 38.70);
465
+ --primary-800: oklch(0.3141 0.1578 38.70);
466
+ --primary-900: oklch(0.2296 0.1385 38.70);
467
+ --primary-950: oklch(0.1450 0.1154 38.70);
468
+
469
+ --primary-foreground: oklch(0.9827 0.0152 325.69);
470
+ --primary-foreground-50: oklch(0.9983 0.0091 325.69);
471
+ --primary-foreground-100: oklch(0.9957 0.0109 325.69);
472
+ --primary-foreground-200: oklch(0.9931 0.0125 325.69);
473
+ --primary-foreground-300: oklch(0.9905 0.0137 325.69);
474
+ --primary-foreground-400: oklch(0.9879 0.0144 325.69);
475
+ --primary-foreground-500: var(--primary-foreground);
476
+ --primary-foreground-600: oklch(0.7862 0.0144 325.69);
477
+ --primary-foreground-700: oklch(0.6486 0.0137 325.69);
478
+ --primary-foreground-800: oklch(0.5110 0.0125 325.69);
479
+ --primary-foreground-900: oklch(0.3734 0.0109 325.69);
480
+ --primary-foreground-950: oklch(0.2358 0.0091 325.69);
481
+
482
+ --secondary: oklch(0.4241 0.1606 29.44);
483
+ --secondary-50: oklch(0.9424 0.0964 29.44);
484
+ --secondary-100: oklch(0.8560 0.1156 29.44);
485
+ --secondary-200: oklch(0.7696 0.1317 29.44);
486
+ --secondary-300: oklch(0.6833 0.1445 29.44);
487
+ --secondary-400: oklch(0.5969 0.1526 29.44);
488
+ --secondary-500: var(--secondary);
489
+ --secondary-600: oklch(0.3393 0.1526 29.44);
490
+ --secondary-700: oklch(0.2799 0.1445 29.44);
491
+ --secondary-800: oklch(0.2205 0.1317 29.44);
492
+ --secondary-900: oklch(0.1612 0.1156 29.44);
493
+ --secondary-950: oklch(0.1018 0.0964 29.44);
494
+
495
+ --secondary-foreground: oklch(0.9827 0.0152 325.69);
496
+ --secondary-foreground-50: oklch(0.9983 0.0091 325.69);
497
+ --secondary-foreground-100: oklch(0.9957 0.0109 325.69);
498
+ --secondary-foreground-200: oklch(0.9931 0.0125 325.69);
499
+ --secondary-foreground-300: oklch(0.9905 0.0137 325.69);
500
+ --secondary-foreground-400: oklch(0.9879 0.0144 325.69);
501
+ --secondary-foreground-500: var(--secondary-foreground);
502
+ --secondary-foreground-600: oklch(0.7862 0.0144 325.69);
503
+ --secondary-foreground-700: oklch(0.6486 0.0137 325.69);
504
+ --secondary-foreground-800: oklch(0.5110 0.0125 325.69);
505
+ --secondary-foreground-900: oklch(0.3734 0.0109 325.69);
506
+ --secondary-foreground-950: oklch(0.2358 0.0091 325.69);
507
+
508
+ --sidebar: oklch(0.1550 0.0190 330.84);
509
+ --sidebar-50: oklch(0.9155 0.0114 330.84);
510
+ --sidebar-100: oklch(0.7888 0.0137 330.84);
511
+ --sidebar-200: oklch(0.6620 0.0156 330.84);
512
+ --sidebar-300: oklch(0.5353 0.0171 330.84);
513
+ --sidebar-400: oklch(0.4085 0.0181 330.84);
514
+ --sidebar-500: var(--sidebar);
515
+ --sidebar-600: oklch(0.1240 0.0181 330.84);
516
+ --sidebar-700: oklch(0.1023 0.0171 330.84);
517
+ --sidebar-800: oklch(0.0806 0.0156 330.84);
518
+ --sidebar-900: oklch(0.0589 0.0137 330.84);
519
+ --sidebar-950: oklch(0.0372 0.0114 330.84);
520
+ --muted-foreground: oklch(0.6600 0.0450 330.00);
521
+ --muted-foreground-50: oklch(0.9660 0.0270 330.00);
522
+ --muted-foreground-100: oklch(0.9150 0.0324 330.00);
523
+ --muted-foreground-200: oklch(0.8640 0.0369 330.00);
524
+ --muted-foreground-300: oklch(0.8130 0.0405 330.00);
525
+ --muted-foreground-400: oklch(0.7620 0.0427 330.00);
526
+ --muted-foreground-500: var(--muted-foreground);
527
+ --muted-foreground-600: oklch(0.5280 0.0427 330.00);
528
+ --muted-foreground-700: oklch(0.4356 0.0405 330.00);
529
+ --muted-foreground-800: oklch(0.3432 0.0369 330.00);
530
+ --muted-foreground-900: oklch(0.2508 0.0324 330.00);
531
+ --muted-foreground-950: oklch(0.1584 0.0270 330.00);
532
+
533
+ --muted: oklch(0.2000 0.0300 330.00);
534
+ --muted-50: oklch(0.9200 0.0180 330.00);
535
+ --muted-100: oklch(0.8000 0.0216 330.00);
536
+ --muted-200: oklch(0.6800 0.0246 330.00);
537
+ --muted-300: oklch(0.5600 0.0270 330.00);
538
+ --muted-400: oklch(0.4400 0.0285 330.00);
539
+ --muted-500: var(--muted);
540
+ --muted-600: oklch(0.1600 0.0285 330.00);
541
+ --muted-700: oklch(0.1320 0.0270 330.00);
542
+ --muted-800: oklch(0.1040 0.0246 330.00);
543
+ --muted-900: oklch(0.0760 0.0216 330.00);
544
+ --muted-950: oklch(0.0480 0.0180 330.00);
545
+
546
+ --accent: oklch(0.2200 0.0350 330.00);
547
+ --accent-50: oklch(0.9220 0.0210 330.00);
548
+ --accent-100: oklch(0.8050 0.0252 330.00);
549
+ --accent-200: oklch(0.6880 0.0287 330.00);
550
+ --accent-300: oklch(0.5710 0.0315 330.00);
551
+ --accent-400: oklch(0.4540 0.0333 330.00);
552
+ --accent-500: var(--accent);
553
+ --accent-600: oklch(0.1760 0.0333 330.00);
554
+ --accent-700: oklch(0.1452 0.0315 330.00);
555
+ --accent-800: oklch(0.1144 0.0287 330.00);
556
+ --accent-900: oklch(0.0836 0.0252 330.00);
557
+ --accent-950: oklch(0.0528 0.0210 330.00);
558
+ --accent-foreground: oklch(0.9800 0.0150 325.69);
559
+ --accent-foreground-50: oklch(0.9980 0.0090 325.69);
560
+ --accent-foreground-100: oklch(0.9950 0.0108 325.69);
561
+ --accent-foreground-200: oklch(0.9920 0.0123 325.69);
562
+ --accent-foreground-300: oklch(0.9890 0.0135 325.69);
563
+ --accent-foreground-400: oklch(0.9860 0.0142 325.69);
564
+ --accent-foreground-500: var(--accent-foreground);
565
+ --accent-foreground-600: oklch(0.7840 0.0142 325.69);
566
+ --accent-foreground-700: oklch(0.6468 0.0135 325.69);
567
+ --accent-foreground-800: oklch(0.5096 0.0123 325.69);
568
+ --accent-foreground-900: oklch(0.3724 0.0108 325.69);
569
+ --accent-foreground-950: oklch(0.2352 0.0090 325.69);
570
+
571
+ --border: oklch(0.2600 0.0280 330.84);
572
+ --input: oklch(0.2400 0.0280 330.84);
573
+
574
+ --ring: oklch(0.6200 0.1500 38.70);
575
+
576
+ --destructive: oklch(0.7040 0.1910 22.2160);
577
+ --destructive-50: oklch(0.97 0.115 22.22);
578
+ --destructive-100: oklch(0.926 0.138 22.22);
579
+ --destructive-200: oklch(0.882 0.157 22.22);
580
+ --destructive-300: oklch(0.837 0.172 22.22);
581
+ --destructive-400: oklch(0.793 0.181 22.22);
582
+ --destructive-500: var(--destructive);
583
+ --destructive-600: oklch(0.563 0.181 22.22);
584
+ --destructive-700: oklch(0.465 0.172 22.22);
585
+ --destructive-800: oklch(0.366 0.157 22.22);
586
+ --destructive-900: oklch(0.268 0.138 22.22);
587
+ --destructive-950: oklch(0.169 0.115 22.22);
588
+ --destructive-foreground: oklch(0.9850 0 0);
589
+ --destructive-foreground-50: oklch(0.999 0 0);
590
+ --destructive-foreground-100: oklch(0.996 0 0);
591
+ --destructive-foreground-200: oklch(0.994 0 0);
592
+ --destructive-foreground-300: oklch(0.992 0 0);
593
+ --destructive-foreground-400: oklch(0.99 0 0);
594
+ --destructive-foreground-500: var(--destructive-foreground);
595
+ --destructive-foreground-600: oklch(0.788 0 0);
596
+ --destructive-foreground-700: oklch(0.65 0 0);
597
+ --destructive-foreground-800: oklch(0.512 0 0);
598
+ --destructive-foreground-900: oklch(0.374 0 0);
599
+ --destructive-foreground-950: oklch(0.236 0 0);
600
+
601
+ --success: oklch(0.7230 0.2190 149.579);
602
+ --success-foreground: oklch(0.2620 0.0510 172.552);
603
+ --warning: oklch(0.7690 0.1880 70.080);
604
+ --warning-foreground: oklch(0.2100 0.0500 60.000);
605
+ --info: oklch(0.6680 0.1280 241.906);
606
+ --info-foreground: oklch(0.2800 0.0640 261.055);
607
+
608
+ --sidebar-primary: var(--primary);
609
+ --sidebar-primary-foreground: var(--primary-foreground);
610
+
611
+ --sidebar-accent: var(--accent);
612
+ --sidebar-accent-foreground: var(--accent-foreground);
613
+
614
+ --sidebar-border: var(--border);
615
+
616
+ --chart-1: oklch(0.6041 0.1924 38.70);
617
+ --chart-2: oklch(0.4241 0.1606 29.44);
618
+ --chart-3: oklch(0.5500 0.1300 330.00);
619
+ --chart-4: oklch(0.7000 0.1400 15.00);
620
+ --chart-5: oklch(0.3500 0.1200 15.00);
621
+ --radius: 0.625rem;
622
+ --shadow-x: 0;
623
+ --shadow-y: 1px;
624
+ --shadow-blur: 3px;
625
+ --shadow-spread: 0px;
626
+ --shadow-opacity: 0.1;
627
+ --shadow-color: oklch(0 0 0);
628
+ --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
629
+ --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
630
+ --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
631
+ --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
632
+ --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
633
+ --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
634
+ --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
635
+ --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);
636
+ --sidebar-foreground: oklch(0.9827 0.0152 325.69);
637
+ --sidebar-foreground-50: oklch(0.9983 0.0091 325.69);
638
+ --sidebar-foreground-100: oklch(0.9957 0.0109 325.69);
639
+ --sidebar-foreground-200: oklch(0.9931 0.0125 325.69);
640
+ --sidebar-foreground-300: oklch(0.9905 0.0137 325.69);
641
+ --sidebar-foreground-400: oklch(0.9879 0.0144 325.69);
642
+ --sidebar-foreground-500: var(--sidebar-foreground);
643
+ --sidebar-foreground-600: oklch(0.7862 0.0144 325.69);
644
+ --sidebar-foreground-700: oklch(0.6486 0.0137 325.69);
645
+ --sidebar-foreground-800: oklch(0.5110 0.0125 325.69);
646
+ --sidebar-foreground-900: oklch(0.3734 0.0109 325.69);
647
+ --sidebar-foreground-950: oklch(0.2358 0.0091 325.69);
648
+ --sidebar-ring: var(--ring);
649
+ --shadow-offset-x: 0;
650
+ --shadow-offset-y: 1px;
651
+ --letter-spacing: 0em;
652
+ --spacing: 0.25rem;
653
+ }
654
+ /* Theme: Crimson — Fin */
655
+
656
+
657
+
658
+ /* Theme: Cramoisy — Debut */
659
+ *[data-theme="crimson"]{
660
+ .view-component-effects {
661
+ @apply block absolute aspect-square rounded-full;
662
+ }
663
+ .view-component-effects.effect-1 {
664
+ @apply top-[-5%] left-[-5%] w-[30%] bg-primary/10 blur-[120px];
665
+ }
666
+ .view-component-effects.effect-2 {
667
+ @apply top-[-20%] right-[-20%] w-[45%] bg-primary/10 blur-[150px];
668
+ }
669
+ .view-component-effects.effect-3 {
670
+ @apply bottom-[-30%] right-[20%] w-[25%] bg-primary/15 blur-[180px];
671
+ }
672
+ }
673
+
674
+ *[data-theme="cramoisy"] {
675
+ --background: oklch(1.0000 0 0);
676
+ --foreground: oklch(0.2674 0.0090 248.1657);
677
+ --card: oklch(1.0000 0 0);
678
+ --card-foreground: oklch(0.2674 0.0090 248.1657);
679
+ --popover: oklch(1.0000 0 0);
680
+ --popover-foreground: oklch(0.2674 0.0090 248.1657);
681
+ --primary: oklch(0.5778 0.2282 26.5713);
682
+ --primary-foreground: oklch(1.0000 0 0);
683
+ --secondary: oklch(0.9691 0.0017 247.8397);
684
+ --secondary-foreground: oklch(0.3182 0.0115 248.1899);
685
+ --muted: oklch(0.9768 0.0013 247.8346);
686
+ --muted-foreground: oklch(0.5052 0.0205 248.2336);
687
+ --accent: oklch(0.9577 0.0187 12.8348);
688
+ --accent-foreground: oklch(0.4101 0.1589 25.8706);
689
+ --destructive: oklch(0.6356 0.2082 25.3782);
690
+ --destructive-foreground: oklch(1.0000 0 0);
691
+ --border: oklch(0.9222 0.0044 247.8716);
692
+ --input: oklch(0.9222 0.0044 247.8716);
693
+ --ring: oklch(0.5778 0.2282 26.5713);
694
+ --chart-1: oklch(0.5778 0.2282 26.5713);
695
+ --chart-2: oklch(0.3182 0.0115 248.1899);
696
+ --chart-3: oklch(0.7176 0.1902 149.6000);
697
+ --chart-4: oklch(0.8562 0.1696 90.9651);
698
+ --chart-5: oklch(0.7159 0.1804 49.4714);
699
+ --sidebar: oklch(0.9846 0.0009 247.8294);
700
+ --sidebar-foreground: oklch(0.3182 0.0115 248.1899);
701
+ --sidebar-primary: oklch(0.5778 0.2282 26.5713);
702
+ --sidebar-primary-foreground: oklch(1.0000 0 0);
703
+ --sidebar-accent: oklch(0.9367 0.0283 13.0620);
704
+ --sidebar-accent-foreground: oklch(0.4101 0.1589 25.8706);
705
+ --sidebar-border: oklch(0.9379 0.0035 247.8606);
706
+ --sidebar-ring: oklch(0.5778 0.2282 26.5713);
707
+ --font-sans: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
708
+ --font-serif: Georgia, serif;
709
+ --font-mono: JetBrains Mono, Menlo, monospace;
710
+ --radius: 0.5rem;
711
+ --shadow-x: 0px;
712
+ --shadow-y: 1px;
713
+ --shadow-blur: 4px;
714
+ --shadow-spread: 0px;
715
+ --shadow-opacity: 0.05;
716
+ --shadow-color: 0 0 0;
717
+ --shadow-2xs: 0px 1px 4px 0px hsl(0 0 0 / 0.03);
718
+ --shadow-xs: 0px 1px 4px 0px hsl(0 0 0 / 0.03);
719
+ --shadow-sm: 0px 1px 4px 0px hsl(0 0 0 / 0.05), 0px 1px 2px -1px hsl(0 0 0 / 0.05);
720
+ --shadow: 0px 1px 4px 0px hsl(0 0 0 / 0.05), 0px 1px 2px -1px hsl(0 0 0 / 0.05);
721
+ --shadow-md: 0px 1px 4px 0px hsl(0 0 0 / 0.05), 0px 2px 4px -1px hsl(0 0 0 / 0.05);
722
+ --shadow-lg: 0px 1px 4px 0px hsl(0 0 0 / 0.05), 0px 4px 6px -1px hsl(0 0 0 / 0.05);
723
+ --shadow-xl: 0px 1px 4px 0px hsl(0 0 0 / 0.05), 0px 8px 10px -1px hsl(0 0 0 / 0.05);
724
+ --shadow-2xl: 0px 1px 4px 0px hsl(0 0 0 / 0.13);
725
+ --tracking-normal: -0.01em;
726
+ --spacing: 0.25rem;
727
+ }
728
+
729
+ *.dark[data-theme="cramoisy"] {
730
+ --background: oklch(0.1450 0.0028 247.4358);
731
+ --foreground: oklch(0.9848 0 0);
732
+ --card: oklch(0.1803 0.0047 248.0863);
733
+ --card-foreground: oklch(0.9848 0 0);
734
+ --popover: oklch(0.1803 0.0047 248.0863);
735
+ --popover-foreground: oklch(0.9848 0 0);
736
+ --primary: oklch(0.5778 0.2282 26.5713);
737
+ --primary-foreground: oklch(1.0000 0 0);
738
+ --secondary: oklch(0.2674 0.0090 248.1657);
739
+ --secondary-foreground: oklch(0.9848 0 0);
740
+ --muted: oklch(0.2357 0.0075 248.1444);
741
+ --muted-foreground: oklch(0.7200 0.0165 248.0568);
742
+ --accent: oklch(0.2566 0.0939 23.8695);
743
+ --accent-foreground: oklch(0.7958 0.1022 15.2778);
744
+ --destructive: oklch(0.3901 0.1297 25.5736);
745
+ --destructive-foreground: oklch(0.9848 0 0);
746
+ --border: oklch(0.2777 0.0095 248.1714);
747
+ --input: oklch(0.2777 0.0095 248.1714);
748
+ --ring: oklch(0.5778 0.2282 26.5713);
749
+ --chart-1: oklch(0.5778 0.2282 26.5713);
750
+ --chart-2: oklch(0.8428 0.0090 247.9335);
751
+ --chart-3: oklch(0.7176 0.1902 149.6000);
752
+ --chart-4: oklch(0.8562 0.1696 90.9651);
753
+ --chart-5: oklch(0.7159 0.1804 49.4714);
754
+ --sidebar: oklch(0.1917 0.0052 248.1014);
755
+ --sidebar-foreground: oklch(0.9222 0.0044 247.8716);
756
+ --sidebar-primary: oklch(0.5778 0.2282 26.5713);
757
+ --sidebar-primary-foreground: oklch(1.0000 0 0);
758
+ --sidebar-accent: oklch(0.2566 0.0939 23.8695);
759
+ --sidebar-accent-foreground: oklch(0.8446 0.0747 14.3349);
760
+ --sidebar-border: oklch(0.2569 0.0085 248.1593);
761
+ --sidebar-ring: oklch(0.5778 0.2282 26.5713);
762
+ --font-sans: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
763
+ --font-serif: Georgia, serif;
764
+ --font-mono: JetBrains Mono, Menlo, monospace;
765
+ --radius: 0.5rem;
766
+ --shadow-x: 0px;
767
+ --shadow-y: 2px;
768
+ --shadow-blur: 8px;
769
+ --shadow-spread: 0px;
770
+ --shadow-opacity: 0.4;
771
+ --shadow-color: 0 0 0;
772
+ --shadow-2xs: 0px 2px 8px 0px hsl(0 0 0 / 0.20);
773
+ --shadow-xs: 0px 2px 8px 0px hsl(0 0 0 / 0.20);
774
+ --shadow-sm: 0px 2px 8px 0px hsl(0 0 0 / 0.40), 0px 1px 2px -1px hsl(0 0 0 / 0.40);
775
+ --shadow: 0px 2px 8px 0px hsl(0 0 0 / 0.40), 0px 1px 2px -1px hsl(0 0 0 / 0.40);
776
+ --shadow-md: 0px 2px 8px 0px hsl(0 0 0 / 0.40), 0px 2px 4px -1px hsl(0 0 0 / 0.40);
777
+ --shadow-lg: 0px 2px 8px 0px hsl(0 0 0 / 0.40), 0px 4px 6px -1px hsl(0 0 0 / 0.40);
778
+ --shadow-xl: 0px 2px 8px 0px hsl(0 0 0 / 0.40), 0px 8px 10px -1px hsl(0 0 0 / 0.40);
779
+ --shadow-2xl: 0px 2px 8px 0px hsl(0 0 0 / 1.00);
780
+ }
781
+ /* Theme: Cramoisy — Fin */
782
+
783
+
784
+
785
+ /* Theme: Shalk — Debut */
786
+ *[data-theme="shalk"]{
787
+ .view-component-effects {
788
+ @apply block absolute aspect-square rounded-full;
789
+ }
790
+ .view-component-effects.effect-1 {
791
+ @apply top-[-5%] left-[-5%] w-[30%] bg-primary/10 blur-[120px];
792
+ }
793
+ .view-component-effects.effect-2 {
794
+ @apply top-[-20%] right-[-20%] w-[45%] bg-primary/10 blur-[150px];
795
+ }
796
+ .view-component-effects.effect-3 {
797
+ @apply bottom-[-30%] right-[20%] w-[25%] bg-primary/15 blur-[180px];
798
+ }
799
+ }
800
+
801
+ *[data-theme="shalk"] {
802
+ --background: oklch(0.9745 0.0079 253.8524);
803
+ --foreground: oklch(0.1443 0.0191 261.1564);
804
+ --card: oklch(0.9897 0.0051 247.8755);
805
+ --card-foreground: oklch(0.1443 0.0191 261.1564);
806
+ --popover: oklch(0.9897 0.0051 247.8755);
807
+ --popover-foreground: oklch(0.1443 0.0191 261.1564);
808
+ --primary: oklch(0.2038 0.0264 260.9332);
809
+ --primary-foreground: oklch(0.9851 0 0);
810
+ --secondary: oklch(0.9442 0.0137 258.3455);
811
+ --secondary-foreground: oklch(0.2038 0.0264 260.9332);
812
+ --muted: oklch(0.9442 0.0137 258.3455);
813
+ --muted-foreground: oklch(0.5195 0.0188 262.6912);
814
+ --accent: oklch(0.9442 0.0137 258.3455);
815
+ --accent-foreground: oklch(0.2038 0.0264 260.9332);
816
+ --destructive: oklch(0.5770 0.2450 27.3250);
817
+ --destructive-foreground: oklch(1 0 0);
818
+ --border: oklch(0.9013 0.0156 257.2001);
819
+ --input: oklch(0.9013 0.0156 257.2001);
820
+ --ring: oklch(0.6503 0.0220 257.4949);
821
+ --chart-1: oklch(0.8100 0.1000 252);
822
+ --chart-2: oklch(0.6200 0.1900 260);
823
+ --chart-3: oklch(0.5500 0.2200 263);
824
+ --chart-4: oklch(0.4900 0.2200 264);
825
+ --chart-5: oklch(0.4200 0.1800 266);
826
+ --sidebar: oklch(0.9601 0.0103 261.7889);
827
+ --sidebar-foreground: oklch(0.1443 0.0191 261.1564);
828
+ --sidebar-primary: oklch(0.2038 0.0264 260.9332);
829
+ --sidebar-primary-foreground: oklch(0.9851 0 0);
830
+ --sidebar-accent: oklch(0.9442 0.0137 258.3455);
831
+ --sidebar-accent-foreground: oklch(0.2038 0.0264 260.9332);
832
+ --sidebar-border: oklch(0.9013 0.0156 257.2001);
833
+ --sidebar-ring: oklch(0.6503 0.0220 257.4949);
834
+ --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
835
+ --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
836
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
837
+ --radius: 0.625rem;
838
+ --shadow-x: 0;
839
+ --shadow-y: 1px;
840
+ --shadow-blur: 3px;
841
+ --shadow-spread: 0px;
842
+ --shadow-opacity: 0.1;
843
+ --shadow-color: oklch(0 0 0);
844
+ --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
845
+ --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
846
+ --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
847
+ --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
848
+ --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
849
+ --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
850
+ --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
851
+ --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);
852
+ --tracking-normal: 0em;
853
+ --spacing: 0.25rem;
854
+ }
855
+
856
+ .dark[data-theme="shalk"] {
857
+ --background: oklch(0.2292 0.0304 259.0329);
858
+ --foreground: oklch(0.9392 0.0101 238.5151);
859
+ --card: oklch(0.2610 0.0307 254.7604);
860
+ --card-foreground: oklch(0.9392 0.0101 238.5151);
861
+ --popover: oklch(0.2897 0.0338 255.7937);
862
+ --popover-foreground: oklch(0.9392 0.0101 238.5151);
863
+ --primary: oklch(0.8993 0.0119 239.9205);
864
+ --primary-foreground: oklch(0.2494 0.0304 256.8623);
865
+ --secondary: oklch(0.3056 0.0334 255.7755);
866
+ --secondary-foreground: oklch(0.9392 0.0101 238.5151);
867
+ --muted: oklch(0.2947 0.0308 258.3315);
868
+ --muted-foreground: oklch(0.6604 0.0245 248.1982);
869
+ --accent: oklch(0.3438 0.0389 254.6348);
870
+ --accent-foreground: oklch(0.9392 0.0101 238.5151);
871
+ --destructive: oklch(0.7040 0.1910 22.2160);
872
+ --destructive-foreground: oklch(0.9850 0 0);
873
+ --border: oklch(0.3299 0.0322 257.6775);
874
+ --input: oklch(0.3205 0.0336 253.9373);
875
+ --ring: oklch(0.5805 0.0297 251.8232);
876
+ --chart-1: oklch(0.8100 0.1000 252);
877
+ --chart-2: oklch(0.6200 0.1900 260);
878
+ --chart-3: oklch(0.5500 0.2200 263);
879
+ --chart-4: oklch(0.4900 0.2200 264);
880
+ --chart-5: oklch(0.4200 0.1800 266);
881
+ --sidebar: oklch(0.2452 0.0305 256.8649);
882
+ --sidebar-foreground: oklch(0.9392 0.0101 238.5151);
883
+ --sidebar-primary: oklch(0.4887 0.2427 263.9688);
884
+ --sidebar-primary-foreground: oklch(0.9851 0 0);
885
+ --sidebar-accent: oklch(0.3056 0.0334 255.7755);
886
+ --sidebar-accent-foreground: oklch(0.9392 0.0101 238.5151);
887
+ --sidebar-border: oklch(0.3053 0.0296 254.6806);
888
+ --sidebar-ring: oklch(0.5805 0.0297 251.8232);
889
+ --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
890
+ --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
891
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
892
+ --radius: 0.625rem;
893
+ --shadow-x: 0;
894
+ --shadow-y: 1px;
895
+ --shadow-blur: 3px;
896
+ --shadow-spread: 0px;
897
+ --shadow-opacity: 0.1;
898
+ --shadow-color: oklch(0 0 0);
899
+ --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
900
+ --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
901
+ --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
902
+ --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
903
+ --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
904
+ --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
905
+ --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
906
+ --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);
907
+ }
908
+ /* Theme: Shalk — Fin */
909
+
910
+
911
+
912
+
913
+
914
+ /* Theme: Violate — Debut */
915
+ *[data-theme="violate"]{
916
+ .view-component-effects {
917
+ @apply block absolute aspect-square rounded-full;
918
+ }
919
+ .view-component-effects.effect-1 {
920
+ @apply top-[-5%] left-[-5%] w-[30%] bg-primary/10 blur-[120px];
921
+ }
922
+ .view-component-effects.effect-2 {
923
+ @apply top-[-20%] right-[-20%] w-[45%] bg-primary/10 blur-[150px];
924
+ }
925
+ .view-component-effects.effect-3 {
926
+ @apply bottom-[-30%] right-[20%] w-[25%] bg-primary/15 blur-[180px];
927
+ }
928
+ }
929
+
930
+ *[data-theme="violate"] {
931
+ --background: oklch(0.9892 0.0053 286.3028);
932
+ --foreground: oklch(0.2257 0.0194 280.2492);
933
+ --card: oklch(0.9892 0.0053 286.3028);
934
+ --card-foreground: oklch(0.2257 0.0194 280.2492);
935
+ --popover: oklch(1.0000 0 0);
936
+ --popover-foreground: oklch(0.2257 0.0194 280.2492);
937
+ --primary: oklch(0.6217 0.1799 287.7754);
938
+ --primary-foreground: oklch(1.0000 0 0);
939
+ --secondary: oklch(0.9570 0.0187 289.3286);
940
+ --secondary-foreground: oklch(0.3569 0.0813 288.2584);
941
+ --muted: oklch(0.9601 0.0093 286.2229);
942
+ --muted-foreground: oklch(0.5100 0.0425 284.7922);
943
+ --accent: oklch(0.9570 0.0187 289.3286);
944
+ --accent-foreground: oklch(0.4619 0.2173 279.9839);
945
+ --destructive: oklch(0.6430 0.1925 24.3201);
946
+ --destructive-foreground: oklch(1.0000 0 0);
947
+ --border: oklch(0.9175 0.0216 285.9662);
948
+ --input: oklch(0.8660 0.0371 285.5991);
949
+ --ring: oklch(0.6217 0.1799 287.7754);
950
+ --chart-1: oklch(0.6217 0.1799 287.7754);
951
+ --chart-2: oklch(0.7716 0.1036 291.3083);
952
+ --chart-3: oklch(0.3569 0.0813 288.2584);
953
+ --chart-4: oklch(0.8740 0.0537 291.1256);
954
+ --chart-5: oklch(0.5413 0.1805 285.7967);
955
+ --sidebar: oklch(0.9811 0.0093 286.2277);
956
+ --sidebar-foreground: oklch(0.3755 0.0323 284.7377);
957
+ --sidebar-primary: oklch(0.6217 0.1799 287.7754);
958
+ --sidebar-primary-foreground: oklch(1.0000 0 0);
959
+ --sidebar-accent: oklch(0.9570 0.0187 289.3286);
960
+ --sidebar-accent-foreground: oklch(0.4619 0.2173 279.9839);
961
+ --sidebar-border: oklch(0.9430 0.0134 286.1402);
962
+ --sidebar-ring: oklch(0.6217 0.1799 287.7754);
963
+ --font-sans: Inter, sans-serif;
964
+ --font-serif: Merriweather, serif;
965
+ --font-mono: JetBrains Mono, monospace;
966
+ --radius: 0.5rem;
967
+ --shadow-x: 0px;
968
+ --shadow-y: 4px;
969
+ --shadow-blur: 10px;
970
+ --shadow-spread: 0px;
971
+ --shadow-opacity: 0.05;
972
+ --shadow-color: #000000;
973
+ --shadow-2xs: 0px 4px 10px 0px hsl(0 0% 0% / 0.03);
974
+ --shadow-xs: 0px 4px 10px 0px hsl(0 0% 0% / 0.03);
975
+ --shadow-sm: 0px 4px 10px 0px hsl(0 0% 0% / 0.05), 0px 1px 2px -1px hsl(0 0% 0% / 0.05);
976
+ --shadow: 0px 4px 10px 0px hsl(0 0% 0% / 0.05), 0px 1px 2px -1px hsl(0 0% 0% / 0.05);
977
+ --shadow-md: 0px 4px 10px 0px hsl(0 0% 0% / 0.05), 0px 2px 4px -1px hsl(0 0% 0% / 0.05);
978
+ --shadow-lg: 0px 4px 10px 0px hsl(0 0% 0% / 0.05), 0px 4px 6px -1px hsl(0 0% 0% / 0.05);
979
+ --shadow-xl: 0px 4px 10px 0px hsl(0 0% 0% / 0.05), 0px 8px 10px -1px hsl(0 0% 0% / 0.05);
980
+ --shadow-2xl: 0px 4px 10px 0px hsl(0 0% 0% / 0.13);
981
+ --tracking-normal: -0.01em;
982
+ --spacing: 0.25rem;
983
+ }
984
+
985
+ .dark[data-theme="violate"] {
986
+ --background: oklch(0.1503 0.0171 289.8934);
987
+ --foreground: oklch(0.9284 0.0161 286.0812);
988
+ --card: oklch(0.1503 0.0171 289.8934);
989
+ --card-foreground: oklch(0.9284 0.0161 286.0812);
990
+ --popover: oklch(0.1941 0.0240 287.7536);
991
+ --popover-foreground: oklch(0.9284 0.0161 286.0812);
992
+ --primary: oklch(0.6217 0.1799 287.7754);
993
+ --primary-foreground: oklch(1.0000 0 0);
994
+ --secondary: oklch(0.2354 0.0399 287.2762);
995
+ --secondary-foreground: oklch(0.9284 0.0161 286.0812);
996
+ --muted: oklch(0.2047 0.0296 286.5224);
997
+ --muted-foreground: oklch(0.6907 0.0467 285.1130);
998
+ --accent: oklch(0.2739 0.0616 285.5915);
999
+ --accent-foreground: oklch(0.7716 0.1036 291.3083);
1000
+ --destructive: oklch(0.3997 0.1352 25.8101);
1001
+ --destructive-foreground: oklch(1.0000 0 0);
1002
+ --border: oklch(0.2587 0.0372 285.7691);
1003
+ --input: oklch(0.3015 0.0518 286.0003);
1004
+ --ring: oklch(0.6217 0.1799 287.7754);
1005
+ --chart-1: oklch(0.6217 0.1799 287.7754);
1006
+ --chart-2: oklch(0.5413 0.1805 285.7967);
1007
+ --chart-3: oklch(0.7716 0.1036 291.3083);
1008
+ --chart-4: oklch(0.3569 0.0813 288.2584);
1009
+ --chart-5: oklch(0.4539 0.1474 285.6505);
1010
+ --sidebar: oklch(0.1616 0.0230 287.6930);
1011
+ --sidebar-foreground: oklch(0.8147 0.0307 285.6989);
1012
+ --sidebar-primary: oklch(0.6217 0.1799 287.7754);
1013
+ --sidebar-primary-foreground: oklch(1.0000 0 0);
1014
+ --sidebar-accent: oklch(0.2354 0.0399 287.2762);
1015
+ --sidebar-accent-foreground: oklch(0.9284 0.0161 286.0812);
1016
+ --sidebar-border: oklch(0.2587 0.0372 285.7691);
1017
+ --sidebar-ring: oklch(0.6217 0.1799 287.7754);
1018
+ --font-sans: Inter, sans-serif;
1019
+ --font-serif: Merriweather, serif;
1020
+ --font-mono: JetBrains Mono, monospace;
1021
+ --radius: 0.5rem;
1022
+ --shadow-x: 0px;
1023
+ --shadow-y: 8px;
1024
+ --shadow-blur: 20px;
1025
+ --shadow-spread: 0px;
1026
+ --shadow-opacity: 0.4;
1027
+ --shadow-color: #000000;
1028
+ --shadow-2xs: 0px 8px 20px 0px hsl(0 0% 0% / 0.20);
1029
+ --shadow-xs: 0px 8px 20px 0px hsl(0 0% 0% / 0.20);
1030
+ --shadow-sm: 0px 8px 20px 0px hsl(0 0% 0% / 0.40), 0px 1px 2px -1px hsl(0 0% 0% / 0.40);
1031
+ --shadow: 0px 8px 20px 0px hsl(0 0% 0% / 0.40), 0px 1px 2px -1px hsl(0 0% 0% / 0.40);
1032
+ --shadow-md: 0px 8px 20px 0px hsl(0 0% 0% / 0.40), 0px 2px 4px -1px hsl(0 0% 0% / 0.40);
1033
+ --shadow-lg: 0px 8px 20px 0px hsl(0 0% 0% / 0.40), 0px 4px 6px -1px hsl(0 0% 0% / 0.40);
1034
+ --shadow-xl: 0px 8px 20px 0px hsl(0 0% 0% / 0.40), 0px 8px 10px -1px hsl(0 0% 0% / 0.40);
1035
+ --shadow-2xl: 0px 8px 20px 0px hsl(0 0% 0% / 1.00);
1036
+ }
1037
+ /* Theme: Violate — Fin */
1038
+