@elevasis/ui 1.15.3 → 1.17.1

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 (41) hide show
  1. package/dist/charts/index.d.ts +25 -2
  2. package/dist/charts/index.js +2 -2
  3. package/dist/{chunk-FEZ2TGSH.js → chunk-7ATCF6UL.js} +282 -14
  4. package/dist/{chunk-4NHYV42S.js → chunk-7S5FS7WW.js} +35 -4
  5. package/dist/chunk-ADSSLKKP.js +10 -0
  6. package/dist/{chunk-WY2BCL5F.js → chunk-F25DUOWI.js} +2 -2
  7. package/dist/chunk-MHW43EOH.js +47 -0
  8. package/dist/{chunk-6YIE72M2.js → chunk-NUULWBAD.js} +1 -1
  9. package/dist/{chunk-E6Q6A5TU.js → chunk-QCEUL5QG.js} +2 -6
  10. package/dist/{chunk-4NAZQ7WO.js → chunk-RYSPAQGW.js} +2 -2
  11. package/dist/{chunk-XY7VKOKI.js → chunk-UEYUPTAD.js} +80 -777
  12. package/dist/chunk-ZGK6XZVY.js +1208 -0
  13. package/dist/components/index.d.ts +511 -488
  14. package/dist/components/index.js +28 -1221
  15. package/dist/features/operations/index.css +565 -0
  16. package/dist/features/operations/index.d.ts +90 -0
  17. package/dist/features/operations/index.js +241 -0
  18. package/dist/hooks/index.d.ts +509 -488
  19. package/dist/hooks/index.js +4 -4
  20. package/dist/hooks/published.d.ts +509 -488
  21. package/dist/hooks/published.js +4 -4
  22. package/dist/index.d.ts +522 -490
  23. package/dist/index.js +6 -6
  24. package/dist/initialization/index.d.ts +508 -487
  25. package/dist/layout/index.d.ts +196 -6
  26. package/dist/layout/index.js +5 -4
  27. package/dist/profile/index.d.ts +508 -487
  28. package/dist/provider/index.d.ts +1 -1
  29. package/dist/provider/index.js +4 -4
  30. package/dist/provider/published.d.ts +1 -1
  31. package/dist/router/index.d.ts +12 -1
  32. package/dist/router/index.js +1 -1
  33. package/dist/supabase/index.d.ts +890 -851
  34. package/dist/theme/index.d.ts +1 -1
  35. package/dist/theme/index.js +3 -3
  36. package/dist/types/index.d.ts +509 -488
  37. package/package.json +5 -1
  38. package/dist/chunk-LHQTTUL2.js +0 -27
  39. package/dist/components/layout/backgrounds/CyberParticles.d.ts +0 -30
  40. package/dist/components/layout/backgrounds/CyberParticles.d.ts.map +0 -1
  41. package/dist/components/layout/backgrounds/CyberParticles.js +0 -138
@@ -1,7 +1,7 @@
1
- import { CyberBackground } from './chunk-FEZ2TGSH.js';
1
+ import { CyberBackground, WaveBackground } from './chunk-7ATCF6UL.js';
2
2
  import { createElement, createContext, useContext } from 'react';
3
- import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
4
3
  import { Tooltip, Text, Tabs, Table, Stack, SimpleGrid, Select, Combobox, SegmentedControl, ScrollArea, Paper, Popover, Notification, Modal, Menu, Input, HoverCard, Group, Grid, Flex, Code, Divider, Card, Button, Accordion, createTheme, Loader } from '@mantine/core';
4
+ import { jsx } from 'react/jsx-runtime';
5
5
 
6
6
  // src/theme/presets/utils.ts
7
7
  function hexToRgb(hex) {
@@ -250,67 +250,58 @@ var cyberVoltPreset = {
250
250
  primary: "#0097A7",
251
251
  primaryContrast: "#ffffff",
252
252
  background: "#E0E6EE",
253
- surface: "#EAEDF3",
253
+ surface: "rgba(234, 237, 243, 0.45)",
254
254
  surfaceHover: "#D6DCE6",
255
255
  text: "#0A0E14",
256
256
  textDimmed: "#2E3A4D",
257
257
  textSubtle: "#556680",
258
- border: "#B0BCD0",
258
+ border: "rgba(0, 151, 167, 0.32)",
259
259
  error: "#FF1744",
260
260
  warning: "#FF9100",
261
261
  success: "#00E676",
262
- glassBackground: "rgba(234, 238, 244, 0.6)",
263
- glassBlur: "blur(14px)",
262
+ glassBackground: "rgba(234, 238, 244, 0.3)",
263
+ glassBlur: "blur(26px) saturate(160%)",
264
264
  shadow: "0px 2px 4px -2px rgba(0, 151, 167, 0.08)",
265
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04)",
265
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 30, 35, 0.08), 0 6px 18px rgba(0, 30, 35, 0.08), 0 10px 24px rgba(0, 151, 167, 0.015)",
266
266
  durationFast: "80ms",
267
267
  durationNormal: "160ms",
268
268
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
269
269
  destructiveFg: "#ffffff",
270
- fontHeading: '"Orbitron", sans-serif',
271
- fontSans: '"JetBrains Mono", monospace'
270
+ fontHeading: '"Chakra Petch", sans-serif',
271
+ fontSans: '"Chakra Petch", sans-serif'
272
272
  },
273
273
  dark: {
274
274
  primary: "#00ACC1",
275
275
  primaryContrast: "#ffffff",
276
276
  background: "#030506",
277
- surface: "#0E1520",
277
+ surface: "rgba(14, 21, 32, 0.45)",
278
278
  surfaceHover: "#16202E",
279
279
  text: "#E0F7FA",
280
280
  textDimmed: "#80DEEA",
281
281
  textSubtle: "#68C8BE",
282
- border: "#192232",
282
+ border: "rgba(0, 172, 193, 0.19)",
283
283
  error: "#FF1744",
284
284
  warning: "#FF9100",
285
285
  success: "#00E676",
286
- glassBackground: "rgba(12, 20, 30, 0.57)",
287
- glassBlur: "blur(18px)",
286
+ glassBackground: "rgba(12, 20, 30, 0.3)",
287
+ glassBlur: "blur(26px) saturate(160%)",
288
288
  shadow: "0px 2px 8px -2px rgba(0, 229, 255, 0.15)",
289
- cardShadow: "inset 0 1px 0 rgba(0, 229, 255, 0.05), 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 229, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.25)",
289
+ cardShadow: "inset 0 1px 0 rgba(0, 172, 193, 0.18), 0 1px 2px rgba(0, 0, 0, 0.5), 0 6px 18px rgba(0, 0, 0, 0.35), 0 10px 24px rgba(0, 172, 193, 0.03)",
290
290
  durationFast: "80ms",
291
291
  durationNormal: "160ms",
292
292
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
293
293
  destructiveFg: "#ffffff",
294
- fontHeading: '"Orbitron", sans-serif',
295
- fontSans: '"JetBrains Mono", monospace'
294
+ fontHeading: '"Chakra Petch", sans-serif',
295
+ fontSans: '"Chakra Petch", sans-serif'
296
296
  },
