@elevasis/ui 1.14.5 → 1.15.0
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.
- package/dist/charts/index.js +2 -2
- package/dist/chunk-GATPOCUD.js +14 -0
- package/dist/{chunk-TBRTRBJV.js → chunk-GIQPDIG5.js} +97 -6
- package/dist/{chunk-RHHWAM22.js → chunk-IKKYFTYZ.js} +5 -5
- package/dist/{chunk-MYRCM7VD.js → chunk-KBLGVZBD.js} +3 -1
- package/dist/{chunk-6ZNKDPAO.js → chunk-KUK3ZK4D.js} +888 -192
- package/dist/{chunk-E72FC2ZF.js → chunk-KZGJPBXT.js} +1 -1
- package/dist/{chunk-HGUJ6SSM.js → chunk-PCC3PLDV.js} +22 -1
- package/dist/{chunk-5OJM7FHM.js → chunk-UCTTJ2RS.js} +34 -9
- package/dist/components/index.d.ts +15 -1
- package/dist/components/index.js +11 -9
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.js +4 -3
- package/dist/hooks/published.d.ts +1 -1
- package/dist/hooks/published.js +4 -3
- package/dist/index.d.ts +14 -4
- package/dist/index.js +5 -4
- package/dist/layout/index.d.ts +61 -3
- package/dist/layout/index.js +4 -3
- package/dist/provider/index.d.ts +12 -2
- package/dist/provider/index.js +4 -3
- package/dist/provider/published.d.ts +12 -2
- package/dist/theme/index.d.ts +13 -2
- package/dist/theme/index.js +3 -2
- package/dist/types/index.d.ts +1 -1
- package/package.json +3 -3
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { CyberBackground } from './chunk-GIQPDIG5.js';
|
|
2
|
+
import { createElement, createContext, useContext } from 'react';
|
|
3
|
+
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
1
4
|
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 } from '@mantine/core';
|
|
2
|
-
import { createContext, useContext } from 'react';
|
|
3
5
|
|
|
4
6
|
// src/theme/presets/utils.ts
|
|
5
7
|
function hexToRgb(hex) {
|
|
@@ -242,9 +244,8 @@ var regalPreset = {
|
|
|
242
244
|
"https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap"
|
|
243
245
|
]
|
|
244
246
|
};
|
|
245
|
-
|
|
246
|
-
// src/theme/presets/cyber-volt.ts
|
|
247
247
|
var cyberVoltPreset = {
|
|
248
|
+
background: createElement(CyberBackground, { variant: "volt" }),
|
|
248
249
|
light: {
|
|
249
250
|
primary: "#0097A7",
|
|
250
251
|
primaryContrast: "#ffffff",
|
|
@@ -576,83 +577,196 @@ var emberPreset = {
|
|
|
576
577
|
"https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;500;600;700&display=swap"
|
|
577
578
|
]
|
|
578
579
|
};
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
var
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
|
|
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
|
+
] });
|
|
645
752
|
var honeyPreset = {
|
|
753
|
+
subtitleFontFamily: '"Outfit", sans-serif',
|
|
754
|
+
fontImports: [
|
|
755
|
+
"https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap",
|
|
756
|
+
"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap",
|
|
757
|
+
"https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap"
|
|
758
|
+
],
|
|
759
|
+
background: HoneyBackground,
|
|
646
760
|
light: {
|
|
647
761
|
primary: "#A06A08",
|
|
648
762
|
primaryContrast: "#ffffff",
|
|
649
763
|
background: "#F5F0E8",
|
|
650
|
-
surface: "
|
|
764
|
+
surface: "rgba(251, 247, 240, 0.4)",
|
|
651
765
|
surfaceHover: "#EDE5D8",
|
|
652
766
|
text: "#2A1F0A",
|
|
653
767
|
textDimmed: "#5C4820",
|
|
654
768
|
textSubtle: "#8A7450",
|
|
655
|
-
border: "
|
|
769
|
+
border: "rgba(42, 31, 10, 0.08)",
|
|
656
770
|
error: "#C62828",
|
|
657
771
|
warning: "#E65100",
|
|
658
772
|
success: "#33691E",
|
|
@@ -670,17 +784,17 @@ var honeyPreset = {
|
|
|
670
784
|
dark: {
|
|
671
785
|
primary: "#E8A820",
|
|
672
786
|
primaryContrast: "#1A1200",
|
|
673
|
-
background: "#
|
|
674
|
-
surface: "
|
|
787
|
+
background: "#000000",
|
|
788
|
+
surface: "rgba(20, 17, 8, 0.2)",
|
|
675
789
|
surfaceHover: "#1C1808",
|
|
676
790
|
text: "#FDF0D0",
|
|
677
791
|
textDimmed: "#D8C070",
|
|
678
792
|
textSubtle: "#B8A060",
|
|
679
|
-
border: "
|
|
793
|
+
border: "rgba(216, 192, 112, 0.1)",
|
|
680
794
|
error: "#EF5350",
|
|
681
795
|
warning: "#FF8A65",
|
|
682
796
|
success: "#8BC34A",
|
|
683
|
-
glassBackground: "rgba(22, 19, 9, 0.
|
|
797
|
+
glassBackground: "rgba(22, 19, 9, 0.45)",
|
|
684
798
|
glassBlur: "blur(14px)",
|
|
685
799
|
shadow: "0px 3px 8px -2px rgba(0, 0, 0, 0.95)",
|
|
686
800
|
cardShadow: "inset 0 1px 0 rgba(232, 168, 32, 0.04), 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2)",
|
|
@@ -691,7 +805,6 @@ var honeyPreset = {
|
|
|
691
805
|
fontHeading: '"Syne", sans-serif',
|
|
692
806
|
fontSans: '"Inter", sans-serif'
|
|
693
807
|
},
|
|
694
|
-
subtitleFontFamily: '"Outfit", sans-serif',
|
|
695
808
|
framework: {
|
|
696
809
|
defaultRadius: "sm",
|
|
697
810
|
fontFamily: '"Inter", sans-serif',
|
|
@@ -703,88 +816,198 @@ var honeyPreset = {
|
|
|
703
816
|
styles: { root: { letterSpacing: "-0.06em" } }
|
|
704
817
|
}
|
|
705
818
|
}
|
|
706
|
-
}
|
|
707
|
-
fontImports: [
|
|
708
|
-
"https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap",
|
|
709
|
-
"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap",
|
|
710
|
-
"https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap"
|
|
711
|
-
]
|
|
712
|
-
};
|
|
713
|
-
|
|
714
|
-
// src/theme/presets/abyss.ts
|
|
715
|
-
var abyssPreset = {
|
|
716
|
-
light: {
|
|
717
|
-
primary: "#0A70B0",
|
|
718
|
-
primaryContrast: "#ffffff",
|
|
719
|
-
background: "#EDF1F5",
|
|
720
|
-
surface: "#F3F7FA",
|
|
721
|
-
surfaceHover: "#E0E8EE",
|
|
722
|
-
text: "#0A1828",
|
|
723
|
-
textDimmed: "#2A4060",
|
|
724
|
-
textSubtle: "#5A7890",
|
|
725
|
-
border: "#C0CED8",
|
|
726
|
-
error: "#D32F2F",
|
|
727
|
-
warning: "#F57C00",
|
|
728
|
-
success: "#388E3C",
|
|
729
|
-
glassBackground: "rgba(243, 247, 250, 0.6)",
|
|
730
|
-
glassBlur: "blur(12px)",
|
|
731
|
-
shadow: "0px 2px 6px -2px rgba(10, 112, 176, 0.08)",
|
|
732
|
-
cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 4px rgba(10, 24, 40, 0.05), 0 4px 8px rgba(10, 24, 40, 0.04)",
|
|
733
|
-
durationFast: "130ms",
|
|
734
|
-
durationNormal: "240ms",
|
|
735
|
-
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
736
|
-
destructiveFg: "#ffffff",
|
|
737
|
-
fontHeading: '"Outfit", sans-serif',
|
|
738
|
-
fontSans: '"Outfit", sans-serif'
|
|
739
|
-
},
|
|
740
|
-
dark: {
|
|
741
|
-
primary: "#1090D8",
|
|
742
|
-
primaryContrast: "#ffffff",
|
|
743
|
-
background: "#010508",
|
|
744
|
-
surface: "#07101A",
|
|
745
|
-
surfaceHover: "#122838",
|
|
746
|
-
text: "#E4F0FC",
|
|
747
|
-
textDimmed: "#A0C8E8",
|
|
748
|
-
textSubtle: "#78A8C0",
|
|
749
|
-
border: "#0F2030",
|
|
750
|
-
error: "#FF5252",
|
|
751
|
-
warning: "#FFB74D",
|
|
752
|
-
success: "#69F0AE",
|
|
753
|
-
glassBackground: "rgba(5, 18, 26, 0.65)",
|
|
754
|
-
glassBlur: "blur(16px)",
|
|
755
|
-
shadow: "0px 3px 8px -2px rgba(0, 0, 0, 0.95)",
|
|
756
|
-
cardShadow: "inset 0 1px 0 rgba(16, 144, 216, 0.04), 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2)",
|
|
757
|
-
durationFast: "130ms",
|
|
758
|
-
durationNormal: "240ms",
|
|
759
|
-
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
760
|
-
destructiveFg: "#ffffff",
|
|
761
|
-
fontHeading: '"Outfit", sans-serif',
|
|
762
|
-
fontSans: '"Outfit", sans-serif'
|
|
763
|
-
},
|
|
764
|
-
subtitleFontFamily: '"Outfit", sans-serif',
|
|
765
|
-
framework: {
|
|
766
|
-
defaultRadius: "sm",
|
|
767
|
-
fontFamily: '"Outfit", sans-serif',
|
|
768
|
-
headings: {
|
|
769
|
-
fontFamily: '"Outfit", sans-serif',
|
|
770
|
-
fontWeight: "700"
|
|
771
|
-
}
|
|
772
|
-
},
|
|
773
|
-
fontImports: ["https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap"]
|
|
819
|
+
}
|
|
774
820
|
};
|
|
775
|
-
|
|
776
|
-
|
|
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
|
+
] });
|
|
777
993
|
var canopyPreset = {
|
|
994
|
+
subtitleFontFamily: '"Lora", serif',
|
|
995
|
+
fontImports: [
|
|
996
|
+
"https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap",
|
|
997
|
+
"https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap",
|
|
998
|
+
"https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap"
|
|
999
|
+
],
|
|
1000
|
+
background: CanopyBackground,
|
|
778
1001
|
light: {
|
|
779
1002
|
primary: "#2E7A40",
|
|
780
1003
|
primaryContrast: "#ffffff",
|
|
781
1004
|
background: "#EDF3EE",
|
|
782
|
-
surface: "
|
|
1005
|
+
surface: "rgba(244, 248, 245, 0.4)",
|
|
783
1006
|
surfaceHover: "#E0EBE2",
|
|
784
1007
|
text: "#0F2415",
|
|
785
1008
|
textDimmed: "#2D5235",
|
|
786
1009
|
textSubtle: "#5A7D62",
|
|
787
|
-
border: "
|
|
1010
|
+
border: "rgba(15, 36, 21, 0.08)",
|
|
788
1011
|
error: "#C62828",
|
|
789
1012
|
warning: "#E65100",
|
|
790
1013
|
success: "#33691E",
|
|
@@ -802,17 +1025,17 @@ var canopyPreset = {
|
|
|
802
1025
|
dark: {
|
|
803
1026
|
primary: "#4AA860",
|
|
804
1027
|
primaryContrast: "#ffffff",
|
|
805
|
-
background: "#
|
|
806
|
-
surface: "
|
|
1028
|
+
background: "#000000",
|
|
1029
|
+
surface: "rgba(11, 21, 15, 0.2)",
|
|
807
1030
|
surfaceHover: "#162818",
|
|
808
1031
|
text: "#E0F0E4",
|
|
809
1032
|
textDimmed: "#98C8A4",
|
|
810
1033
|
textSubtle: "#80A090",
|
|
811
|
-
border: "
|
|
1034
|
+
border: "rgba(152, 200, 164, 0.1)",
|
|
812
1035
|
error: "#EF5350",
|
|
813
1036
|
warning: "#FF8A65",
|
|
814
1037
|
success: "#8BC34A",
|
|
815
|
-
glassBackground: "rgba(16, 23, 18, 0.
|
|
1038
|
+
glassBackground: "rgba(16, 23, 18, 0.45)",
|
|
816
1039
|
glassBlur: "blur(14px)",
|
|
817
1040
|
shadow: "0px 3px 8px -2px rgba(0, 0, 0, 0.95)",
|
|
818
1041
|
cardShadow: "inset 0 1px 0 rgba(74, 168, 96, 0.04), 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2)",
|
|
@@ -823,7 +1046,6 @@ var canopyPreset = {
|
|
|
823
1046
|
fontHeading: '"Fraunces", serif',
|
|
824
1047
|
fontSans: '"Lato", sans-serif'
|
|
825
1048
|
},
|
|
826
|
-
subtitleFontFamily: '"Lora", serif',
|
|
827
1049
|
framework: {
|
|
828
1050
|
defaultRadius: "sm",
|
|
829
1051
|
fontFamily: '"Lato", sans-serif',
|
|
@@ -831,12 +1053,7 @@ var canopyPreset = {
|
|
|
831
1053
|
fontFamily: '"Fraunces", serif',
|
|
832
1054
|
fontWeight: "600"
|
|
833
1055
|
}
|
|
834
|
-
}
|
|
835
|
-
fontImports: [
|
|
836
|
-
"https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap",
|
|
837
|
-
"https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap",
|
|
838
|
-
"https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap"
|
|
839
|
-
]
|
|
1056
|
+
}
|
|
840
1057
|
};
|
|
841
1058
|
|
|
842
1059
|
// src/theme/presets/slate.ts
|
|
@@ -902,9 +1119,8 @@ var slatePreset = {
|
|
|
902
1119
|
"https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap"
|
|
903
1120
|
]
|
|
904
1121
|
};
|
|
905
|
-
|
|
906
|
-
// src/theme/presets/cyber-strike.ts
|
|
907
1122
|
var cyberStrikePreset = {
|
|
1123
|
+
background: createElement(CyberBackground, { variant: "strike" }),
|
|
908
1124
|
light: {
|
|
909
1125
|
primary: "#FF1744",
|
|
910
1126
|
primaryContrast: "#ffffff",
|
|
@@ -966,9 +1182,8 @@ var cyberStrikePreset = {
|
|
|
966
1182
|
"https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap"
|
|
967
1183
|
]
|
|
968
1184
|
};
|
|
969
|
-
|
|
970
|
-
// src/theme/presets/cyber-flux.ts
|
|
971
1185
|
var cyberFluxPreset = {
|
|
1186
|
+
background: createElement(CyberBackground, { variant: "flux" }),
|
|
972
1187
|
light: {
|
|
973
1188
|
primary: "#C49000",
|
|
974
1189
|
primaryContrast: "#ffffff",
|
|
@@ -1035,9 +1250,8 @@ var cyberFluxPreset = {
|
|
|
1035
1250
|
"https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap"
|
|
1036
1251
|
]
|
|
1037
1252
|
};
|
|
1038
|
-
|
|
1039
|
-
// src/theme/presets/cyber-void.ts
|
|
1040
1253
|
var cyberVoidPreset = {
|
|
1254
|
+
background: createElement(CyberBackground, { variant: "void" }),
|
|
1041
1255
|
light: {
|
|
1042
1256
|
primary: "#2979FF",
|
|
1043
1257
|
primaryContrast: "#ffffff",
|
|
@@ -1100,6 +1314,476 @@ var cyberVoidPreset = {
|
|
|
1100
1314
|
"https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap"
|
|
1101
1315
|
]
|
|
1102
1316
|
};
|
|
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
|
+
var nirvanaPreset = {
|
|
1490
|
+
subtitleFontFamily: '"Inter", sans-serif',
|
|
1491
|
+
fontImports: [
|
|
1492
|
+
"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
|
+
],
|
|
1494
|
+
background: NirvanaBackground,
|
|
1495
|
+
light: {
|
|
1496
|
+
primary: "#f23801",
|
|
1497
|
+
primaryContrast: "#ffffff",
|
|
1498
|
+
background: "#ffffff",
|
|
1499
|
+
surface: "rgba(250, 250, 250, 0.4)",
|
|
1500
|
+
surfaceHover: "#f0f0f0",
|
|
1501
|
+
text: "#000000",
|
|
1502
|
+
textDimmed: "#32373c",
|
|
1503
|
+
textSubtle: "#6b7177",
|
|
1504
|
+
border: "rgba(0, 0, 0, 0.08)",
|
|
1505
|
+
error: "#cf2e2e",
|
|
1506
|
+
warning: "#ff6900",
|
|
1507
|
+
success: "#28a745",
|
|
1508
|
+
glassBackground: "rgba(255, 255, 255, 0.55)",
|
|
1509
|
+
glassBlur: "blur(24px) saturate(180%)",
|
|
1510
|
+
shadow: "0px 1px 2px rgba(0, 0, 0, 0.04), 0px 8px 24px -8px rgba(0, 0, 0, 0.12)",
|
|
1511
|
+
cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px -8px rgba(0, 0, 0, 0.12), 0 24px 48px -16px rgba(0, 0, 0, 0.08)",
|
|
1512
|
+
durationFast: "150ms",
|
|
1513
|
+
durationNormal: "250ms",
|
|
1514
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1515
|
+
destructiveFg: "#ffffff",
|
|
1516
|
+
fontHeading: '"Cormorant", Georgia, "Times New Roman", serif',
|
|
1517
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1518
|
+
},
|
|
1519
|
+
dark: {
|
|
1520
|
+
primary: "#f23801",
|
|
1521
|
+
primaryContrast: "#ffffff",
|
|
1522
|
+
background: "#000000",
|
|
1523
|
+
surface: "rgba(10, 10, 12, 0.05)",
|
|
1524
|
+
surfaceHover: "#1a1a1a",
|
|
1525
|
+
text: "#ffffff",
|
|
1526
|
+
textDimmed: "#c8ccd0",
|
|
1527
|
+
textSubtle: "#8a8f95",
|
|
1528
|
+
border: "rgba(255, 255, 255, 0.08)",
|
|
1529
|
+
error: "#ff5252",
|
|
1530
|
+
warning: "#ff9800",
|
|
1531
|
+
success: "#4caf50",
|
|
1532
|
+
glassBackground: "rgba(20, 20, 22, 0.45)",
|
|
1533
|
+
glassBlur: "blur(28px) saturate(180%)",
|
|
1534
|
+
shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
|
|
1535
|
+
cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 2px 8px rgba(0, 0, 0, 0.4), 0 12px 32px -8px rgba(0, 0, 0, 0.5), 0 32px 64px -16px rgba(0, 0, 0, 0.4)",
|
|
1536
|
+
durationFast: "150ms",
|
|
1537
|
+
durationNormal: "250ms",
|
|
1538
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1539
|
+
destructiveFg: "#ffffff",
|
|
1540
|
+
fontHeading: '"Cormorant", Georgia, "Times New Roman", serif',
|
|
1541
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1542
|
+
},
|
|
1543
|
+
framework: {
|
|
1544
|
+
fontFamily: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
1545
|
+
defaultRadius: "xl",
|
|
1546
|
+
headings: {
|
|
1547
|
+
fontFamily: '"Cormorant", Georgia, "Times New Roman", serif',
|
|
1548
|
+
fontWeight: "600"
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
};
|
|
1552
|
+
var MOTE_COUNT4 = 24;
|
|
1553
|
+
var randRange4 = (min, max) => min + Math.random() * (max - min);
|
|
1554
|
+
var motes4 = Array.from({ length: MOTE_COUNT4 }, () => {
|
|
1555
|
+
const size = randRange4(2, 16);
|
|
1556
|
+
return {
|
|
1557
|
+
left: randRange4(0, 100),
|
|
1558
|
+
size,
|
|
1559
|
+
blur: size / 2,
|
|
1560
|
+
duration: randRange4(28, 52),
|
|
1561
|
+
delay: -randRange4(0, 35),
|
|
1562
|
+
drift: randRange4(-22, 22),
|
|
1563
|
+
pulse: randRange4(3, 9),
|
|
1564
|
+
pulseDelay: -randRange4(0, 5)
|
|
1565
|
+
};
|
|
1566
|
+
});
|
|
1567
|
+
var WaveBackground = /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1568
|
+
/* @__PURE__ */ jsx("style", { children: `
|
|
1569
|
+
:root {
|
|
1570
|
+
--wave-bg-wave-front: #dbeafe;
|
|
1571
|
+
--wave-bg-wave-back: #eef4ff;
|
|
1572
|
+
--wave-mote-core: rgba(125, 180, 255, 0.85);
|
|
1573
|
+
--wave-mote-halo: rgba(125, 180, 255, 0.3);
|
|
1574
|
+
}
|
|
1575
|
+
[data-mantine-color-scheme="dark"] {
|
|
1576
|
+
--wave-bg-wave-front: #050e1c;
|
|
1577
|
+
--wave-bg-wave-back: #030812;
|
|
1578
|
+
--wave-mote-core: rgba(90, 160, 230, 0.4);
|
|
1579
|
+
--wave-mote-halo: rgba(90, 160, 230, 0.12);
|
|
1580
|
+
}
|
|
1581
|
+
div[style*="var(--color-background)"][style*="100vh"] {
|
|
1582
|
+
background-color: transparent !important;
|
|
1583
|
+
isolation: isolate;
|
|
1584
|
+
}
|
|
1585
|
+
.wave-bg-root {
|
|
1586
|
+
position: absolute;
|
|
1587
|
+
inset: 0;
|
|
1588
|
+
z-index: -1;
|
|
1589
|
+
overflow: hidden;
|
|
1590
|
+
pointer-events: none;
|
|
1591
|
+
background: var(--color-background);
|
|
1592
|
+
}
|
|
1593
|
+
.wave-bg-layer {
|
|
1594
|
+
position: absolute;
|
|
1595
|
+
top: 0;
|
|
1596
|
+
left: 0;
|
|
1597
|
+
width: 200%;
|
|
1598
|
+
height: 100%;
|
|
1599
|
+
will-change: transform;
|
|
1600
|
+
}
|
|
1601
|
+
.wave-bg-layer svg {
|
|
1602
|
+
display: block;
|
|
1603
|
+
width: 100%;
|
|
1604
|
+
height: 100%;
|
|
1605
|
+
}
|
|
1606
|
+
@keyframes wave-bg-drift {
|
|
1607
|
+
from { transform: translateX(0); }
|
|
1608
|
+
to { transform: translateX(-50%); }
|
|
1609
|
+
}
|
|
1610
|
+
.wave-bg-layer-back {
|
|
1611
|
+
animation: wave-bg-drift 105s linear infinite;
|
|
1612
|
+
}
|
|
1613
|
+
.wave-bg-layer-front {
|
|
1614
|
+
animation: wave-bg-drift 63s linear infinite;
|
|
1615
|
+
}
|
|
1616
|
+
.wave-bg-wave-back {
|
|
1617
|
+
fill: var(--wave-bg-wave-back);
|
|
1618
|
+
}
|
|
1619
|
+
.wave-bg-wave-front {
|
|
1620
|
+
fill: var(--wave-bg-wave-front);
|
|
1621
|
+
}
|
|
1622
|
+
.wave-bg-motes {
|
|
1623
|
+
position: absolute;
|
|
1624
|
+
inset: 0;
|
|
1625
|
+
pointer-events: none;
|
|
1626
|
+
}
|
|
1627
|
+
.wave-bg-mote {
|
|
1628
|
+
position: absolute;
|
|
1629
|
+
bottom: 18%;
|
|
1630
|
+
opacity: 0;
|
|
1631
|
+
transform: translate3d(0, 0, 0);
|
|
1632
|
+
animation: wave-mote-rise var(--mote-duration, 32s) ease-in-out infinite;
|
|
1633
|
+
animation-delay: var(--mote-delay, 0s);
|
|
1634
|
+
will-change: transform, opacity;
|
|
1635
|
+
}
|
|
1636
|
+
.wave-bg-mote-inner {
|
|
1637
|
+
width: var(--mote-size, 4px);
|
|
1638
|
+
height: var(--mote-size, 4px);
|
|
1639
|
+
border-radius: 50%;
|
|
1640
|
+
background: radial-gradient(
|
|
1641
|
+
circle,
|
|
1642
|
+
var(--wave-mote-core) 0%,
|
|
1643
|
+
var(--wave-mote-halo) 45%,
|
|
1644
|
+
transparent 75%
|
|
1645
|
+
);
|
|
1646
|
+
filter: blur(var(--mote-blur, 2px));
|
|
1647
|
+
animation: wave-mote-pulse var(--mote-pulse, 5s) ease-in-out infinite;
|
|
1648
|
+
animation-delay: var(--mote-pulse-delay, 0s);
|
|
1649
|
+
will-change: transform, filter;
|
|
1650
|
+
}
|
|
1651
|
+
@keyframes wave-mote-rise {
|
|
1652
|
+
0% {
|
|
1653
|
+
transform: translate3d(0, 0, 0);
|
|
1654
|
+
opacity: 0;
|
|
1655
|
+
}
|
|
1656
|
+
12% {
|
|
1657
|
+
opacity: 1;
|
|
1658
|
+
}
|
|
1659
|
+
70% {
|
|
1660
|
+
opacity: 0.85;
|
|
1661
|
+
}
|
|
1662
|
+
100% {
|
|
1663
|
+
transform: translate3d(var(--mote-drift, 0px), -85vh, 0);
|
|
1664
|
+
opacity: 0;
|
|
1665
|
+
}
|
|
1666
|
+
}
|
|
1667
|
+
@keyframes wave-mote-pulse {
|
|
1668
|
+
0%, 100% {
|
|
1669
|
+
transform: scale(0.75);
|
|
1670
|
+
filter: blur(var(--mote-blur, 2px)) brightness(0.8);
|
|
1671
|
+
}
|
|
1672
|
+
50% {
|
|
1673
|
+
transform: scale(1.35);
|
|
1674
|
+
filter: blur(calc(var(--mote-blur, 2px) * 1.4)) brightness(1.4);
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1678
|
+
.wave-bg-layer-back,
|
|
1679
|
+
.wave-bg-layer-front,
|
|
1680
|
+
.wave-bg-mote,
|
|
1681
|
+
.wave-bg-mote-inner {
|
|
1682
|
+
animation: none;
|
|
1683
|
+
}
|
|
1684
|
+
.wave-bg-mote {
|
|
1685
|
+
opacity: 0;
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
|
+
` }),
|
|
1689
|
+
/* @__PURE__ */ jsxs("div", { className: "wave-bg-root", children: [
|
|
1690
|
+
/* @__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(
|
|
1691
|
+
"path",
|
|
1692
|
+
{
|
|
1693
|
+
className: "wave-bg-wave-back",
|
|
1694
|
+
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"
|
|
1695
|
+
}
|
|
1696
|
+
) }) }),
|
|
1697
|
+
/* @__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(
|
|
1698
|
+
"path",
|
|
1699
|
+
{
|
|
1700
|
+
className: "wave-bg-wave-front",
|
|
1701
|
+
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"
|
|
1702
|
+
}
|
|
1703
|
+
) }) }),
|
|
1704
|
+
/* @__PURE__ */ jsx("div", { className: "wave-bg-motes", "aria-hidden": "true", children: motes4.map((mote, i) => /* @__PURE__ */ jsx(
|
|
1705
|
+
"div",
|
|
1706
|
+
{
|
|
1707
|
+
className: "wave-bg-mote",
|
|
1708
|
+
style: {
|
|
1709
|
+
left: `${mote.left}%`,
|
|
1710
|
+
["--mote-size"]: `${mote.size}px`,
|
|
1711
|
+
["--mote-blur"]: `${mote.blur}px`,
|
|
1712
|
+
["--mote-duration"]: `${mote.duration}s`,
|
|
1713
|
+
["--mote-delay"]: `${mote.delay}s`,
|
|
1714
|
+
["--mote-drift"]: `${mote.drift}px`,
|
|
1715
|
+
["--mote-pulse"]: `${mote.pulse}s`,
|
|
1716
|
+
["--mote-pulse-delay"]: `${mote.pulseDelay}s`
|
|
1717
|
+
},
|
|
1718
|
+
children: /* @__PURE__ */ jsx("div", { className: "wave-bg-mote-inner" })
|
|
1719
|
+
},
|
|
1720
|
+
i
|
|
1721
|
+
)) })
|
|
1722
|
+
] })
|
|
1723
|
+
] });
|
|
1724
|
+
var wavePreset = {
|
|
1725
|
+
subtitleFontFamily: '"Inter", sans-serif',
|
|
1726
|
+
fontImports: [
|
|
1727
|
+
"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"
|
|
1728
|
+
],
|
|
1729
|
+
background: WaveBackground,
|
|
1730
|
+
light: {
|
|
1731
|
+
primary: "#2563eb",
|
|
1732
|
+
primaryContrast: "#ffffff",
|
|
1733
|
+
background: "#f5f8fc",
|
|
1734
|
+
surface: "rgba(250, 251, 253, 0.2)",
|
|
1735
|
+
surfaceHover: "#eef3fa",
|
|
1736
|
+
text: "#0b1220",
|
|
1737
|
+
textDimmed: "#334155",
|
|
1738
|
+
textSubtle: "#64748b",
|
|
1739
|
+
border: "rgba(15, 23, 42, 0.08)",
|
|
1740
|
+
error: "#dc2626",
|
|
1741
|
+
warning: "#f59e0b",
|
|
1742
|
+
success: "#16a34a",
|
|
1743
|
+
glassBackground: "rgba(250, 251, 253, 0.5)",
|
|
1744
|
+
glassBlur: "blur(24px) saturate(180%)",
|
|
1745
|
+
shadow: "0px 1px 2px rgba(15, 23, 42, 0.04), 0px 8px 24px -8px rgba(37, 99, 235, 0.12)",
|
|
1746
|
+
cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -8px rgba(37, 99, 235, 0.12), 0 24px 48px -16px rgba(37, 99, 235, 0.08)",
|
|
1747
|
+
durationFast: "150ms",
|
|
1748
|
+
durationNormal: "250ms",
|
|
1749
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1750
|
+
destructiveFg: "#ffffff",
|
|
1751
|
+
fontHeading: '"Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
|
|
1752
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1753
|
+
},
|
|
1754
|
+
dark: {
|
|
1755
|
+
primary: "#60a5fa",
|
|
1756
|
+
primaryContrast: "#000000",
|
|
1757
|
+
background: "#000000",
|
|
1758
|
+
surface: "rgba(14, 22, 40, 0.1)",
|
|
1759
|
+
surfaceHover: "#141f36",
|
|
1760
|
+
text: "#f1f5f9",
|
|
1761
|
+
textDimmed: "#cbd5e1",
|
|
1762
|
+
textSubtle: "#94a3b8",
|
|
1763
|
+
border: "rgba(148, 163, 184, 0.1)",
|
|
1764
|
+
error: "#f87171",
|
|
1765
|
+
warning: "#fbbf24",
|
|
1766
|
+
success: "#4ade80",
|
|
1767
|
+
glassBackground: "rgba(16, 16, 18, 0.4)",
|
|
1768
|
+
glassBlur: "blur(28px) saturate(180%)",
|
|
1769
|
+
shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
|
|
1770
|
+
cardShadow: "inset 0 1px 0 rgba(148, 197, 255, 0.08), inset 0 0 0 1px rgba(148, 197, 255, 0.04), 0 2px 8px rgba(0, 0, 0, 0.4), 0 12px 32px -8px rgba(0, 0, 0, 0.5), 0 32px 64px -16px rgba(0, 0, 0, 0.4)",
|
|
1771
|
+
durationFast: "150ms",
|
|
1772
|
+
durationNormal: "250ms",
|
|
1773
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1774
|
+
destructiveFg: "#ffffff",
|
|
1775
|
+
fontHeading: '"Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
|
|
1776
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1777
|
+
},
|
|
1778
|
+
framework: {
|
|
1779
|
+
fontFamily: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
1780
|
+
defaultRadius: "xl",
|
|
1781
|
+
headings: {
|
|
1782
|
+
fontFamily: '"Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
|
|
1783
|
+
fontWeight: "600"
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
};
|
|
1103
1787
|
|
|
1104
1788
|
// src/theme/presets/index.ts
|
|
1105
1789
|
var PRESETS = {
|
|
@@ -1115,18 +1799,18 @@ var PRESETS = {
|
|
|
1115
1799
|
description: "Tactical command center aesthetic",
|
|
1116
1800
|
colors: ["#0099ff", "#020304", "#EAEBEE"]
|
|
1117
1801
|
},
|
|
1118
|
-
regal: {
|
|
1119
|
-
...regalPreset,
|
|
1120
|
-
label: "Regal",
|
|
1121
|
-
description: "Regal black and gold aesthetic",
|
|
1122
|
-
colors: ["#D4A843", "#080604", "#F5F0E8"]
|
|
1123
|
-
},
|
|
1124
1802
|
slate: {
|
|
1125
1803
|
...slatePreset,
|
|
1126
1804
|
label: "Slate",
|
|
1127
1805
|
description: "Industrial precision",
|
|
1128
1806
|
colors: ["#7B9EBC", "#0C1016", "#ECEEF0"]
|
|
1129
1807
|
},
|
|
1808
|
+
regal: {
|
|
1809
|
+
...regalPreset,
|
|
1810
|
+
label: "Regal",
|
|
1811
|
+
description: "Regal black and gold aesthetic",
|
|
1812
|
+
colors: ["#D4A843", "#080604", "#F5F0E8"]
|
|
1813
|
+
},
|
|
1130
1814
|
aurora: {
|
|
1131
1815
|
...auroraPreset,
|
|
1132
1816
|
label: "Aurora",
|
|
@@ -1151,11 +1835,17 @@ var PRESETS = {
|
|
|
1151
1835
|
description: "Earthy terracotta warmth",
|
|
1152
1836
|
colors: ["#E87B55", "#120E0A", "#F3EFEB"]
|
|
1153
1837
|
},
|
|
1154
|
-
|
|
1155
|
-
...
|
|
1156
|
-
label: "
|
|
1157
|
-
description: "
|
|
1158
|
-
colors: ["#
|
|
1838
|
+
nirvana: {
|
|
1839
|
+
...nirvanaPreset,
|
|
1840
|
+
label: "Nirvana",
|
|
1841
|
+
description: "Warm peach waves and rising motes",
|
|
1842
|
+
colors: ["#f23801", "#000000", "#ffffff"]
|
|
1843
|
+
},
|
|
1844
|
+
wave: {
|
|
1845
|
+
...wavePreset,
|
|
1846
|
+
label: "Waves",
|
|
1847
|
+
description: "Cool azure waves and rising cyan motes",
|
|
1848
|
+
colors: ["#2563eb", "#050914", "#f5f8fc"]
|
|
1159
1849
|
},
|
|
1160
1850
|
honey: {
|
|
1161
1851
|
...honeyPreset,
|
|
@@ -1163,12 +1853,6 @@ var PRESETS = {
|
|
|
1163
1853
|
description: "Warm amber optimism",
|
|
1164
1854
|
colors: ["#E8A820", "#110E04", "#F5F0E8"]
|
|
1165
1855
|
},
|
|
1166
|
-
abyss: {
|
|
1167
|
-
...abyssPreset,
|
|
1168
|
-
label: "Abyss",
|
|
1169
|
-
description: "Deep ocean authority",
|
|
1170
|
-
colors: ["#1090D8", "#050E18", "#EDF1F5"]
|
|
1171
|
-
},
|
|
1172
1856
|
canopy: {
|
|
1173
1857
|
...canopyPreset,
|
|
1174
1858
|
label: "Canopy",
|
|
@@ -1181,11 +1865,11 @@ var PRESETS = {
|
|
|
1181
1865
|
description: "Neon-soaked sci-fi interface",
|
|
1182
1866
|
colors: ["#00E5FF", "#0A0E14", "#E8EDF2"]
|
|
1183
1867
|
},
|
|
1184
|
-
"cyber-
|
|
1185
|
-
...
|
|
1186
|
-
label: "Cyber-
|
|
1187
|
-
description: "
|
|
1188
|
-
colors: ["#
|
|
1868
|
+
"cyber-void": {
|
|
1869
|
+
...cyberVoidPreset,
|
|
1870
|
+
label: "Cyber-Void",
|
|
1871
|
+
description: "Cold synthetic digital depths",
|
|
1872
|
+
colors: ["#2979FF", "#0A0D14", "#E8ECF2"]
|
|
1189
1873
|
},
|
|
1190
1874
|
"cyber-flux": {
|
|
1191
1875
|
...cyberFluxPreset,
|
|
@@ -1193,12 +1877,24 @@ var PRESETS = {
|
|
|
1193
1877
|
description: "Hazard-lit industrial neon",
|
|
1194
1878
|
colors: ["#FFD600", "#14120A", "#F2F0E8"]
|
|
1195
1879
|
},
|
|
1196
|
-
"cyber-
|
|
1197
|
-
...
|
|
1198
|
-
label: "Cyber-
|
|
1199
|
-
description: "
|
|
1200
|
-
colors: ["#
|
|
1880
|
+
"cyber-strike": {
|
|
1881
|
+
...cyberStrikePreset,
|
|
1882
|
+
label: "Cyber-Strike",
|
|
1883
|
+
description: "Aggressive dystopian neon",
|
|
1884
|
+
colors: ["#FF1744", "#140A0C", "#F2E8EA"]
|
|
1201
1885
|
}
|
|
1886
|
+
// abyss: {
|
|
1887
|
+
// ...abyssPreset,
|
|
1888
|
+
// label: 'Abyss',
|
|
1889
|
+
// description: 'Deep ocean authority',
|
|
1890
|
+
// colors: ['#1090D8', '#050E18', '#EDF1F5']
|
|
1891
|
+
// },
|
|
1892
|
+
// obsidian: {
|
|
1893
|
+
// ...obsidianPreset,
|
|
1894
|
+
// label: 'Obsidian',
|
|
1895
|
+
// description: 'Monochrome precision and clarity',
|
|
1896
|
+
// colors: ['#A0A0A8', '#0D0D0F', '#F7F7F8']
|
|
1897
|
+
// }
|
|
1202
1898
|
};
|
|
1203
1899
|
function getPreset(name, presetsMap) {
|
|
1204
1900
|
if (presetsMap) return presetsMap[name] ?? presetsMap["default"] ?? PRESETS.default;
|