@shohojdhara/atomix 0.3.13 → 0.3.15

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 (249) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/README.md +2 -0
  3. package/build-tools/EXAMPLES.md +372 -0
  4. package/build-tools/README.md +242 -0
  5. package/build-tools/__tests__/error-handler.test.js +230 -0
  6. package/build-tools/__tests__/index.test.js +141 -0
  7. package/build-tools/__tests__/rollup-plugin.test.js +194 -0
  8. package/build-tools/__tests__/utils.test.js +161 -0
  9. package/build-tools/__tests__/vite-plugin.test.js +129 -0
  10. package/build-tools/__tests__/webpack-loader.test.js +190 -0
  11. package/build-tools/error-handler.js +308 -0
  12. package/build-tools/index.d.ts +43 -0
  13. package/build-tools/index.js +88 -0
  14. package/build-tools/package.json +67 -0
  15. package/build-tools/rollup-plugin.js +236 -0
  16. package/build-tools/types.d.ts +163 -0
  17. package/build-tools/utils.js +203 -0
  18. package/build-tools/vite-plugin.js +161 -0
  19. package/build-tools/webpack-loader.js +123 -0
  20. package/dist/atomix.css +298 -167
  21. package/dist/atomix.css.map +1 -1
  22. package/dist/atomix.min.css +3 -3
  23. package/dist/atomix.min.css.map +1 -1
  24. package/dist/build-tools/EXAMPLES.md +372 -0
  25. package/dist/build-tools/README.md +242 -0
  26. package/dist/build-tools/__tests__/error-handler.test.js +230 -0
  27. package/dist/build-tools/__tests__/index.test.js +141 -0
  28. package/dist/build-tools/__tests__/rollup-plugin.test.js +194 -0
  29. package/dist/build-tools/__tests__/utils.test.js +161 -0
  30. package/dist/build-tools/__tests__/vite-plugin.test.js +129 -0
  31. package/dist/build-tools/__tests__/webpack-loader.test.js +190 -0
  32. package/dist/build-tools/error-handler.js +308 -0
  33. package/dist/build-tools/index.d.ts +43 -0
  34. package/dist/build-tools/index.js +88 -0
  35. package/dist/build-tools/package.json +67 -0
  36. package/dist/build-tools/rollup-plugin.js +236 -0
  37. package/dist/build-tools/types.d.ts +163 -0
  38. package/dist/build-tools/utils.js +203 -0
  39. package/dist/build-tools/vite-plugin.js +161 -0
  40. package/dist/build-tools/webpack-loader.js +123 -0
  41. package/dist/charts.d.ts +2 -2
  42. package/dist/charts.js +87 -58
  43. package/dist/charts.js.map +1 -1
  44. package/dist/core.d.ts +42 -12
  45. package/dist/core.js +175 -135
  46. package/dist/core.js.map +1 -1
  47. package/dist/forms.d.ts +30 -16
  48. package/dist/forms.js +146 -131
  49. package/dist/forms.js.map +1 -1
  50. package/dist/heavy.d.ts +2 -2
  51. package/dist/heavy.js +151 -118
  52. package/dist/heavy.js.map +1 -1
  53. package/dist/index.d.ts +130 -106
  54. package/dist/index.esm.js +1083 -465
  55. package/dist/index.esm.js.map +1 -1
  56. package/dist/index.js +1102 -483
  57. package/dist/index.js.map +1 -1
  58. package/dist/index.min.js +1 -1
  59. package/dist/index.min.js.map +1 -1
  60. package/dist/theme.d.ts +27 -2
  61. package/dist/theme.js +721 -108
  62. package/dist/theme.js.map +1 -1
  63. package/package.json +23 -8
  64. package/scripts/atomix-cli.js +749 -1153
  65. package/scripts/cli/__tests__/README.md +81 -0
  66. package/scripts/cli/__tests__/basic.test.js +115 -0
  67. package/scripts/cli/__tests__/component-generator.test.js +332 -0
  68. package/scripts/cli/__tests__/integration.test.js +327 -0
  69. package/scripts/cli/__tests__/test-setup.js +133 -0
  70. package/scripts/cli/__tests__/token-manager.test.js +251 -0
  71. package/scripts/cli/__tests__/utils.test.js +78 -118
  72. package/scripts/cli/component-generator.js +564 -0
  73. package/scripts/cli/dependency-checker.js +355 -0
  74. package/scripts/cli/documentation-sync.js +542 -0
  75. package/scripts/cli/interactive-init.js +129 -292
  76. package/scripts/cli/mappings.js +211 -0
  77. package/scripts/cli/migration-tools.js +95 -288
  78. package/scripts/cli/template-manager.js +105 -0
  79. package/scripts/cli/templates/README.md +123 -0
  80. package/scripts/cli/templates/common-templates.js +636 -0
  81. package/scripts/cli/templates/composable-templates.js +171 -0
  82. package/scripts/cli/templates/config-templates.js +126 -0
  83. package/scripts/cli/templates/index.js +102 -0
  84. package/scripts/cli/templates/project-templates.js +342 -0
  85. package/scripts/cli/templates/react-templates.js +331 -0
  86. package/scripts/cli/templates/scss-templates.js +155 -0
  87. package/scripts/cli/templates/storybook-templates.js +236 -0
  88. package/scripts/cli/templates/testing-templates.js +224 -0
  89. package/scripts/cli/templates/testing-utils.js +278 -0
  90. package/scripts/cli/templates/token-templates.js +447 -0
  91. package/scripts/cli/templates/types-templates.js +147 -0
  92. package/scripts/cli/templates.js +35 -0
  93. package/scripts/cli/theme-bridge.js +28 -16
  94. package/scripts/cli/token-manager.js +432 -247
  95. package/scripts/cli/utils.js +37 -26
  96. package/src/components/Accordion/Accordion.stories.tsx +369 -870
  97. package/src/components/Accordion/Accordion.test.tsx +57 -0
  98. package/src/components/Accordion/Accordion.tsx +4 -0
  99. package/src/components/AtomixGlass/AtomixGlass.tsx +80 -39
  100. package/src/components/AtomixGlass/AtomixGlassContainer.tsx +103 -81
  101. package/src/components/AtomixGlass/__snapshots__/AtomixGlass.test.tsx.snap +8 -7
  102. package/src/components/AtomixGlass/glass-utils.ts +2 -2
  103. package/src/components/AtomixGlass/shader-utils.ts +5 -0
  104. package/src/components/AtomixGlass/stories/Customization.stories.tsx +131 -0
  105. package/src/components/AtomixGlass/stories/Examples.stories.tsx +2965 -2861
  106. package/src/components/AtomixGlass/stories/Modes.stories.tsx +1 -1
  107. package/src/components/AtomixGlass/stories/Overview.stories.tsx +348 -0
  108. package/src/components/AtomixGlass/stories/Performance.stories.tsx +103 -0
  109. package/src/components/AtomixGlass/stories/Playground.stories.tsx +73 -59
  110. package/src/components/AtomixGlass/stories/{ShaderVariants.stories.tsx → Shaders.stories.tsx} +1 -1
  111. package/src/components/AtomixGlass/stories/shared-components.tsx +90 -190
  112. package/src/components/Avatar/Avatar.stories.tsx +239 -27
  113. package/src/components/Badge/Badge.stories.tsx +132 -373
  114. package/src/components/Badge/Badge.test.tsx +51 -0
  115. package/src/components/Badge/Badge.tsx +20 -1
  116. package/src/components/Block/Block.stories.tsx +26 -17
  117. package/src/components/Breadcrumb/Breadcrumb.stories.tsx +141 -23
  118. package/src/components/Breadcrumb/Breadcrumb.tsx +2 -2
  119. package/src/components/Button/Button.stories.tsx +463 -1126
  120. package/src/components/Button/Button.test.tsx +107 -0
  121. package/src/components/Button/Button.tsx +50 -54
  122. package/src/components/Button/ButtonGroup.stories.tsx +373 -217
  123. package/src/components/Button/README.md +5 -0
  124. package/src/components/Callout/Callout.stories.tsx +299 -644
  125. package/src/components/Callout/Callout.test.tsx +10 -10
  126. package/src/components/Callout/Callout.tsx +7 -7
  127. package/src/components/Callout/README.md +9 -8
  128. package/src/components/Card/Card.stories.tsx +248 -68
  129. package/src/components/Card/Card.tsx +2 -2
  130. package/src/components/Chart/Chart.stories.tsx +156 -14
  131. package/src/components/Chart/Chart.tsx +1 -1
  132. package/src/components/ColorModeToggle/ColorModeToggle.stories.tsx +151 -69
  133. package/src/components/Countdown/Countdown.stories.tsx +115 -8
  134. package/src/components/DataTable/DataTable.stories.tsx +346 -146
  135. package/src/components/DataTable/DataTable.tsx +14 -12
  136. package/src/components/DatePicker/DatePicker.stories.tsx +325 -1066
  137. package/src/components/Dropdown/Dropdown.stories.tsx +157 -37
  138. package/src/components/EdgePanel/EdgePanel.stories.tsx +230 -21
  139. package/src/components/Footer/Footer.stories.tsx +392 -328
  140. package/src/components/Form/Checkbox.stories.tsx +143 -9
  141. package/src/components/Form/Checkbox.test.tsx +63 -0
  142. package/src/components/Form/Checkbox.tsx +90 -52
  143. package/src/components/Form/Form.stories.tsx +121 -22
  144. package/src/components/Form/FormGroup.stories.tsx +128 -5
  145. package/src/components/Form/Input.stories.tsx +28 -16
  146. package/src/components/Form/Input.test.tsx +59 -0
  147. package/src/components/Form/Input.tsx +97 -95
  148. package/src/components/Form/Radio.stories.tsx +232 -97
  149. package/src/components/Form/Radio.tsx +2 -2
  150. package/src/components/Form/Select.stories.tsx +144 -12
  151. package/src/components/Form/Select.tsx +2 -2
  152. package/src/components/Form/Textarea.stories.tsx +171 -13
  153. package/src/components/Form/Textarea.test.tsx +45 -0
  154. package/src/components/Form/Textarea.tsx +88 -86
  155. package/src/components/Hero/Hero.stories.tsx +333 -32
  156. package/src/components/List/List.stories.tsx +143 -5
  157. package/src/components/Modal/Modal.stories.tsx +185 -46
  158. package/src/components/Navigation/Navbar/Navbar.stories.tsx +5 -5
  159. package/src/components/Navigation/Navbar/Navbar.tsx +1 -1
  160. package/src/components/Navigation/README.md +1 -1
  161. package/src/components/Pagination/Pagination.stories.tsx +5 -2
  162. package/src/components/Pagination/Pagination.tsx +1 -1
  163. package/src/components/PhotoViewer/PhotoViewer.stories.tsx +10 -10
  164. package/src/components/Popover/Popover.stories.tsx +449 -99
  165. package/src/components/ProductReview/ProductReview.tsx +1 -1
  166. package/src/components/Progress/Progress.stories.tsx +167 -5
  167. package/src/components/Progress/Progress.tsx +46 -46
  168. package/src/components/Rating/Rating.stories.tsx +4 -4
  169. package/src/components/Rating/Rating.tsx +8 -8
  170. package/src/components/River/River.stories.tsx +1 -1
  171. package/src/components/SectionIntro/SectionIntro.stories.tsx +240 -48
  172. package/src/components/Slider/Slider.stories.tsx +63 -63
  173. package/src/components/Spinner/Spinner.stories.tsx +104 -10
  174. package/src/components/Spinner/Spinner.test.tsx +35 -0
  175. package/src/components/Spinner/Spinner.tsx +9 -2
  176. package/src/components/Steps/Steps.stories.tsx +172 -43
  177. package/src/components/Tabs/Tabs.stories.tsx +136 -10
  178. package/src/components/Testimonial/Testimonial.stories.tsx +121 -4
  179. package/src/components/Todo/Todo.stories.tsx +198 -9
  180. package/src/components/Toggle/Toggle.stories.tsx +153 -43
  181. package/src/components/Toggle/Toggle.test.tsx +91 -0
  182. package/src/components/Toggle/Toggle.tsx +44 -27
  183. package/src/components/Tooltip/Tooltip.stories.tsx +194 -104
  184. package/src/components/Tooltip/Tooltip.tsx +1 -1
  185. package/src/components/Upload/Upload.stories.tsx +113 -24
  186. package/src/layouts/Grid/Grid.stories.tsx +49 -49
  187. package/src/layouts/MasonryGrid/MasonryGrid.stories.tsx +2 -2
  188. package/src/lib/README.md +2 -2
  189. package/src/lib/__tests__/theme-tools.test.ts +193 -0
  190. package/src/lib/composables/index.ts +2 -2
  191. package/src/lib/composables/useAccordion.ts +12 -3
  192. package/src/lib/composables/useAtomixGlass.ts +28 -56
  193. package/src/lib/composables/useBreadcrumb.ts +2 -2
  194. package/src/lib/composables/useCallout.ts +7 -7
  195. package/src/lib/composables/useChartExport.ts +2 -7
  196. package/src/lib/composables/useDataTable.ts +46 -29
  197. package/src/lib/composables/useNavbar.ts +1 -1
  198. package/src/lib/constants/components.ts +10 -33
  199. package/src/lib/storybook/InteractiveDemo.tsx +113 -0
  200. package/src/lib/storybook/PreviewContainer.tsx +36 -0
  201. package/src/lib/storybook/VariantsGrid.tsx +21 -0
  202. package/src/lib/storybook/index.ts +3 -0
  203. package/src/lib/theme/core/createThemeObject.ts +9 -5
  204. package/src/lib/theme/devtools/CLI.ts +155 -0
  205. package/src/lib/theme/devtools/DesignTokensCustomizer.stories.tsx +213 -0
  206. package/src/lib/theme/devtools/DesignTokensCustomizer.tsx +566 -0
  207. package/src/lib/theme/devtools/LiveEditor.tsx +2 -1
  208. package/src/lib/theme/devtools/index.ts +3 -0
  209. package/src/lib/theme/errors/errors.ts +8 -0
  210. package/src/lib/theme/runtime/ThemeProvider.tsx +117 -57
  211. package/src/lib/theme/runtime/__tests__/ThemeProvider.integration.test.tsx +305 -0
  212. package/src/lib/theme/runtime/__tests__/ThemeProvider.test.tsx +588 -0
  213. package/src/lib/theme/utils/__tests__/themeValidation.test.ts +264 -0
  214. package/src/lib/theme/utils/index.ts +1 -0
  215. package/src/lib/theme/utils/themeValidation.ts +501 -0
  216. package/src/lib/theme-tools.ts +32 -3
  217. package/src/lib/types/components.ts +82 -27
  218. package/src/lib/utils/__tests__/csv.test.ts +45 -0
  219. package/src/lib/utils/csv.ts +17 -0
  220. package/src/lib/utils/dataTableExport.ts +1 -10
  221. package/src/lib/utils/themeNaming.ts +1 -1
  222. package/src/styles/01-settings/_index.scss +2 -1
  223. package/src/styles/01-settings/_settings.accordion.scss +28 -7
  224. package/src/styles/01-settings/_settings.colors.scss +11 -11
  225. package/src/styles/01-settings/_settings.typography.scss +5 -5
  226. package/src/styles/02-tools/_tools.utility-api.scss +14 -0
  227. package/src/styles/06-components/_components.accordion.scss +56 -14
  228. package/src/styles/06-components/_components.callout.scss +29 -33
  229. package/src/styles/06-components/_components.checkbox.scss +23 -17
  230. package/src/styles/06-components/_index.scss +1 -1
  231. package/src/styles/99-utilities/_index.scss +2 -0
  232. package/src/styles/99-utilities/_utilities.display.scss +14 -3
  233. package/src/styles/99-utilities/_utilities.flex.scss +10 -10
  234. package/src/styles/99-utilities/_utilities.scss +3 -1
  235. package/src/styles/99-utilities/_utilities.text-gradient.scss +45 -0
  236. package/src/styles/99-utilities/_utilities.text.scss +28 -8
  237. package/themes/dark-complementary/README.md +98 -0
  238. package/themes/dark-complementary/index.scss +158 -0
  239. package/themes/default-light/README.md +81 -0
  240. package/themes/default-light/index.scss +154 -0
  241. package/themes/high-contrast/README.md +105 -0
  242. package/themes/high-contrast/index.scss +172 -0
  243. package/themes/test-theme/README.md +38 -0
  244. package/themes/test-theme/index.scss +47 -0
  245. package/scripts/cli/__tests__/cli-commands.test.js +0 -204
  246. package/scripts/cli/__tests__/vitest.config.js +0 -26
  247. package/src/components/AtomixGlass/stories/AtomixGlass.stories.tsx +0 -1438
  248. package/src/lib/composables/useButton.ts +0 -93
  249. package/src/lib/composables/useCheckbox.ts +0 -70