297
- subtitleFontFamily: '"Exo 2", sans-serif',
297
+ subtitleFontFamily: '"Chakra Petch", sans-serif',
298
298
  framework: {
299
- fontFamily: '"JetBrains Mono", monospace',
299
+ fontFamily: '"Chakra Petch", sans-serif',
300
300
  headings: {
301
- fontFamily: '"Orbitron", sans-serif'
302
- },
303
- components: {
304
- Title: {
305
- styles: { root: { letterSpacing: "-0.05em" } }
306
- }
301
+ fontFamily: '"Chakra Petch", sans-serif'
307
302
  }
308
303
  },
309
- fontImports: [
310
- "https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap",
311
- "https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap",
312
- "https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap"
313
- ]
304
+ fontImports: ["https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap"]
314
305
  };
315
306
 
316
307
  // src/theme/presets/aurora.ts
@@ -577,178 +568,6 @@ var emberPreset = {
577
568
  "https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;500;600;700&display=swap"
578
569
  ]
579
570
  };
580
- var MOTE_COUNT = 24;
581
- var randRange = (min, max) => min + Math.random() * (max - min);
582
- var motes = Array.from({ length: MOTE_COUNT }, () => {
583
- const size = randRange(2, 16);
584
- return {
585
- left: randRange(0, 100),
586
- size,
587
- blur: size / 2,
588
- duration: randRange(28, 52),
589
- delay: -randRange(0, 35),
590
- drift: randRange(-22, 22),
591
- pulse: randRange(3, 9),
592
- pulseDelay: -randRange(0, 5)
593
- };
594
- });
595
- var HoneyBackground = /* @__PURE__ */ jsxs(Fragment, { children: [
596
- /* @__PURE__ */ jsx("style", { children: `
597
- :root {
598
- --honey-bg-wave-front: #fbeed3;
599
- --honey-bg-wave-back: #fdf5e0;
600
- --honey-mote-core: rgba(230, 170, 50, 0.85);
601
- --honey-mote-halo: rgba(230, 170, 50, 0.3);
602
- }
603
- [data-mantine-color-scheme="dark"] {
604
- --honey-bg-wave-front: #120e05;
605
- --honey-bg-wave-back: #080502;
606
- --honey-mote-core: rgba(232, 168, 32, 0.4);
607
- --honey-mote-halo: rgba(232, 168, 32, 0.12);
608
- }
609
- div[style*="var(--color-background)"][style*="100vh"] {
610
- background-color: transparent !important;
611
- isolation: isolate;
612
- }
613
- .honey-bg-root {
614
- position: absolute;
615
- inset: 0;
616
- z-index: -1;
617
- overflow: hidden;
618
- pointer-events: none;
619
- background: var(--color-background);
620
- }
621
- .honey-bg-layer {
622
- position: absolute;
623
- top: 0;
624
- left: 0;
625
- width: 200%;
626
- height: 100%;
627
- will-change: transform;
628
- }
629
- .honey-bg-layer svg {
630
- display: block;
631
- width: 100%;
632
- height: 100%;
633
- }
634
- @keyframes honey-bg-drift {
635
- from { transform: translateX(0); }
636
- to { transform: translateX(-50%); }
637
- }
638
- .honey-bg-layer-back {
639
- animation: honey-bg-drift 105s linear infinite;
640
- }
641
- .honey-bg-layer-front {
642
- animation: honey-bg-drift 63s linear infinite;
643
- }
644
- .honey-bg-wave-back {
645
- fill: var(--honey-bg-wave-back);
646
- }
647
- .honey-bg-wave-front {
648
- fill: var(--honey-bg-wave-front);
649
- }
650
- .honey-bg-motes {
651
- position: absolute;
652
- inset: 0;
653
- pointer-events: none;
654
- }
655
- .honey-bg-mote {
656
- position: absolute;
657
- bottom: 18%;
658
- opacity: 0;
659
- transform: translate3d(0, 0, 0);
660
- animation: honey-mote-rise var(--mote-duration, 32s) ease-in-out infinite;
661
- animation-delay: var(--mote-delay, 0s);
662
- will-change: transform, opacity;
663
- }
664
- .honey-bg-mote-inner {
665
- width: var(--mote-size, 4px);
666
- height: var(--mote-size, 4px);
667
- border-radius: 50%;
668
- background: radial-gradient(
669
- circle,
670
- var(--honey-mote-core) 0%,
671
- var(--honey-mote-halo) 45%,
672
- transparent 75%
673
- );
674
- filter: blur(var(--mote-blur, 2px));
675
- animation: honey-mote-pulse var(--mote-pulse, 5s) ease-in-out infinite;
676
- animation-delay: var(--mote-pulse-delay, 0s);
677
- will-change: transform, filter;
678
- }
679
- @keyframes honey-mote-rise {
680
- 0% {
681
- transform: translate3d(0, 0, 0);
682
- opacity: 0;
683
- }
684
- 12% {
685
- opacity: 1;
686
- }
687
- 70% {
688
- opacity: 0.85;
689
- }
690
- 100% {
691
- transform: translate3d(var(--mote-drift, 0px), -85vh, 0);
692
- opacity: 0;
693
- }
694
- }
695
- @keyframes honey-mote-pulse {
696
- 0%, 100% {
697
- transform: scale(0.75);
698
- filter: blur(var(--mote-blur, 2px)) brightness(0.8);
699
- }
700
- 50% {
701
- transform: scale(1.35);
702
- filter: blur(calc(var(--mote-blur, 2px) * 1.4)) brightness(1.4);
703
- }
704
- }
705
- @media (prefers-reduced-motion: reduce) {
706
- .honey-bg-layer-back,
707
- .honey-bg-layer-front,
708
- .honey-bg-mote,
709
- .honey-bg-mote-inner {
710
- animation: none;
711
- }
712
- .honey-bg-mote {
713
- opacity: 0;
714
- }
715
- }
716
- ` }),
717
- /* @__PURE__ */ jsxs("div", { className: "honey-bg-root", children: [
718
- /* @__PURE__ */ jsx("div", { className: "honey-bg-layer honey-bg-layer-back", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
719
- "path",
720
- {
721
- className: "honey-bg-wave-back",
722
- d: "M0,340 C260,200 520,220 820,340 C1100,480 1340,440 1600,340 C1860,200 2120,220 2420,340 C2700,480 2940,440 3200,340 L3200,900 L0,900 Z"
723
- }
724
- ) }) }),
725
- /* @__PURE__ */ jsx("div", { className: "honey-bg-layer honey-bg-layer-front", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
726
- "path",
727
- {
728
- className: "honey-bg-wave-front",
729
- d: "M0,640 C280,540 520,560 820,680 C1100,790 1340,760 1600,640 C1880,540 2120,560 2420,680 C2700,790 2940,760 3200,640 L3200,900 L0,900 Z"
730
- }
731
- ) }) }),
732
- /* @__PURE__ */ jsx("div", { className: "honey-bg-motes", "aria-hidden": "true", children: motes.map((mote, i) => /* @__PURE__ */ jsx(
733
- "div",
734
- {
735
- className: "honey-bg-mote",
736
- style: {
737
- left: `${mote.left}%`,
738
- ["--mote-size"]: `${mote.size}px`,
739
- ["--mote-blur"]: `${mote.blur}px`,
740
- ["--mote-duration"]: `${mote.duration}s`,
741
- ["--mote-delay"]: `${mote.delay}s`,
742
- ["--mote-drift"]: `${mote.drift}px`,
743
- ["--mote-pulse"]: `${mote.pulse}s`,
744
- ["--mote-pulse-delay"]: `${mote.pulseDelay}s`
745
- },
746
- children: /* @__PURE__ */ jsx("div", { className: "honey-bg-mote-inner" })
747
- },
748
- i
749
- )) })
750
- ] })
751
- ] });
752
571
  var honeyPreset = {
753
572
  subtitleFontFamily: '"Outfit", sans-serif',
754
573
  fontImports: [
@@ -756,7 +575,7 @@ var honeyPreset = {
756
575
  "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap",
757
576
  "https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap"
758
577
  ],
759
- background: HoneyBackground,
578
+ background: createElement(WaveBackground, { variant: "honey" }),
760
579
  light: {
761
580
  primary: "#A06A08",
762
581
  primaryContrast: "#ffffff",
@@ -818,178 +637,6 @@ var honeyPreset = {
818
637
  }
819
638
  }
820
639
  };
821
- var MOTE_COUNT2 = 24;
822
- var randRange2 = (min, max) => min + Math.random() * (max - min);
823
- var motes2 = Array.from({ length: MOTE_COUNT2 }, () => {
824
- const size = randRange2(2, 16);
825
- return {
826
- left: randRange2(0, 100),
827
- size,
828
- blur: size / 2,
829
- duration: randRange2(28, 52),
830
- delay: -randRange2(0, 35),
831
- drift: randRange2(-22, 22),
832
- pulse: randRange2(3, 9),
833
- pulseDelay: -randRange2(0, 5)
834
- };
835
- });
836
- var CanopyBackground = /* @__PURE__ */ jsxs(Fragment, { children: [
837
- /* @__PURE__ */ jsx("style", { children: `
838
- :root {
839
- --canopy-bg-wave-front: #dcebdf;
840
- --canopy-bg-wave-back: #e6f0e8;
841
- --canopy-mote-core: rgba(140, 205, 155, 0.85);
842
- --canopy-mote-halo: rgba(140, 205, 155, 0.3);
843
- }
844
- [data-mantine-color-scheme="dark"] {
845
- --canopy-bg-wave-front: #060f09;
846
- --canopy-bg-wave-back: #030805;
847
- --canopy-mote-core: rgba(74, 168, 96, 0.4);
848
- --canopy-mote-halo: rgba(74, 168, 96, 0.12);
849
- }
850
- div[style*="var(--color-background)"][style*="100vh"] {
851
- background-color: transparent !important;
852
- isolation: isolate;
853
- }
854
- .canopy-bg-root {
855
- position: absolute;
856
- inset: 0;
857
- z-index: -1;
858
- overflow: hidden;
859
- pointer-events: none;
860
- background: var(--color-background);
861
- }
862
- .canopy-bg-layer {
863
- position: absolute;
864
- top: 0;
865
- left: 0;
866
- width: 200%;
867
- height: 100%;
868
- will-change: transform;
869
- }
870
- .canopy-bg-layer svg {
871
- display: block;
872
- width: 100%;
873
- height: 100%;
874
- }
875
- @keyframes canopy-bg-drift {
876
- from { transform: translateX(0); }
877
- to { transform: translateX(-50%); }
878
- }
879
- .canopy-bg-layer-back {
880
- animation: canopy-bg-drift 105s linear infinite;
881
- }
882
- .canopy-bg-layer-front {
883
- animation: canopy-bg-drift 63s linear infinite;
884
- }
885
- .canopy-bg-wave-back {
886
- fill: var(--canopy-bg-wave-back);
887
- }
888
- .canopy-bg-wave-front {
889
- fill: var(--canopy-bg-wave-front);
890
- }
891
- .canopy-bg-motes {
892
- position: absolute;
893
- inset: 0;
894
- pointer-events: none;
895
- }
896
- .canopy-bg-mote {
897
- position: absolute;
898
- bottom: 18%;
899
- opacity: 0;
900
- transform: translate3d(0, 0, 0);
901
- animation: canopy-mote-rise var(--mote-duration, 32s) ease-in-out infinite;
902
- animation-delay: var(--mote-delay, 0s);
903
- will-change: transform, opacity;
904
- }
905
- .canopy-bg-mote-inner {
906
- width: var(--mote-size, 4px);
907
- height: var(--mote-size, 4px);
908
- border-radius: 50%;
909
- background: radial-gradient(
910
- circle,
911
- var(--canopy-mote-core) 0%,
912
- var(--canopy-mote-halo) 45%,
913
- transparent 75%
914
- );
915
- filter: blur(var(--mote-blur, 2px));
916
- animation: canopy-mote-pulse var(--mote-pulse, 5s) ease-in-out infinite;
917
- animation-delay: var(--mote-pulse-delay, 0s);
918
- will-change: transform, filter;
919
- }
920
- @keyframes canopy-mote-rise {
921
- 0% {
922
- transform: translate3d(0, 0, 0);
923
- opacity: 0;
924
- }
925
- 12% {
926
- opacity: 1;
927
- }
928
- 70% {
929
- opacity: 0.85;
930
- }
931
- 100% {
932
- transform: translate3d(var(--mote-drift, 0px), -85vh, 0);
933
- opacity: 0;
934
- }
935
- }
936
- @keyframes canopy-mote-pulse {
937
- 0%, 100% {
938
- transform: scale(0.75);
939
- filter: blur(var(--mote-blur, 2px)) brightness(0.8);
940
- }
941
- 50% {
942
- transform: scale(1.35);
943
- filter: blur(calc(var(--mote-blur, 2px) * 1.4)) brightness(1.4);
944
- }
945
- }
946
- @media (prefers-reduced-motion: reduce) {
947
- .canopy-bg-layer-back,
948
- .canopy-bg-layer-front,
949
- .canopy-bg-mote,
950
- .canopy-bg-mote-inner {
951
- animation: none;
952
- }
953
- .canopy-bg-mote {
954
- opacity: 0;
955
- }
956
- }
957
- ` }),
958
- /* @__PURE__ */ jsxs("div", { className: "canopy-bg-root", children: [
959
- /* @__PURE__ */ jsx("div", { className: "canopy-bg-layer canopy-bg-layer-back", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
960
- "path",
961
- {
962
- className: "canopy-bg-wave-back",
963
- d: "M0,340 C260,200 520,220 820,340 C1100,480 1340,440 1600,340 C1860,200 2120,220 2420,340 C2700,480 2940,440 3200,340 L3200,900 L0,900 Z"
964
- }
965
- ) }) }),
966
- /* @__PURE__ */ jsx("div", { className: "canopy-bg-layer canopy-bg-layer-front", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
967
- "path",
968
- {
969
- className: "canopy-bg-wave-front",
970
- d: "M0,640 C280,540 520,560 820,680 C1100,790 1340,760 1600,640 C1880,540 2120,560 2420,680 C2700,790 2940,760 3200,640 L3200,900 L0,900 Z"
971
- }
972
- ) }) }),
973
- /* @__PURE__ */ jsx("div", { className: "canopy-bg-motes", "aria-hidden": "true", children: motes2.map((mote, i) => /* @__PURE__ */ jsx(
974
- "div",
975
- {
976
- className: "canopy-bg-mote",
977
- style: {
978
- left: `${mote.left}%`,
979
- ["--mote-size"]: `${mote.size}px`,
980
- ["--mote-blur"]: `${mote.blur}px`,
981
- ["--mote-duration"]: `${mote.duration}s`,
982
- ["--mote-delay"]: `${mote.delay}s`,
983
- ["--mote-drift"]: `${mote.drift}px`,
984
- ["--mote-pulse"]: `${mote.pulse}s`,
985
- ["--mote-pulse-delay"]: `${mote.pulseDelay}s`
986
- },
987
- children: /* @__PURE__ */ jsx("div", { className: "canopy-bg-mote-inner" })
988
- },
989
- i
990
- )) })
991
- ] })
992
- ] });
993
640
  var canopyPreset = {
994
641
  subtitleFontFamily: '"Lora", serif',
995
642
  fontImports: [
@@ -997,7 +644,7 @@ var canopyPreset = {
997
644
  "https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap",
998
645
  "https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap"
999
646
  ],
1000
- background: CanopyBackground,
647
+ background: createElement(WaveBackground, { variant: "canopy" }),
1001
648
  light: {
1002
649
  primary: "#2E7A40",
1003
650
  primaryContrast: "#ffffff",
@@ -1125,19 +772,19 @@ var cyberStrikePreset = {
1125
772
  primary: "#FF1744",
1126
773
  primaryContrast: "#ffffff",
1127
774
  background: "#EBE0E3",
1128
- surface: "#F3EAEB",
775
+ surface: "rgba(243, 234, 235, 0.45)",
1129
776
  surfaceHover: "#E4D6DB",
1130
777
  text: "#140A0C",
1131
778
  textDimmed: "#4D2E35",
1132
779
  textSubtle: "#805560",
1133
- border: "#CCB0B8",
780
+ border: "rgba(170, 80, 100, 0.32)",
1134
781
  error: "#FF1744",
1135
782
  warning: "#FF9100",
1136
783
  success: "#00E676",
1137
- glassBackground: "rgba(242, 234, 236, 0.6)",
1138
- glassBlur: "blur(14px)",
784
+ glassBackground: "rgba(242, 234, 236, 0.3)",
785
+ glassBlur: "blur(26px) saturate(160%)",
1139
786
  shadow: "0px 2px 4px -2px rgba(255, 23, 68, 0.08)",
1140
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04)",
787
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 2px rgba(100, 30, 50, 0.08), 0 6px 18px rgba(100, 30, 50, 0.08), 0 10px 24px rgba(255, 23, 68, 0.015)",
1141
788
  durationFast: "80ms",
1142
789
  durationNormal: "160ms",
1143
790
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -1149,19 +796,19 @@ var cyberStrikePreset = {
1149
796
  primary: "#FF1744",
1150
797
  primaryContrast: "#ffffff",
1151
798
  background: "#060404",
1152
- surface: "#180C10",
799
+ surface: "rgba(24, 12, 16, 0.45)",
1153
800
  surfaceHover: "#26181E",
1154
801
  text: "#FAE0E4",
1155
802
  textDimmed: "#F0A0B0",
1156
803
  textSubtle: "#D08090",
1157
- border: "#33161D",
804
+ border: "rgba(230, 120, 140, 0.2)",
1158
805
  error: "#FF1744",
1159
806
  warning: "#FF9100",
1160
807
  success: "#00E676",
1161
- glassBackground: "rgba(23, 17, 21, 0.57)",
1162
- glassBlur: "blur(18px)",
808
+ glassBackground: "rgba(23, 17, 21, 0.3)",
809
+ glassBlur: "blur(26px) saturate(160%)",
1163
810
  shadow: "0px 2px 8px -2px rgba(255, 23, 68, 0.15)",
1164
- cardShadow: "inset 0 1px 0 rgba(255, 23, 68, 0.05), 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(255, 23, 68, 0.06), 0 8px 24px rgba(0, 0, 0, 0.25)",
811
+ cardShadow: "inset 0 1px 0 rgba(255, 100, 130, 0.18), 0 1px 2px rgba(0, 0, 0, 0.5), 0 6px 18px rgba(0, 0, 0, 0.35), 0 10px 24px rgba(255, 23, 68, 0.03)",
1165
812
  durationFast: "80ms",
1166
813
  durationNormal: "160ms",
1167
814
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -1182,61 +829,61 @@ var cyberStrikePreset = {
1182
829
  "https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap"
1183
830
  ]
1184
831
  };
1185
- var cyberFluxPreset = {
1186
- background: createElement(CyberBackground, { variant: "flux" }),
832
+ var cyberPunkPreset = {
833
+ background: createElement(CyberBackground, { variant: "punk" }),
1187
834
  light: {
1188
- primary: "#C49000",
835
+ primary: "#7C4DFF",
1189
836
  primaryContrast: "#ffffff",
1190
- background: "#EBE8DF",
1191
- surface: "#F3EFEA",
1192
- surfaceHover: "#E4E0D5",
1193
- text: "#14120A",
1194
- textDimmed: "#4D462E",
1195
- textSubtle: "#807555",
1196
- border: "#CCC5B0",
837
+ background: "#E9E6F2",
838
+ surface: "rgba(241, 238, 248, 0.45)",
839
+ surfaceHover: "#DEDAEC",
840
+ text: "#0E0A1E",
841
+ textDimmed: "#342E4D",
842
+ textSubtle: "#625880",
843
+ border: "rgba(124, 77, 255, 0.32)",
1197
844
  error: "#FF1744",
1198
845
  warning: "#FF9100",
1199
846
  success: "#00E676",
1200
- glassBackground: "rgba(242, 240, 233, 0.6)",
1201
- glassBlur: "blur(14px)",
1202
- shadow: "0px 2px 4px -2px rgba(196, 144, 0, 0.08)",
1203
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04)",
847
+ glassBackground: "rgba(240, 238, 248, 0.3)",
848
+ glassBlur: "blur(26px) saturate(160%)",
849
+ shadow: "0px 2px 4px -2px rgba(124, 77, 255, 0.08)",
850
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 2px rgba(20, 15, 40, 0.08), 0 6px 18px rgba(20, 15, 40, 0.08), 0 10px 24px rgba(124, 77, 255, 0.015)",
1204
851
  durationFast: "80ms",
1205
852
  durationNormal: "160ms",
1206
853
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
1207
854
  destructiveFg: "#ffffff",
1208
- fontHeading: '"Audiowide", sans-serif',
855
+ fontHeading: '"Quantico", sans-serif',
1209
856
  fontSans: '"JetBrains Mono", monospace'
1210
857
  },
1211
858
  dark: {
1212
- primary: "#C8A600",
1213
- primaryContrast: "#141200",
1214
- background: "#050503",
1215
- surface: "#17140C",
1216
- surfaceHover: "#282318",
1217
- text: "#FAF5E0",
1218
- textDimmed: "#EAD580",
1219
- textSubtle: "#AC9E4D",
1220
- border: "#232105",
859
+ primary: "#9575CD",
860
+ primaryContrast: "#1A1528",
861
+ background: "#040308",
862
+ surface: "rgba(18, 14, 28, 0.45)",
863
+ surfaceHover: "#221A34",
864
+ text: "#F0EAFF",
865
+ textDimmed: "#D0BBEE",
866
+ textSubtle: "#B0A0D0",
867
+ border: "rgba(149, 117, 205, 0.20)",
1221
868
  error: "#FF1744",
1222
869
  warning: "#FF9100",
1223
870
  success: "#00E676",
1224
- glassBackground: "rgba(21, 19, 12, 0.57)",
1225
- glassBlur: "blur(18px)",
1226
- shadow: "0px 2px 8px -2px rgba(255, 214, 0, 0.15)",
1227
- cardShadow: "inset 0 1px 0 rgba(255, 214, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(255, 214, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.25)",
871
+ glassBackground: "rgba(16, 13, 26, 0.3)",
872
+ glassBlur: "blur(26px) saturate(160%)",
873
+ shadow: "0px 2px 8px -2px rgba(179, 136, 255, 0.15)",
874
+ cardShadow: "inset 0 1px 0 rgba(149, 117, 205, 0.18), 0 1px 2px rgba(0, 0, 0, 0.5), 0 6px 18px rgba(0, 0, 0, 0.35), 0 10px 24px rgba(149, 117, 205, 0.03)",
1228
875
  durationFast: "80ms",
1229
876
  durationNormal: "160ms",
1230
877
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
1231
878
  destructiveFg: "#ffffff",
1232
- fontHeading: '"Audiowide", sans-serif',
879
+ fontHeading: '"Quantico", sans-serif',
1233
880
  fontSans: '"JetBrains Mono", monospace'
1234
881
  },
1235
882
  subtitleFontFamily: '"Exo 2", sans-serif',
1236
883
  framework: {
1237
884
  fontFamily: '"JetBrains Mono", monospace',
1238
885
  headings: {
1239
- fontFamily: '"Audiowide", sans-serif'
886
+ fontFamily: '"Quantico", sans-serif'
1240
887
  },
1241
888
  components: {
1242
889
  Title: {
@@ -1245,7 +892,7 @@ var cyberFluxPreset = {
1245
892
  }
1246
893
  },
1247
894
  fontImports: [
1248
- "https://fonts.googleapis.com/css2?family=Audiowide&display=swap",
895
+ "https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap",
1249
896
  "https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap",
1250
897
  "https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap"
1251
898
  ]
@@ -1256,19 +903,19 @@ var cyberVoidPreset = {
1256
903
  primary: "#2979FF",
1257
904
  primaryContrast: "#ffffff",
1258
905
  background: "#E0E5EE",
1259
- surface: "#EAEDF3",
906
+ surface: "rgba(234, 237, 243, 0.45)",
1260
907
  surfaceHover: "#D6DBE5",
1261
908
  text: "#0A0D14",
1262
909
  textDimmed: "#2E374D",
1263
910
  textSubtle: "#556080",
1264
- border: "#B0B8CE",
911
+ border: "rgba(120, 135, 170, 0.32)",
1265
912
  error: "#FF1744",
1266
913
  warning: "#FF9100",
1267
914
  success: "#00E676",
1268
- glassBackground: "rgba(238, 241, 248, 0.6)",
1269
- glassBlur: "blur(14px)",
915
+ glassBackground: "rgba(238, 241, 248, 0.3)",
916
+ glassBlur: "blur(26px) saturate(160%)",
1270
917
  shadow: "0px 2px 4px -2px rgba(41, 121, 255, 0.08)",
1271
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04)",
918
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 2px rgba(30, 50, 100, 0.08), 0 6px 18px rgba(30, 50, 100, 0.08), 0 10px 24px rgba(41, 121, 255, 0.015)",
1272
919
  durationFast: "80ms",
1273
920
  durationNormal: "160ms",
1274
921
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -1280,19 +927,19 @@ var cyberVoidPreset = {
1280
927
  primary: "#2979FF",
1281
928
  primaryContrast: "#ffffff",
1282
929
  background: "#030507",
1283
- surface: "#0E131E",
930
+ surface: "rgba(14, 19, 30, 0.45)",
1284
931
  surfaceHover: "#161E2C",
1285
932
  text: "#E0EAFA",
1286
933
  textDimmed: "#99BBEE",
1287
934
  textSubtle: "#80A0D0",
1288
- border: "#192033",
935
+ border: "rgba(140, 170, 230, 0.18)",
1289
936
  error: "#FF1744",
1290
937
  warning: "#FF9100",
1291
938
  success: "#00E676",
1292
- glassBackground: "rgba(14, 19, 30, 0.57)",
1293
- glassBlur: "blur(18px)",
939
+ glassBackground: "rgba(14, 19, 30, 0.3)",
940
+ glassBlur: "blur(26px) saturate(160%)",
1294
941
  shadow: "0px 2px 8px -2px rgba(41, 121, 255, 0.15)",
1295
- cardShadow: "inset 0 1px 0 rgba(41, 121, 255, 0.05), 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(41, 121, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.25)",
942
+ cardShadow: "inset 0 1px 0 rgba(100, 160, 255, 0.18), 0 1px 2px rgba(0, 0, 0, 0.5), 0 6px 18px rgba(0, 0, 0, 0.35), 0 10px 24px rgba(41, 121, 255, 0.03)",
1296
943
  durationFast: "80ms",
1297
944
  durationNormal: "160ms",
1298
945
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -1314,184 +961,12 @@ var cyberVoidPreset = {
1314
961
  "https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap"
1315
962
  ]
1316
963
  };
1317
- var MOTE_COUNT3 = 24;
1318
- var randRange3 = (min, max) => min + Math.random() * (max - min);
1319
- var motes3 = Array.from({ length: MOTE_COUNT3 }, () => {
1320
- const size = randRange3(2, 16);
1321
- return {
1322
- left: randRange3(0, 100),
1323
- size,
1324
- blur: size / 2,
1325
- duration: randRange3(28, 52),
1326
- delay: -randRange3(0, 35),
1327
- drift: randRange3(-22, 22),
1328
- pulse: randRange3(3, 9),
1329
- pulseDelay: -randRange3(0, 5)
1330
- };
1331
- });
1332
- var NirvanaBackground = /* @__PURE__ */ jsxs(Fragment, { children: [
1333
- /* @__PURE__ */ jsx("style", { children: `
1334
- :root {
1335
- --nirvana-bg-wave-front: #fde8e0;
1336
- --nirvana-bg-wave-back: #fef2ec;
1337
- --nirvana-mote-core: rgba(253, 205, 170, 0.85);
1338
- --nirvana-mote-halo: rgba(253, 205, 170, 0.3);
1339
- }
1340
- [data-mantine-color-scheme="dark"] {
1341
- --nirvana-bg-wave-front: #140804;
1342
- --nirvana-bg-wave-back: #0a0402;
1343
- --nirvana-mote-core: rgba(180, 110, 70, 0.4);
1344
- --nirvana-mote-halo: rgba(180, 110, 70, 0.12);
1345
- }
1346
- div[style*="var(--color-background)"][style*="100vh"] {
1347
- background-color: transparent !important;
1348
- isolation: isolate;
1349
- }
1350
- .nirvana-bg-root {
1351
- position: absolute;
1352
- inset: 0;
1353
- z-index: -1;
1354
- overflow: hidden;
1355
- pointer-events: none;
1356
- background: var(--color-background);
1357
- }
1358
- .nirvana-bg-layer {
1359
- position: absolute;
1360
- top: 0;
1361
- left: 0;
1362
- width: 200%;
1363
- height: 100%;
1364
- will-change: transform;
1365
- }
1366
- .nirvana-bg-layer svg {
1367
- display: block;
1368
- width: 100%;
1369
- height: 100%;
1370
- }
1371
- @keyframes nirvana-wave-drift {
1372
- from { transform: translateX(0); }
1373
- to { transform: translateX(-50%); }
1374
- }
1375
- .nirvana-bg-layer-back {
1376
- animation: nirvana-wave-drift 105s linear infinite;
1377
- }
1378
- .nirvana-bg-layer-front {
1379
- animation: nirvana-wave-drift 63s linear infinite;
1380
- }
1381
- .nirvana-bg-wave-back {
1382
- fill: var(--nirvana-bg-wave-back);
1383
- }
1384
- .nirvana-bg-wave-front {
1385
- fill: var(--nirvana-bg-wave-front);
1386
- }
1387
- .nirvana-bg-motes {
1388
- position: absolute;
1389
- inset: 0;
1390
- pointer-events: none;
1391
- }
1392
- .nirvana-bg-mote {
1393
- position: absolute;
1394
- bottom: 18%;
1395
- opacity: 0;
1396
- transform: translate3d(0, 0, 0);
1397
- animation: nirvana-mote-rise var(--mote-duration, 32s) ease-in-out infinite;
1398
- animation-delay: var(--mote-delay, 0s);
1399
- will-change: transform, opacity;
1400
- }
1401
- .nirvana-bg-mote-inner {
1402
- width: var(--mote-size, 4px);
1403
- height: var(--mote-size, 4px);
1404
- border-radius: 50%;
1405
- background: radial-gradient(
1406
- circle,
1407
- var(--nirvana-mote-core) 0%,
1408
- var(--nirvana-mote-halo) 45%,
1409
- transparent 75%
1410
- );
1411
- filter: blur(var(--mote-blur, 2px));
1412
- animation: nirvana-mote-pulse var(--mote-pulse, 5s) ease-in-out infinite;
1413
- animation-delay: var(--mote-pulse-delay, 0s);
1414
- will-change: transform, filter;
1415
- }
1416
- @keyframes nirvana-mote-rise {
1417
- 0% {
1418
- transform: translate3d(0, 0, 0);
1419
- opacity: 0;
1420
- }
1421
- 12% {
1422
- opacity: 1;
1423
- }
1424
- 70% {
1425
- opacity: 0.85;
1426
- }
1427
- 100% {
1428
- transform: translate3d(var(--mote-drift, 0px), -85vh, 0);
1429
- opacity: 0;
1430
- }
1431
- }
1432
- @keyframes nirvana-mote-pulse {
1433
- 0%, 100% {
1434
- transform: scale(0.75);
1435
- filter: blur(var(--mote-blur, 2px)) brightness(0.8);
1436
- }
1437
- 50% {
1438
- transform: scale(1.35);
1439
- filter: blur(calc(var(--mote-blur, 2px) * 1.4)) brightness(1.4);
1440
- }
1441
- }
1442
- @media (prefers-reduced-motion: reduce) {
1443
- .nirvana-bg-layer-back,
1444
- .nirvana-bg-layer-front,
1445
- .nirvana-bg-mote,
1446
- .nirvana-bg-mote-inner {
1447
- animation: none;
1448
- }
1449
- .nirvana-bg-mote {
1450
- opacity: 0;
1451
- }
1452
- }
1453
- ` }),
1454
- /* @__PURE__ */ jsxs("div", { className: "nirvana-bg-root", children: [
1455
- /* @__PURE__ */ jsx("div", { className: "nirvana-bg-layer nirvana-bg-layer-back", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
1456
- "path",
1457
- {
1458
- className: "nirvana-bg-wave-back",
1459
- d: "M0,340 C260,200 520,220 820,340 C1100,480 1340,440 1600,340 C1860,200 2120,220 2420,340 C2700,480 2940,440 3200,340 L3200,900 L0,900 Z"
1460
- }
1461
- ) }) }),
1462
- /* @__PURE__ */ jsx("div", { className: "nirvana-bg-layer nirvana-bg-layer-front", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
1463
- "path",
1464
- {
1465
- className: "nirvana-bg-wave-front",
1466
- d: "M0,640 C280,540 520,560 820,680 C1100,790 1340,760 1600,640 C1880,540 2120,560 2420,680 C2700,790 2940,760 3200,640 L3200,900 L0,900 Z"
1467
- }
1468
- ) }) }),
1469
- /* @__PURE__ */ jsx("div", { className: "nirvana-bg-motes", "aria-hidden": "true", children: motes3.map((mote, i) => /* @__PURE__ */ jsx(
1470
- "div",
1471
- {
1472
- className: "nirvana-bg-mote",
1473
- style: {
1474
- left: `${mote.left}%`,
1475
- ["--mote-size"]: `${mote.size}px`,
1476
- ["--mote-blur"]: `${mote.blur}px`,
1477
- ["--mote-duration"]: `${mote.duration}s`,
1478
- ["--mote-delay"]: `${mote.delay}s`,
1479
- ["--mote-drift"]: `${mote.drift}px`,
1480
- ["--mote-pulse"]: `${mote.pulse}s`,
1481
- ["--mote-pulse-delay"]: `${mote.pulseDelay}s`
1482
- },
1483
- children: /* @__PURE__ */ jsx("div", { className: "nirvana-bg-mote-inner" })
1484
- },
1485
- i
1486
- )) })
1487
- ] })
1488
- ] });
1489
964
  var nirvanaPreset = {
1490
965
  subtitleFontFamily: '"Inter", sans-serif',
1491
966
  fontImports: [
1492
967
  "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Cormorant:wght@400;500;600;700&display=swap"
1493
968
  ],
1494
- background: NirvanaBackground,
969
+ background: createElement(WaveBackground, { variant: "nirvana" }),
1495
970
  loader: /* @__PURE__ */ jsx(Loader, { type: "dots", size: "xl" }),
1496
971
  light: {
1497
972
  primary: "#f23801",
@@ -1550,184 +1025,12 @@ var nirvanaPreset = {
1550
1025
  }
1551
1026
  }
1552
1027
  };
1553
- var MOTE_COUNT4 = 24;
1554
- var randRange4 = (min, max) => min + Math.random() * (max - min);
1555
- var motes4 = Array.from({ length: MOTE_COUNT4 }, () => {
1556
- const size = randRange4(2, 16);
1557
- return {
1558
- left: randRange4(0, 100),
1559
- size,
1560
- blur: size / 2,
1561
- duration: randRange4(28, 52),
1562
- delay: -randRange4(0, 35),
1563
- drift: randRange4(-22, 22),
1564
- pulse: randRange4(3, 9),
1565
- pulseDelay: -randRange4(0, 5)
1566
- };
1567
- });
1568
- var WaveBackground = /* @__PURE__ */ jsxs(Fragment, { children: [
1569
- /* @__PURE__ */ jsx("style", { children: `
1570
- :root {
1571
- --wave-bg-wave-front: #dbeafe;
1572
- --wave-bg-wave-back: #eef4ff;
1573
- --wave-mote-core: rgba(125, 180, 255, 0.85);
1574
- --wave-mote-halo: rgba(125, 180, 255, 0.3);
1575
- }
1576
- [data-mantine-color-scheme="dark"] {
1577
- --wave-bg-wave-front: #050e1c;
1578
- --wave-bg-wave-back: #030812;
1579
- --wave-mote-core: rgba(90, 160, 230, 0.4);
1580
- --wave-mote-halo: rgba(90, 160, 230, 0.12);
1581
- }
1582
- div[style*="var(--color-background)"][style*="100vh"] {
1583
- background-color: transparent !important;
1584
- isolation: isolate;
1585
- }
1586
- .wave-bg-root {
1587
- position: absolute;
1588
- inset: 0;
1589
- z-index: -1;
1590
- overflow: hidden;
1591
- pointer-events: none;
1592
- background: var(--color-background);
1593
- }
1594
- .wave-bg-layer {
1595
- position: absolute;
1596
- top: 0;
1597
- left: 0;
1598
- width: 200%;
1599
- height: 100%;
1600
- will-change: transform;
1601
- }
1602
- .wave-bg-layer svg {
1603
- display: block;
1604
- width: 100%;
1605
- height: 100%;
1606
- }
1607
- @keyframes wave-bg-drift {
1608
- from { transform: translateX(0); }
1609
- to { transform: translateX(-50%); }
1610
- }
1611
- .wave-bg-layer-back {
1612
- animation: wave-bg-drift 105s linear infinite;
1613
- }
1614
- .wave-bg-layer-front {
1615
- animation: wave-bg-drift 63s linear infinite;
1616
- }
1617
- .wave-bg-wave-back {
1618
- fill: var(--wave-bg-wave-back);
1619
- }
1620
- .wave-bg-wave-front {
1621
- fill: var(--wave-bg-wave-front);
1622
- }
1623
- .wave-bg-motes {
1624
- position: absolute;
1625
- inset: 0;
1626
- pointer-events: none;
1627
- }
1628
- .wave-bg-mote {
1629
- position: absolute;
1630
- bottom: 18%;
1631
- opacity: 0;
1632
- transform: translate3d(0, 0, 0);
1633
- animation: wave-mote-rise var(--mote-duration, 32s) ease-in-out infinite;
1634
- animation-delay: var(--mote-delay, 0s);
1635
- will-change: transform, opacity;
1636
- }
1637
- .wave-bg-mote-inner {
1638
- width: var(--mote-size, 4px);
1639
- height: var(--mote-size, 4px);
1640
- border-radius: 50%;
1641
- background: radial-gradient(
1642
- circle,
1643
- var(--wave-mote-core) 0%,
1644
- var(--wave-mote-halo) 45%,
1645
- transparent 75%
1646
- );
1647
- filter: blur(var(--mote-blur, 2px));
1648
- animation: wave-mote-pulse var(--mote-pulse, 5s) ease-in-out infinite;
1649
- animation-delay: var(--mote-pulse-delay, 0s);
1650
- will-change: transform, filter;
1651
- }
1652
- @keyframes wave-mote-rise {
1653
- 0% {
1654
- transform: translate3d(0, 0, 0);
1655
- opacity: 0;
1656
- }
1657
- 12% {
1658
- opacity: 1;
1659
- }
1660
- 70% {
1661
- opacity: 0.85;
1662
- }
1663
- 100% {
1664
- transform: translate3d(var(--mote-drift, 0px), -85vh, 0);
1665
- opacity: 0;
1666
- }
1667
- }
1668
- @keyframes wave-mote-pulse {
1669
- 0%, 100% {
1670
- transform: scale(0.75);
1671
- filter: blur(var(--mote-blur, 2px)) brightness(0.8);
1672
- }
1673
- 50% {
1674
- transform: scale(1.35);
1675
- filter: blur(calc(var(--mote-blur, 2px) * 1.4)) brightness(1.4);
1676
- }
1677
- }
1678
- @media (prefers-reduced-motion: reduce) {
1679
- .wave-bg-layer-back,
1680
- .wave-bg-layer-front,
1681
- .wave-bg-mote,
1682
- .wave-bg-mote-inner {
1683
- animation: none;
1684
- }
1685
- .wave-bg-mote {
1686
- opacity: 0;
1687
- }
1688
- }
1689
- ` }),
1690
- /* @__PURE__ */ jsxs("div", { className: "wave-bg-root", children: [
1691
- /* @__PURE__ */ jsx("div", { className: "wave-bg-layer wave-bg-layer-back", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
1692
- "path",
1693
- {
1694
- className: "wave-bg-wave-back",
1695
- d: "M0,340 C260,200 520,220 820,340 C1100,480 1340,440 1600,340 C1860,200 2120,220 2420,340 C2700,480 2940,440 3200,340 L3200,900 L0,900 Z"
1696
- }
1697
- ) }) }),
1698
- /* @__PURE__ */ jsx("div", { className: "wave-bg-layer wave-bg-layer-front", children: /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3200 900", preserveAspectRatio: "none", children: /* @__PURE__ */ jsx(
1699
- "path",
1700
- {
1701
- className: "wave-bg-wave-front",
1702
- d: "M0,640 C280,540 520,560 820,680 C1100,790 1340,760 1600,640 C1880,540 2120,560 2420,680 C2700,790 2940,760 3200,640 L3200,900 L0,900 Z"
1703
- }
1704
- ) }) }),
1705
- /* @__PURE__ */ jsx("div", { className: "wave-bg-motes", "aria-hidden": "true", children: motes4.map((mote, i) => /* @__PURE__ */ jsx(
1706
- "div",
1707
- {
1708
- className: "wave-bg-mote",
1709
- style: {
1710
- left: `${mote.left}%`,
1711
- ["--mote-size"]: `${mote.size}px`,
1712
- ["--mote-blur"]: `${mote.blur}px`,
1713
- ["--mote-duration"]: `${mote.duration}s`,
1714
- ["--mote-delay"]: `${mote.delay}s`,
1715
- ["--mote-drift"]: `${mote.drift}px`,
1716
- ["--mote-pulse"]: `${mote.pulse}s`,
1717
- ["--mote-pulse-delay"]: `${mote.pulseDelay}s`
1718
- },
1719
- children: /* @__PURE__ */ jsx("div", { className: "wave-bg-mote-inner" })
1720
- },
1721
- i
1722
- )) })
1723
- ] })
1724
- ] });
1725
1028
  var wavePreset = {
1726
1029
  subtitleFontFamily: '"Inter", sans-serif',
1727
1030
  fontImports: [
1728
1031
  "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap"
1729
1032
  ],
1730
- background: WaveBackground,
1033
+ background: createElement(WaveBackground, { variant: "wave" }),
1731
1034
  light: {
1732
1035
  primary: "#2563eb",
1733
1036
  primaryContrast: "#ffffff",
@@ -1872,11 +1175,11 @@ var PRESETS = {
1872
1175
  description: "Cold synthetic digital depths",
1873
1176
  colors: ["#2979FF", "#0A0D14", "#E8ECF2"]
1874
1177
  },
1875
- "cyber-flux": {
1876
- ...cyberFluxPreset,
1877
- label: "Cyber-Flux",
1878
- description: "Hazard-lit industrial neon",
1879
- colors: ["#FFD600", "#14120A", "#F2F0E8"]
1178
+ "cyber-punk": {
1179
+ ...cyberPunkPreset,
1180
+ label: "Cyber-Punk",
1181
+ description: "High-voltage violet neon",
1182
+ colors: ["#7C4DFF", "#0E0A1E", "#E9E6F2"]
1880
1183
  },
1881
1184
  "cyber-strike": {
1882
1185
  ...cyberStrikePreset,