package/dist/atomix.css CHANGED
@@ -365,7 +365,7 @@ summary {
365
365
  */
366
366
  :root,
367
367
  [data-atomix-color-mode=light] {
368
- --atomix-primary: #ffb800;
368
+ --atomix-primary: #8b5cf6;
369
369
  --atomix-secondary: #f3f4f6;
370
370
  --atomix-success: #22c55e;
371
371
  --atomix-info: #3b82f6;
@@ -373,7 +373,7 @@ summary {
373
373
  --atomix-error: #ef4444;
374
374
  --atomix-light: #f9fafb;
375
375
  --atomix-dark: #1f2937;
376
- --atomix-primary-rgb: 255, 184, 0;
376
+ --atomix-primary-rgb: 139, 92, 246;
377
377
  --atomix-secondary-rgb: 243, 244, 246;
378
378
  --atomix-success-rgb: 34, 197, 94;
379
379
  --atomix-info-rgb: 59, 130, 246;
@@ -391,22 +391,22 @@ summary {
391
391
  --atomix-gray-8: #374151;
392
392
  --atomix-gray-9: #1f2937;
393
393
  --atomix-gray-10: #111827;
394
- --atomix-primary-1: #fff9e6;
395
- --atomix-primary-2: #fff4cc;
396
- --atomix-primary-3: #ffe699;
397
- --atomix-primary-4: #ffd966;
398
- --atomix-primary-5: #ffcc33;
399
- --atomix-primary-6: #ffb800;
400
- --atomix-primary-7: #e6a600;
401
- --atomix-primary-8: #cc9400;
402
- --atomix-primary-9: #b38200;
403
- --atomix-primary-10: #997000;
394
+ --atomix-primary-1: #f5f3ff;
395
+ --atomix-primary-2: #ede9fe;
396
+ --atomix-primary-3: #ddd6fe;
397
+ --atomix-primary-4: #c4b5fd;
398
+ --atomix-primary-5: #a78bfa;
399
+ --atomix-primary-6: #8b5cf6;
400
+ --atomix-primary-7: #7c3aed;
401
+ --atomix-primary-8: #6d28d9;
402
+ --atomix-primary-9: #5b21b6;
403
+ --atomix-primary-10: #4c1d95;
404
404
  --atomix-primary-text-emphasis: #111827;
405
405
  --atomix-secondary-text-emphasis: #374151;
406
406
  --atomix-tertiary-text-emphasis: #6b7280;
407
407
  --atomix-disabled-text-emphasis: #9ca3af;
408
408
  --atomix-invert-text-emphasis: #111827;
409
- --atomix-brand-text-emphasis: #ffb800;
409
+ --atomix-brand-text-emphasis: #8b5cf6;
410
410
  --atomix-error-text-emphasis: #ef4444;
411
411
  --atomix-success-text-emphasis: #22c55e;
412
412
  --atomix-warning-text-emphasis: #eab308;
@@ -417,7 +417,7 @@ summary {
417
417
  --atomix-secondary-bg-subtle: #e5e7eb;
418
418
  --atomix-tertiary-bg-subtle: #d1d5db;
419
419
  --atomix-invert-bg-subtle: #111827;
420
- --atomix-brand-bg-subtle: #fff4cc;
420
+ --atomix-brand-bg-subtle: #ede9fe;
421
421
  --atomix-error-bg-subtle: #fee2e2;
422
422
  --atomix-success-bg-subtle: #dcfce7;
423
423
  --atomix-warning-bg-subtle: #fef9c3;
@@ -430,10 +430,10 @@ summary {
430
430
  --atomix-error-border-subtle: #ef4444;
431
431
  --atomix-warning-border-subtle: #eab308;
432
432
  --atomix-info-border-subtle: #3b82f6;
433
- --atomix-brand-border-subtle: #ffb800;
433
+ --atomix-brand-border-subtle: #8b5cf6;
434
434
  --atomix-light-border-subtle: #f9fafb;
435
435
  --atomix-dark-border-subtle: #1f2937;
436
- --atomix-primary-hover: #ffb800;
436
+ --atomix-primary-hover: #8b5cf6;
437
437
  --atomix-secondary-hover: #e5e7eb;
438
438
  --atomix-light-hover: #f3f4f6;
439
439
  --atomix-dark-hover: #4b5563;
@@ -441,7 +441,7 @@ summary {
441
441
  --atomix-success-hover: #15803d;
442
442
  --atomix-warning-hover: #a16207;
443
443
  --atomix-info-hover: #1d4ed8;
444
- --atomix-primary-gradient: linear-gradient(135deg, #fff4cc, #ffe699, #ffd966);
444
+ --atomix-primary-gradient: linear-gradient(135deg, #ede9fe, #ddd6fe, #c4b5fd);
445
445
  --atomix-secondary-gradient: linear-gradient(135deg, #f3f4f6, #e5e7eb, #d1d5db);
446
446
  --atomix-light-gradient: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
447
447
  --atomix-dark-gradient: linear-gradient(135deg, #4b5563, #1f2937, #000000);
@@ -459,11 +459,11 @@ summary {
459
459
  --atomix-body-color: #111827;
460
460
  --atomix-body-bg: #ffffff;
461
461
  --atomix-heading-color: #111827;
462
- --atomix-link-color: #ffb800;
463
- --atomix-link-color-rgb: 255, 184, 0;
462
+ --atomix-link-color: #8b5cf6;
463
+ --atomix-link-color-rgb: 139, 92, 246;
464
464
  --atomix-link-decoration: none;
465
- --atomix-link-hover-color: rgb(178.5, 128.8, 0);
466
- --atomix-link-hover-color-rgb: 178.5, 128.8, 0;
465
+ --atomix-link-hover-color: rgb(87.4069767442, 19.5029069767, 241.9970930233);
466
+ --atomix-link-hover-color-rgb: 87.4069767442, 19.5029069767, 241.9970930233;
467
467
  --atomix-highlight-bg: #fef08a;
468
468
  --atomix-border-width: 1px;
469
469
  --atomix-border-style: solid;
@@ -484,7 +484,7 @@ summary {
484
484
  --atomix-box-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.175);
485
485
  --atomix-box-shadow-xl: 0px 16px 64px -8px rgba(45, 54, 67, 0.14);
486
486
  --atomix-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
487
- --atomix-focus-border-color: #ffcc33;
487
+ --atomix-focus-border-color: #a78bfa;
488
488
  --atomix-form-valid-color: #22c55e;
489
489
  --atomix-form-valid-border-color: #22c55e;
490
490
  --atomix-form-invalid-color: #ef4444;
@@ -624,7 +624,7 @@ summary {
624
624
  color-scheme: dark;
625
625
  --atomix-body-color: #ffffff;
626
626
  --atomix-body-bg: #1f2937;
627
- --atomix-primary: #ffb800;
627
+ --atomix-primary: #8b5cf6;
628
628
  --atomix-secondary: #4b5563;
629
629
  --atomix-light: #f9fafb;
630
630
  --atomix-dark: #374151;
@@ -632,7 +632,7 @@ summary {
632
632
  --atomix-success: #22c55e;
633
633
  --atomix-warning: #eab308;
634
634
  --atomix-info: #3b82f6;
635
- --atomix-primary-rgb: 255, 184, 0;
635
+ --atomix-primary-rgb: 139, 92, 246;
636
636
  --atomix-secondary-rgb: 75, 85, 99;
637
637
  --atomix-light-rgb: 249, 250, 251;
638
638
  --atomix-dark-rgb: 55, 65, 81;
@@ -645,7 +645,7 @@ summary {
645
645
  --atomix-tertiary-text-emphasis: #d1d5db;
646
646
  --atomix-disabled-text-emphasis: #9ca3af;
647
647
  --atomix-invert-text-emphasis: #f9fafb;
648
- --atomix-brand-text-emphasis: #fff4cc;
648
+ --atomix-brand-text-emphasis: #ede9fe;
649
649
  --atomix-error-text-emphasis: #fecaca;
650
650
  --atomix-success-text-emphasis: #bbf7d0;
651
651
  --atomix-warning-text-emphasis: #fef08a;
@@ -656,7 +656,7 @@ summary {
656
656
  --atomix-secondary-bg-subtle: #4b5563;
657
657
  --atomix-tertiary-bg-subtle: #6b7280;
658
658
  --atomix-invert-bg-subtle: #ffffff;
659
- --atomix-brand-bg-subtle: #cc9400;
659
+ --atomix-brand-bg-subtle: #6d28d9;
660
660
  --atomix-error-bg-subtle: #7f1d1d;
661
661
  --atomix-success-bg-subtle: #166534;
662
662
  --atomix-warning-bg-subtle: #713f12;
@@ -669,10 +669,10 @@ summary {
669
669
  --atomix-error-border-subtle: #ef4444;
670
670
  --atomix-warning-border-subtle: #eab308;
671
671
  --atomix-info-border-subtle: #3b82f6;
672
- --atomix-brand-border-subtle: #ffb800;
672
+ --atomix-brand-border-subtle: #8b5cf6;
673
673
  --atomix-light-border-subtle: #f9fafb;
674
674
  --atomix-dark-border-subtle: #374151;
675
- --atomix-primary-hover: #ffb800;
675
+ --atomix-primary-hover: #8b5cf6;
676
676
  --atomix-secondary-hover: #6b7280;
677
677
  --atomix-light-hover: #9ca3af;
678
678
  --atomix-dark-hover: #4b5563;
@@ -680,7 +680,7 @@ summary {
680
680
  --atomix-success-hover: #86efac;
681
681
  --atomix-warning-hover: #facc15;
682
682
  --atomix-info-hover: #93c5fd;
683
- --atomix-primary-gradient: linear-gradient(135deg, #997000, #b38200, #cc9400);
683
+ --atomix-primary-gradient: linear-gradient(135deg, #4c1d95, #5b21b6, #6d28d9);
684
684
  --atomix-secondary-gradient: linear-gradient(135deg, #374151, #6b7280, #d1d5db);
685
685
  --atomix-light-gradient: linear-gradient(135deg, #9ca3af, #6b7280, #9ca3af);
686
686
  --atomix-dark-gradient: linear-gradient(135deg, #000000, #4b5563, #1f2937);
@@ -695,33 +695,33 @@ summary {
695
695
  --atomix-box-shadow-lg: 0px 8px 18px -2px rgba(30, 30, 30, 0.5), 0px 8px 24px -2px rgba(30, 30, 30, 0.5);
696
696
  --atomix-box-shadow-xl: 0px 33px 61px -8px rgba(30, 30, 30, 0.9), 0px 8px 10px 0px rgba(30, 30, 30, 0.9);
697
697
  --atomix-heading-color: #e5e7eb;
698
- --atomix-link-color: #ffd966;
699
- --atomix-link-color-rgb: 255, 217, 102;
700
- --atomix-link-hover-color: rgb(255, 198, 25.5);
701
- --atomix-link-hover-color-rgb: 255, 198, 25.5;
698
+ --atomix-link-color: #c4b5fd;
699
+ --atomix-link-color-rgb: 196, 181, 253;
700
+ --atomix-link-hover-color: rgb(136.6118421053, 106.5131578947, 250.9868421053);
701
+ --atomix-link-hover-color-rgb: 136.6118421053, 106.5131578947, 250.9868421053;
702
702
  --atomix-code-color: #f87171;
703
703
  --atomix-border-color: #374151;
704
704
  --atomix-border-color-translucent: rgba(255, 255, 255, 0.15);
705
- --atomix-focus-border-color: #ffd966;
705
+ --atomix-focus-border-color: #c4b5fd;
706
706
  --atomix-form-valid-color: #4ade80;
707
707
  --atomix-form-valid-border-color: #4ade80;
708
708
  --atomix-form-invalid-color: #f87171;
709
709
  --atomix-form-invalid-border-color: #f87171;
710
710
  }
711
711
  ::-moz-selection {
712
- background: #ffb800;
713
- background: rgba(255, 184, 0, 0.3);
712
+ background: #8b5cf6;
713
+ background: rgba(139, 92, 246, 0.3);
714
714
  }
715
715
  ::selection {
716
- background: #ffb800;
717
- background: rgba(255, 184, 0, 0.3);
716
+ background: #8b5cf6;
717
+ background: rgba(139, 92, 246, 0.3);
718
718
  }
719
719
  ::-moz-selection {
720
- background: #ffb800;
721
- background: rgba(255, 184, 0, 0.3);
720
+ background: #8b5cf6;
721
+ background: rgba(139, 92, 246, 0.3);
722
722
  }
723
723
  * {
724
- -webkit-tap-highlight-color: rgba(255, 184, 0, 0.2);
724
+ -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
725
725
  }
726
726
  *,
727
727
  *:before,
@@ -1588,7 +1588,7 @@ a, a:hover {
1588
1588
  .c-accordion {
1589
1589
  --atomix-accordion-width: 100%;
1590
1590
  --atomix-accordion-border-width: calc(var(--atomix-border-width) * 2);
1591
- --atomix-accordion-border-color: transparent;
1591
+ --atomix-accordion-border-color: var(--atomix-primary-border-subtle);
1592
1592
  --atomix-accordion-border-radius: 0.25rem;
1593
1593
  --atomix-accordion-body-padding-x: 1.25rem;
1594
1594
  --atomix-accordion-body-padding-y: 0.5rem;
@@ -1603,12 +1603,19 @@ a, a:hover {
1603
1603
  --atomix-accordion-icon-color: var(--atomix-body-color);
1604
1604
  --atomix-accordion-icon-transform: 180deg;
1605
1605
  --atomix-accordion-disable-color: var(--atomix-tertiary-text-emphasis);
1606
+ --atomix-accordion-focus-border-color: var(--atomix-focus-border-color);
1607
+ --atomix-accordion-header-font-size: 1rem;
1608
+ --atomix-accordion-header-font-weight: 400;
1609
+ --atomix-accordion-header-inner-gap: 0.5rem;
1610
+ --atomix-accordion-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1611
+ --atomix-accordion-panel-transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1606
1612
  --panel-height: 0px;
1607
1613
  width: 100%;
1608
1614
  max-width: var(--atomix-accordion-width);
1609
1615
  border: var(--atomix-accordion-border-width) solid var(--atomix-accordion-border-color);
1610
1616
  border-radius: var(--atomix-accordion-border-radius);
1611
1617
  overflow: hidden;
1618
+ transition: var(--atomix-accordion-transition);
1612
1619
  }
1613
1620
  .c-accordion__header {
1614
1621
  display: flex;
@@ -1620,6 +1627,9 @@ a, a:hover {
1620
1627
  border: none;
1621
1628
  outline: none;
1622
1629
  cursor: pointer;
1630
+ font-size: var(--atomix-accordion-header-font-size);
1631
+ font-weight: var(--atomix-accordion-header-font-weight);
1632
+ gap: var(--atomix-accordion-header-inner-gap);
1623
1633
  transition-property: background;
1624
1634
  transition-duration: 0.2s;
1625
1635
  transition-timing-function: ease-in-out;
@@ -1629,18 +1639,25 @@ a, a:hover {
1629
1639
  .c-accordion__header--icon-left {
1630
1640
  flex-direction: row-reverse;
1631
1641
  justify-content: flex-end;
1632
- gap: var(--atomix-accordion-header-padding-x);
1633
1642
  }
1634
1643
  .c-accordion__header:hover {
1635
1644
  --atomix-accordion-header-bg: var(--atomix-accordion-header-bg-hover);
1636
1645
  }
1646
+ .c-accordion__header:focus-visible {
1647
+ outline: 2px solid var(--atomix-accordion-focus-border-color);
1648
+ outline-offset: 2px;
1649
+ }
1637
1650
  .c-accordion__title {
1638
- margin-right: 1.25rem;
1651
+ flex: 1 1;
1639
1652
  }
1640
1653
  .c-accordion__icon {
1641
1654
  color: var(--atomix-accordion-icon-color);
1642
1655
  font-size: var(--atomix-accordion-icon-size);
1643
1656
  will-change: transform;
1657
+ flex-shrink: 0;
1658
+ display: inline-flex;
1659
+ align-items: center;
1660
+ justify-content: center;
1644
1661
  transition-property: all;
1645
1662
  transition-duration: 0.2s;
1646
1663
  transition-timing-function: ease-in-out;
@@ -1650,6 +1667,7 @@ a, a:hover {
1650
1667
  height: var(--panel-height);
1651
1668
  overflow: hidden;
1652
1669
  will-change: height;
1670
+ scroll-behavior: smooth;
1653
1671
  transition-property: all;
1654
1672
  transition-duration: 0.2s;
1655
1673
  transition-timing-function: ease-in-out;
@@ -1672,10 +1690,14 @@ a, a:hover {
1672
1690
  }
1673
1691
  .c-accordion.is-disabled {
1674
1692
  pointer-events: none;
1693
+ cursor: not-allowed;
1675
1694
  --atomix-accordion-header-color: var(--atomix-accordion-disable-color);
1676
1695
  --atomix-accordion-body-color: var(--atomix-accordion-disable-color);
1677
1696
  --atomix-accordion-icon-color: var(--atomix-accordion-disable-color);
1678
1697
  }
1698
+ .c-accordion.is-disabled .c-accordion__header {
1699
+ cursor: not-allowed;
1700
+ }
1679
1701
  .c-accordion--glass {
1680
1702
  border-color: transparent;
1681
1703
  }
@@ -1685,6 +1707,16 @@ a, a:hover {
1685
1707
  .c-accordion--glass .c-accordion__body {
1686
1708
  background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
1687
1709
  }
1710
+ @media (prefers-reduced-motion: reduce) {
1711
+ .c-accordion {
1712
+ transition: none;
1713
+ }
1714
+ .c-accordion .c-accordion__icon,
1715
+ .c-accordion .c-accordion__panel,
1716
+ .c-accordion .c-accordion__header {
1717
+ transition: none;
1718
+ }
1719
+ }
1688
1720
  .c-avatar {
1689
1721
  --atomix-avatar-fit: cover;
1690
1722
  --atomix-avatar-size: 2.5rem;
@@ -2259,17 +2291,17 @@ a, a:hover {
2259
2291
  }
2260
2292
  .c-btn--primary {
2261
2293
  --atomix-btn-color: var(--atomix-white, #ffffff);
2262
- --atomix-btn-bg: var(--atomix-primary, #ffb800);
2263
- --atomix-btn-border-color: var(--atomix-primary, #ffb800);
2294
+ --atomix-btn-bg: var(--atomix-primary, #8b5cf6);
2295
+ --atomix-btn-border-color: var(--atomix-primary, #8b5cf6);
2264
2296
  --atomix-btn-hover-color: var(--atomix-white, #ffffff);
2265
- --atomix-btn-hover-bg: var(--atomix-primary-hover, rgb(216.75, 156.4, 0));
2266
- --atomix-btn-hover-border-color: var(--atomix-primary-hover, rgb(229.5, 165.6, 0));
2297
+ --atomix-btn-hover-bg: var(--atomix-primary-hover, rgb(104.8069767442, 43.9529069767, 243.3470930233));
2298
+ --atomix-btn-hover-border-color: var(--atomix-primary-hover, rgb(116.2046511628, 59.9686046512, 244.2313953488));
2267
2299
  --atomix-btn-active-color: var(--atomix-white, #ffffff);
2268
- --atomix-btn-active-bg: var(--atomix-primary-hover, rgb(204, 147.2, 0));
2269
- --atomix-btn-active-border-color: var(--atomix-primary-hover, rgb(191.25, 138, 0));
2300
+ --atomix-btn-active-bg: var(--atomix-primary-hover, rgb(93.4093023256, 27.9372093023, 242.4627906977));
2301
+ --atomix-btn-active-border-color: var(--atomix-primary-hover, rgb(82.5348837209, 13.2645348837, 240.2354651163));
2270
2302
  --atomix-btn-disabled-color: var(--atomix-white, #ffffff);
2271
- --atomix-btn-disabled-bg: var(--atomix-primary, #ffb800);
2272
- --atomix-btn-disabled-border-color: var(--atomix-primary, #ffb800);
2303
+ --atomix-btn-disabled-bg: var(--atomix-primary, #8b5cf6);
2304
+ --atomix-btn-disabled-border-color: var(--atomix-primary, #8b5cf6);
2273
2305
  }
2274
2306
  .c-btn--secondary {
2275
2307
  --atomix-btn-color: var(--atomix-dark-text-emphasis, #1f2937);
@@ -2370,18 +2402,18 @@ a, a:hover {
2370
2402
  --atomix-btn-disabled-border-color: var(--atomix-dark, #1f2937);
2371
2403
  }
2372
2404
  .c-btn--outline-primary {
2373
- --atomix-btn-color: var(--atomix-primary, #ffb800);
2405
+ --atomix-btn-color: var(--atomix-primary, #8b5cf6);
2374
2406
  --atomix-btn-bg: transparent;
2375
- --atomix-btn-border-color: var(--atomix-primary, #ffb800);
2407
+ --atomix-btn-border-color: var(--atomix-primary, #8b5cf6);
2376
2408
  --atomix-btn-hover-color: var(--atomix-white, #ffffff);
2377
- --atomix-btn-hover-bg: var(--atomix-primary-hover, rgb(216.75, 156.4, 0));
2378
- --atomix-btn-hover-border-color: var(--atomix-primary-hover, rgb(229.5, 165.6, 0));
2409
+ --atomix-btn-hover-bg: var(--atomix-primary-hover, rgb(104.8069767442, 43.9529069767, 243.3470930233));
2410
+ --atomix-btn-hover-border-color: var(--atomix-primary-hover, rgb(116.2046511628, 59.9686046512, 244.2313953488));
2379
2411
  --atomix-btn-active-color: var(--atomix-white, #ffffff);
2380
- --atomix-btn-active-bg: var(--atomix-primary-hover, rgb(204, 147.2, 0));
2381
- --atomix-btn-active-border-color: var(--atomix-primary-hover, rgb(191.25, 138, 0));
2382
- --atomix-btn-disabled-color: var(--atomix-primary, #ffb800);
2412
+ --atomix-btn-active-bg: var(--atomix-primary-hover, rgb(93.4093023256, 27.9372093023, 242.4627906977));
2413
+ --atomix-btn-active-border-color: var(--atomix-primary-hover, rgb(82.5348837209, 13.2645348837, 240.2354651163));
2414
+ --atomix-btn-disabled-color: var(--atomix-primary, #8b5cf6);
2383
2415
  --atomix-btn-disabled-bg: transparent;
2384
- --atomix-btn-disabled-border-color: var(--atomix-primary, #ffb800);
2416
+ --atomix-btn-disabled-border-color: var(--atomix-primary, #8b5cf6);
2385
2417
  }
2386
2418
  .c-btn--outline-secondary {
2387
2419
  --atomix-btn-color: var(--atomix-secondary, #f3f4f6);
@@ -4809,6 +4841,7 @@ a, a:hover {
4809
4841
  --atomix-checkbox-border-color-hover: var(--atomix-primary-text-emphasis);
4810
4842
  --atomix-checkbox-border-color-disabled: var(--atomix-disabled-text-emphasis);
4811
4843
  --atomix-checkbox-border-color-error: var(--atomix-error-border-subtle);
4844
+ --atomix-checkbox-checked-border-color: var(--atomix-invert-bg-subtle);
4812
4845
  display: flex;
4813
4846
  gap: var(--atomix-checkbox-spacer);
4814
4847
  }
@@ -4834,34 +4867,39 @@ a, a:hover {
4834
4867
  }
4835
4868
  .c-checkbox__input::before {
4836
4869
  position: absolute;
4837
- top: -7px;
4838
- left: -4px;
4839
- font-family: "Lux Icon";
4840
- color: var(--atomix-checkbox-checked-bg);
4841
- content: "\ef10";
4842
- font-size: 1.625rem;
4870
+ top: 0;
4871
+ left: 0;
4872
+ width: 100%;
4873
+ height: 100%;
4874
+ display: flex;
4875
+ align-items: center;
4876
+ justify-content: center;
4877
+ color: var(--atomix-checkbox-checked-text-color);
4878
+ background: var(--atomix-checkbox-checked-bg);
4879
+ content: "";
4843
4880
  transform: scale(0);
4844
- display: block;
4845
- transform-origin: center;
4846
- transition: 120ms transform ease-in-out;
4881
+ opacity: 0;
4882
+ transition: transform 120ms ease-in-out, opacity 120ms ease-in-out;
4883
+ font-size: 0.65em;
4884
+ line-height: 1;
4885
+ font-family: "Lux Icon";
4847
4886
  }
4848
4887
  .c-checkbox__input:hover {
4849
4888
  border-color: var(--atomix-checkbox-border-color-hover);
4850
4889
  }
4851
4890
  .c-checkbox__input:checked {
4852
- border-color: var(--atomix-checkbox-checked-bg);
4891
+ border-color: var(--atomix-checkbox-checked-border-color);
4853
4892
  }
4854
4893
  .c-checkbox__input:checked::before {
4894
+ content: "\ef10";
4855
4895
  transform: scale(1);
4896
+ opacity: 1;
4856
4897
  }
4857
4898
  .c-checkbox__input:checked:hover {
4858
4899
  border-color: var(--atomix-checkbox-checked-bg-hover);
4859
4900
  }
4860
4901
  .c-checkbox__input:checked:hover::before {
4861
- color: var(--atomix-checkbox-checked-bg-hover);
4862
- }
4863
- .c-checkbox__input:checked + .c-checkbox {
4864
- color: red;
4902
+ background: var(--atomix-checkbox-checked-bg-hover);
4865
4903
  }
4866
4904
  .c-checkbox__input:focus-visible {
4867
4905
  outline: 2px solid var(--atomix-brand-border-subtle);
@@ -4871,7 +4909,7 @@ a, a:hover {
4871
4909
  cursor: not-allowed;
4872
4910
  }
4873
4911
  .c-checkbox__input:disabled::before {
4874
- color: var(--atomix-checkbox-checked-text-color-disabled) !important;
4912
+ background: var(--atomix-checkbox-checked-bg-disabled) !important;
4875
4913
  }
4876
4914
  .c-checkbox__label {
4877
4915
  font-size: var(--atomix-checkbox-font-size);
@@ -4885,13 +4923,14 @@ a, a:hover {
4885
4923
  cursor: not-allowed;
4886
4924
  }
4887
4925
  .c-checkbox.is-disabled .c-checkbox__input::before {
4888
- color: var(--atomix-checkbox-checked-text-color-disabled) !important;
4926
+ background: var(--atomix-checkbox-checked-bg-disabled) !important;
4889
4927
  }
4890
4928
  .c-checkbox.is-error .c-checkbox__input {
4891
4929
  border-color: var(--atomix-checkbox-border-color-error) !important;
4892
4930
  }
4893
4931
  .c-checkbox--mixed .c-checkbox__input::before {
4894
4932
  content: "\f0d6";
4933
+ background: var(--atomix-checkbox-checked-bg);
4895
4934
  }
4896
4935
  .c-color-mode-toggle {
4897
4936
  display: inline-flex;
@@ -7093,7 +7132,7 @@ a, a:hover {
7093
7132
  --atomix-input-textarea-height: 120px;
7094
7133
  }
7095
7134
  .c-input--primary {
7096
- --atomix-input-border-color: var(--atomix-primary-border-subtle, #ffb800);
7135
+ --atomix-input-border-color: var(--atomix-primary-border-subtle, #8b5cf6);
7097
7136
  }
7098
7137
  .c-input--success {
7099
7138
  --atomix-input-border-color: var(--atomix-success-border-subtle, #22c55e);
@@ -7466,7 +7505,7 @@ a, a:hover {
7466
7505
  --atomix-messages-file-text-color: var(--atomix-body-color);
7467
7506
  --atomix-messages-file-icon-size: 2.5rem;
7468
7507
  --atomix-messages-file-icon-margin-right: 0.5rem;
7469
- --atomix-messages-file-icon-bg: #fff4cc;
7508
+ --atomix-messages-file-icon-bg: #ede9fe;
7470
7509
  --atomix-messages-file-info-font-size: 0.75rem;
7471
7510
  --atomix-messages-file-info-color: var(--atomix-tertiary-text-emphasis);
7472
7511
  --atomix-messages-file-bg: var(--atomix-tertiary-bg-subtle);
@@ -7611,7 +7650,7 @@ a, a:hover {
7611
7650
  border-radius: var(--atomix-messages-file-border-radius) 0.25rem 0.25rem var(--atomix-messages-file-border-radius);
7612
7651
  }
7613
7652
  .c-messages__content--self .c-messages__file [data-atomix-color-mode=dark] {
7614
- --atomix-messages-file-icon-bg: #e6a600;
7653
+ --atomix-messages-file-icon-bg: #7c3aed;
7615
7654
  }
7616
7655
  .c-messages__content--self .c-messages__image {
7617
7656
  border-radius: var(--atomix-messages-image-border-radius) 0.25rem 0.25rem var(--atomix-messages-image-border-radius);
@@ -7621,7 +7660,7 @@ a, a:hover {
7621
7660
  background-color: var(--atomix-messages-file-icon-bg);
7622
7661
  }
7623
7662
  .c-messages__content--self .c-messages__file-icon [data-atomix-color-mode=dark] {
7624
- --atomix-messages-file-icon-bg: #e6a600;
7663
+ --atomix-messages-file-icon-bg: #7c3aed;
7625
7664
  }
7626
7665
  .c-messages__form {
7627
7666
  display: flex;
@@ -8460,12 +8499,12 @@ a, a:hover {
8460
8499
  --atomix-callout-width: 100%;
8461
8500
  --atomix-callout-padding-x: 1rem;
8462
8501
  --atomix-callout-padding-y: 1rem;
8463
- --atomix-callout-tost-padding-x: 1rem;
8464
- --atomix-callout-tost-padding-y: 1rem;
8502
+ --atomix-callout-toast-padding-x: 1rem;
8503
+ --atomix-callout-toast-padding-y: 1rem;
8465
8504
  --atomix-callout-bg: var(--atomix-body-bg);
8466
8505
  --atomix-callout-border-radius: 0.5rem;
8467
8506
  --atomix-callout-border-color: var(--atomix-border-color);
8468
- --atomix-callout-border-witdh: var(--atomix-border-width);
8507
+ --atomix-callout-border-width: var(--atomix-border-width);
8469
8508
  --atomix-callout-title-font-size: 1rem;
8470
8509
  --atomix-callout-title-font-weight: 600;
8471
8510
  --atomix-callout-title-color: var(--atomix-body-color);
@@ -8555,7 +8594,7 @@ a, a:hover {
8555
8594
  .c-callout__close-btn:focus-visible {
8556
8595
  box-shadow: 0 0 0 2px var(--atomix-callout-border-color);
8557
8596
  }
8558
- .c-callout--oneline .c-callout__message {
8597
+ .c-callout--compact .c-callout__message {
8559
8598
  display: flex;
8560
8599
  flex-direction: row;
8561
8600
  align-items: center;
@@ -8584,8 +8623,8 @@ a, a:hover {
8584
8623
  }
8585
8624
  .c-callout--toast .c-callout__close-btn {
8586
8625
  position: absolute;
8587
- top: var(--atomix-callout-tost-padding-y);
8588
- right: var(--atomix-callout-tost-padding-x);
8626
+ top: var(--atomix-callout-toast-padding-y);
8627
+ right: var(--atomix-callout-toast-padding-x);
8589
8628
  }
8590
8629
  .c-callout--toast:focus-visible {
8591
8630
  outline: 2px solid var(--atomix-callout-border-color);
@@ -8646,7 +8685,7 @@ a, a:hover {
8646
8685
  justify-content: center;
8647
8686
  align-items: center;
8648
8687
  padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
8649
- border: var(--atomix-callout-border-witdh) solid color-mix(in srgb, var(--atomix-callout-border-color) 20%, transparent);
8688
+ border: var(--atomix-callout-border-width) solid color-mix(in srgb, var(--atomix-callout-border-color) 20%, transparent);
8650
8689
  max-width: var(--atomix-callout-width);
8651
8690
  border-radius: var(--atomix-callout-border-radius);
8652
8691
  width: 100%;
@@ -9207,7 +9246,7 @@ a, a:hover {
9207
9246
  display: block;
9208
9247
  }
9209
9248
  .c-rating__star--primary {
9210
- --atomix-rating-star-bg: #ffb800;
9249
+ --atomix-rating-star-bg: #8b5cf6;
9211
9250
  }
9212
9251
  .c-rating__star--secondary {
9213
9252
  --atomix-rating-star-bg: #f3f4f6;
@@ -9277,7 +9316,7 @@ a, a:hover {
9277
9316
  flex-direction: column;
9278
9317
  }
9279
9318
  .c-rating--primary {
9280
- --atomix-rating-star-bg: #ffb800;
9319
+ --atomix-rating-star-bg: #8b5cf6;
9281
9320
  }
9282
9321
  .c-rating--secondary {
9283
9322
  --atomix-rating-star-bg: #f3f4f6;
@@ -12451,7 +12490,7 @@ body.is-open-photoviewer {
12451
12490
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
12452
12491
  }
12453
12492
  .c-image-gallery__item:hover .c-image-gallery__card {
12454
- border-color: #ffcc33;
12493
+ border-color: #a78bfa;
12455
12494
  }
12456
12495
  .c-image-gallery__card {
12457
12496
  height: 100%;
@@ -12514,8 +12553,8 @@ body.is-open-photoviewer {
12514
12553
  text-decoration-color: RGBA(var(--atomix-primary-rgb), var(--atomix-u-link-underline-opacity, 1)) !important;
12515
12554
  }
12516
12555
  .u-link-primary:hover, .u-link-primary:focus {
12517
- color: RGBA(255, 194.65, 38.25, var(--atomix-u-link-opacity, 1)) !important;
12518
- text-decoration-color: RGBA(255, 194.65, 38.25, var(--atomix-u-link-underline-opacity, 1)) !important;
12556
+ color: RGBA(156.4, 116.45, 247.35, var(--atomix-u-link-opacity, 1)) !important;
12557
+ text-decoration-color: RGBA(156.4, 116.45, 247.35, var(--atomix-u-link-underline-opacity, 1)) !important;
12519
12558
  }
12520
12559
  .u-link-secondary {
12521
12560
  color: RGBA(var(--atomix-secondary-rgb), var(--atomix-u-link-opacity, 1)) !important;
@@ -12585,7 +12624,7 @@ body.is-open-photoviewer {
12585
12624
  white-space: nowrap;
12586
12625
  }
12587
12626
  .u-bg-primary {
12588
- background-color: #ffb800;
12627
+ background-color: #8b5cf6;
12589
12628
  }
12590
12629
  .u-bg-secondary {
12591
12630
  background-color: #f3f4f6;
@@ -12687,34 +12726,44 @@ body.is-open-photoviewer {
12687
12726
  border-inline-start: 0;
12688
12727
  }
12689
12728
  .u-border-primary {
12690
- border-color: #ffb800;
12729
+ border-color: #8b5cf6;
12730
+ --border-opacity: 1;
12691
12731
  }
12692
12732
  .u-border-secondary {
12693
12733
  border-color: #f3f4f6;
12734
+ --border-opacity: 1;
12694
12735
  }
12695
12736
  .u-border-success {
12696
12737
  border-color: #22c55e;
12738
+ --border-opacity: 1;
12697
12739
  }
12698
12740
  .u-border-info {
12699
12741
  border-color: #3b82f6;
12742
+ --border-opacity: 1;
12700
12743
  }
12701
12744
  .u-border-warning {
12702
12745
  border-color: #eab308;
12746
+ --border-opacity: 1;
12703
12747
  }
12704
12748
  .u-border-error {
12705
12749
  border-color: #ef4444;
12750
+ --border-opacity: 1;
12706
12751
  }
12707
12752
  .u-border-light {
12708
12753
  border-color: #f9fafb;
12754
+ --border-opacity: 1;
12709
12755
  }
12710
12756
  .u-border-dark {
12711
12757
  border-color: #1f2937;
12758
+ --border-opacity: 1;
12712
12759
  }
12713
12760
  .u-border-black {
12714
12761
  border-color: #000000;
12762
+ --border-opacity: 1;
12715
12763
  }
12716
12764
  .u-border-white {
12717
12765
  border-color: #ffffff;
12766
+ --border-opacity: 1;
12718
12767
  }
12719
12768
  .u-border-primary-subtle {
12720
12769
  border-color: var(--atomix-primary-border-subtle);
@@ -12944,37 +12993,37 @@ body.is-open-photoviewer {
12944
12993
  border-end-start-radius: var(--atomix-border-radius-pill);
12945
12994
  border-start-start-radius: var(--atomix-border-radius-pill);
12946
12995
  }
12947
- .u-d-inline {
12996
+ .u-inline {
12948
12997
  display: inline;
12949
12998
  }
12950
- .u-d-inline-block {
12999
+ .u-inline-block {
12951
13000
  display: inline-block;
12952
13001
  }
12953
- .u-d-block {
13002
+ .u-block {
12954
13003
  display: block;
12955
13004
  }
12956
- .u-d-grid {
13005
+ .u-grid {
12957
13006
  display: grid;
12958
13007
  }
12959
- .u-d-inline-grid {
13008
+ .u-inline-grid {
12960
13009
  display: inline-grid;
12961
13010
  }
12962
- .u-d-table {
13011
+ .u-table {
12963
13012
  display: table;
12964
13013
  }
12965
- .u-d-table-row {
13014
+ .u-table-row {
12966
13015
  display: table-row;
12967
13016
  }
12968
- .u-d-table-cell {
13017
+ .u-table-cell {
12969
13018
  display: table-cell;
12970
13019
  }
12971
- .u-d-flex {
13020
+ .u-flex {
12972
13021
  display: flex;
12973
13022
  }
12974
- .u-d-inline-flex {
13023
+ .u-inline-flex {
12975
13024
  display: inline-flex;
12976
13025
  }
12977
- .u-d-none {
13026
+ .u-none {
12978
13027
  display: none;
12979
13028
  }
12980
13029
  .u-flex-fill {
@@ -13013,73 +13062,73 @@ body.is-open-photoviewer {
13013
13062
  .u-flex-wrap-reverse {
13014
13063
  flex-wrap: wrap-reverse;
13015
13064
  }
13016
- .u-justify-content-start {
13065
+ .u-justify-start {
13017
13066
  justify-content: flex-start;
13018
13067
  }
13019
- .u-justify-content-end {
13068
+ .u-justify-end {
13020
13069
  justify-content: flex-end;
13021
13070
  }
13022
- .u-justify-content-center {
13071
+ .u-justify-center {
13023
13072
  justify-content: center;
13024
13073
  }
13025
- .u-justify-content-between {
13074
+ .u-justify-between {
13026
13075
  justify-content: space-between;
13027
13076
  }
13028
- .u-justify-content-around {
13077
+ .u-justify-around {
13029
13078
  justify-content: space-around;
13030
13079
  }
13031
- .u-justify-content-evenly {
13080
+ .u-justify-evenly {
13032
13081
  justify-content: space-evenly;
13033
13082
  }
13034
- .u-align-items-start {
13083
+ .u-items-start {
13035
13084
  align-items: flex-start;
13036
13085
  }
13037
- .u-align-items-end {
13086
+ .u-items-end {
13038
13087
  align-items: flex-end;
13039
13088
  }
13040
- .u-align-items-center {
13089
+ .u-items-center {
13041
13090
  align-items: center;
13042
13091
  }
13043
- .u-align-items-baseline {
13092
+ .u-items-baseline {
13044
13093
  align-items: baseline;
13045
13094
  }
13046
- .u-align-items-stretch {
13095
+ .u-items-stretch {
13047
13096
  align-items: stretch;
13048
13097
  }
13049
- .u-align-content-start {
13098
+ .u-content-start {
13050
13099
  align-content: flex-start;
13051
13100
  }
13052
- .u-align-content-end {
13101
+ .u-content-end {
13053
13102
  align-content: flex-end;
13054
13103
  }
13055
- .u-align-content-center {
13104
+ .u-content-center {
13056
13105
  align-content: center;
13057
13106
  }
13058
- .u-align-content-between {
13107
+ .u-content-between {
13059
13108
  align-content: space-between;
13060
13109
  }
13061
- .u-align-content-around {
13110
+ .u-content-around {
13062
13111
  align-content: space-around;
13063
13112
  }
13064
- .u-align-content-stretch {
13113
+ .u-content-stretch {
13065
13114
  align-content: stretch;
13066
13115
  }
13067
- .u-align-self-auto {
13116
+ .u-self-auto {
13068
13117
  align-self: auto;
13069
13118
  }
13070
- .u-align-self-start {
13119
+ .u-self-start {
13071
13120
  align-self: flex-start;
13072
13121
  }
13073
- .u-align-self-end {
13122
+ .u-self-end {
13074
13123
  align-self: flex-end;
13075
13124
  }
13076
- .u-align-self-center {
13125
+ .u-self-center {
13077
13126
  align-self: center;
13078
13127
  }
13079
- .u-align-self-baseline {
13128
+ .u-self-baseline {
13080
13129
  align-self: baseline;
13081
13130
  }
13082
- .u-align-self-stretch {
13131
+ .u-self-stretch {
13083
13132
  align-self: stretch;
13084
13133
  }
13085
13134
  .u-order-first {
@@ -13107,7 +13156,7 @@ body.is-open-photoviewer {
13107
13156
  order: 6;
13108
13157
  }
13109
13158
  .u-bg-gradient-primary {
13110
- background-image: linear-gradient(135deg, #fff4cc, #ffe699, #ffd966);
13159
+ background-image: linear-gradient(135deg, #ede9fe, #ddd6fe, #c4b5fd);
13111
13160
  }
13112
13161
  .u-bg-gradient-secondary {
13113
13162
  background-image: linear-gradient(135deg, #f3f4f6, #e5e7eb, #d1d5db);
@@ -13155,37 +13204,48 @@ body.is-open-photoviewer {
13155
13204
  text-underline-offset: 0.375em;
13156
13205
  }
13157
13206
  .u-link-underline-primary {
13158
- text-decoration-color: #ffb800;
13207
+ text-decoration-color: #8b5cf6;
13208
+ --link-underline-opacity: 1;
13159
13209
  }
13160
13210
  .u-link-underline-secondary {
13161
13211
  text-decoration-color: #f3f4f6;
13212
+ --link-underline-opacity: 1;
13162
13213
  }
13163
13214
  .u-link-underline-success {
13164
13215
  text-decoration-color: #22c55e;
13216
+ --link-underline-opacity: 1;
13165
13217
  }
13166
13218
  .u-link-underline-info {
13167
13219
  text-decoration-color: #3b82f6;
13220
+ --link-underline-opacity: 1;
13168
13221
  }
13169
13222
  .u-link-underline-warning {
13170
13223
  text-decoration-color: #eab308;
13224
+ --link-underline-opacity: 1;
13171
13225
  }
13172
13226
  .u-link-underline-error {
13173
13227
  text-decoration-color: #ef4444;
13228
+ --link-underline-opacity: 1;
13174
13229
  }
13175
13230
  .u-link-underline-light {
13176
13231
  text-decoration-color: #f9fafb;
13232
+ --link-underline-opacity: 1;
13177
13233
  }
13178
13234
  .u-link-underline-dark {
13179
13235
  text-decoration-color: #1f2937;
13236
+ --link-underline-opacity: 1;
13180
13237
  }
13181
13238
  .u-link-underline-black {
13182
13239
  text-decoration-color: #000000;
13240
+ --link-underline-opacity: 1;
13183
13241
  }
13184
13242
  .u-link-underline-white {
13185
13243
  text-decoration-color: #ffffff;
13244
+ --link-underline-opacity: 1;
13186
13245
  }
13187
13246
  .u-link-underline {
13188
13247
  text-decoration-color: rgba(var(--atomix-link-color-rgb), var(--atomix-u-link-underline-opacity, 1));
13248
+ --link-underline-opacity: 1;
13189
13249
  }
13190
13250
  .u-link-underline-opacityhover-0 {
13191
13251
  --atomix-u-u-link-underline-opacity-0: 0;
@@ -15334,64 +15394,64 @@ body.is-open-photoviewer {
15334
15394
  -moz-column-gap: 50rem;
15335
15395
  column-gap: 50rem;
15336
15396
  }
15337
- .u-fs-xs {
15397
+ .u-text-xs {
15338
15398
  font-size: 0.75rem;
15339
15399
  }
15340
- .u-fs-sm {
15400
+ .u-text-sm {
15341
15401
  font-size: 0.875rem;
15342
15402
  }
15343
- .u-fs-base {
15403
+ .u-text-base {
15344
15404
  font-size: 1rem;
15345
15405
  }
15346
- .u-fs-md {
15406
+ .u-text-md {
15347
15407
  font-size: 1.125rem;
15348
15408
  }
15349
- .u-fs-lg {
15409
+ .u-text-lg {
15350
15410
  font-size: 1.25rem;
15351
15411
  }
15352
- .u-fs-xl {
15412
+ .u-text-xl {
15353
15413
  font-size: 1.5rem;
15354
15414
  }
15355
- .u-fs-2xl {
15415
+ .u-text-2xl {
15356
15416
  font-size: 2rem;
15357
15417
  }
15358
- .u-fs-h1 {
15418
+ .u-text-h1 {
15359
15419
  font-size: 2.5rem;
15360
15420
  }
15361
- .u-fs-h2 {
15421
+ .u-text-h2 {
15362
15422
  font-size: 2rem;
15363
15423
  }
15364
- .u-fs-h3 {
15424
+ .u-text-h3 {
15365
15425
  font-size: 1.5rem;
15366
15426
  }
15367
- .u-fs-h4 {
15427
+ .u-text-h4 {
15368
15428
  font-size: 1.25rem;
15369
15429
  }
15370
- .u-fs-h5 {
15430
+ .u-text-h5 {
15371
15431
  font-size: 1.125rem;
15372
15432
  }
15373
- .u-fs-h6 {
15433
+ .u-text-h6 {
15374
15434
  font-size: 1rem;
15375
15435
  }
15376
- .u-fs-display-1 {
15436
+ .u-text-display-1 {
15377
15437
  font-size: 4rem;
15378
15438
  }
15379
- .u-fs-1 {
15439
+ .u-text-1 {
15380
15440
  font-size: 2.5rem;
15381
15441
  }
15382
- .u-fs-2 {
15442
+ .u-text-2 {
15383
15443
  font-size: 2rem;
15384
15444
  }
15385
- .u-fs-3 {
15445
+ .u-text-3 {
15386
15446
  font-size: 1.5rem;
15387
15447
  }
15388
- .u-fs-4 {
15448
+ .u-text-4 {
15389
15449
  font-size: 1.25rem;
15390
15450
  }
15391
- .u-fs-5 {
15451
+ .u-text-5 {
15392
15452
  font-size: 1.125rem;
15393
15453
  }
15394
- .u-fs-6 {
15454
+ .u-text-6 {
15395
15455
  font-size: 1rem;
15396
15456
  }
15397
15457
  .u-fst-italic {
@@ -15400,37 +15460,55 @@ body.is-open-photoviewer {
15400
15460
  .u-fst-normal {
15401
15461
  font-style: normal;
15402
15462
  }
15403
- .u-fw-light {
15463
+ .u-font-light {
15404
15464
  font-weight: 300;
15405
15465
  }
15406
- .u-fw-normal {
15466
+ .u-font-normal {
15407
15467
  font-weight: 400;
15408
15468
  }
15409
- .u-fw-medium {
15469
+ .u-font-medium {
15410
15470
  font-weight: 500;
15411
15471
  }
15412
- .u-fw-semibold {
15472
+ .u-font-semibold {
15413
15473
  font-weight: 600;
15414
15474
  }
15415
- .u-fw-bold {
15475
+ .u-font-bold {
15416
15476
  font-weight: 700;
15417
15477
  }
15418
- .u-fw-heavy {
15478
+ .u-font-heavy {
15419
15479
  font-weight: 800;
15420
15480
  }
15421
- .u-fw-black {
15481
+ .u-font-black {
15422
15482
  font-weight: 900;
15423
15483
  }
15424
- .u-lh-base {
15484
+ .u-leading-base {
15425
15485
  line-height: 1.2;
15426
15486
  }
15427
- .u-lh-sm {
15487
+ .u-leading-sm {
15428
15488
  line-height: 1.43;
15429
15489
  }
15430
- .u-lh-lg {
15490
+ .u-leading-lg {
15431
15491
  line-height: 1.56;
15432
15492
  }
15433
- .u-lh-1 {
15493
+ .u-leading-none {
15494
+ line-height: 1;
15495
+ }
15496
+ .u-leading-tight {
15497
+ line-height: 1.25;
15498
+ }
15499
+ .u-leading-snug {
15500
+ line-height: 1.375;
15501
+ }
15502
+ .u-leading-normal {
15503
+ line-height: 1.5;
15504
+ }
15505
+ .u-leading-relaxed {
15506
+ line-height: 1.625;
15507
+ }
15508
+ .u-leading-loose {
15509
+ line-height: 2;
15510
+ }
15511
+ .u-leading-1 {
15434
15512
  line-height: 1;
15435
15513
  }
15436
15514
  .u-text-start {
@@ -15442,15 +15520,15 @@ body.is-open-photoviewer {
15442
15520
  .u-text-center {
15443
15521
  text-align: center;
15444
15522
  }
15445
- .u-td-none {
15446
- text-decoration: none;
15447
- }
15448
- .u-td-underline {
15523
+ .u-underline {
15449
15524
  text-decoration: underline;
15450
15525
  }
15451
- .u-td-line-through {
15526
+ .u-line-through {
15452
15527
  text-decoration: line-through;
15453
15528
  }
15529
+ .u-no-underline {
15530
+ text-decoration: none;
15531
+ }
15454
15532
  .u-text-lowercase {
15455
15533
  text-transform: lowercase;
15456
15534
  }
@@ -15471,7 +15549,7 @@ body.is-open-photoviewer {
15471
15549
  word-break: break-word !important;
15472
15550
  }
15473
15551
  .u-text-primary {
15474
- color: #ffb800;
15552
+ color: #8b5cf6;
15475
15553
  }
15476
15554
  .u-text-secondary {
15477
15555
  color: #f3f4f6;
@@ -15587,4 +15665,57 @@ body.is-open-photoviewer {
15587
15665
  .u-z-drawer {
15588
15666
  z-index: 1070;
15589
15667
  }
15668
+ .u-text-gradient-base {
15669
+ --background-clip: text;
15670
+ ---webkit-background-clip: text;
15671
+ ---webkit-text-fill-color: transparent;
15672
+ }
15673
+ .u-text-gradient-primary {
15674
+ background-image: var(--atomix-primary-gradient);
15675
+ --background-clip: text;
15676
+ ---webkit-background-clip: text;
15677
+ ---webkit-text-fill-color: transparent;
15678
+ }
15679
+ .u-text-gradient-secondary {
15680
+ background-image: var(--atomix-secondary-gradient);
15681
+ --background-clip: text;
15682
+ ---webkit-background-clip: text;
15683
+ ---webkit-text-fill-color: transparent;
15684
+ }
15685
+ .u-text-gradient-success {
15686
+ background-image: var(--atomix-success-gradient);
15687
+ --background-clip: text;
15688
+ ---webkit-background-clip: text;
15689
+ ---webkit-text-fill-color: transparent;
15690
+ }
15691
+ .u-text-gradient-warning {
15692
+ background-image: var(--atomix-warning-gradient);
15693
+ --background-clip: text;
15694
+ ---webkit-background-clip: text;
15695
+ ---webkit-text-fill-color: transparent;
15696
+ }
15697
+ .u-text-gradient-error {
15698
+ background-image: var(--atomix-error-gradient);
15699
+ --background-clip: text;
15700
+ ---webkit-background-clip: text;
15701
+ ---webkit-text-fill-color: transparent;
15702
+ }
15703
+ .u-text-gradient-info {
15704
+ background-image: var(--atomix-info-gradient);
15705
+ --background-clip: text;
15706
+ ---webkit-background-clip: text;
15707
+ ---webkit-text-fill-color: transparent;
15708
+ }
15709
+ .u-text-gradient-light {
15710
+ background-image: var(--atomix-light-gradient);
15711
+ --background-clip: text;
15712
+ ---webkit-background-clip: text;
15713
+ ---webkit-text-fill-color: transparent;
15714
+ }
15715
+ .u-text-gradient-dark {
15716
+ background-image: var(--atomix-dark-gradient);
15717
+ --background-clip: text;
15718
+ ---webkit-background-clip: text;
15719
+ ---webkit-text-fill-color: transparent;
15720
+ }
15590
15721
  /*# sourceMappingURL=atomix.css.map */