@elevasis/ui 1.14.6 → 1.15.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.
- package/dist/charts/index.js +1 -1
- package/dist/{chunk-RHHWAM22.js → chunk-5H6OPZQB.js} +5 -5
- package/dist/{chunk-E72FC2ZF.js → chunk-CWCX2HCP.js} +1 -1
- package/dist/chunk-GATPOCUD.js +14 -0
- package/dist/{chunk-TBRTRBJV.js → chunk-GIQPDIG5.js} +97 -6
- package/dist/{chunk-6ZNKDPAO.js → chunk-K6DYEZHC.js} +892 -195
- package/dist/{chunk-HGUJ6SSM.js → chunk-VOSLYTTR.js} +39 -25
- package/dist/components/index.d.ts +15 -1
- package/dist/components/index.js +12 -11
- 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 +56 -3
- package/dist/layout/index.js +3 -2
- 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
- /package/dist/{chunk-JAUEZCVD.js → chunk-UCTTJ2RS.js} +0 -0
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { createContext, useContext } from 'react';
|
|
1
|
+
import { CyberBackground } from './chunk-GIQPDIG5.js';
|
|
2
|
+
import { createElement, createContext, useContext } from 'react';
|
|
3
|
+
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
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, Loader } from '@mantine/core';
|
|
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,9 +805,8 @@ 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
|
-
defaultRadius: "
|
|
809
|
+
defaultRadius: "xl",
|
|
697
810
|
fontFamily: '"Inter", sans-serif',
|
|
698
811
|
headings: {
|
|
699
812
|
fontFamily: '"Syne", 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,20 +1046,14 @@ var canopyPreset = {
|
|
|
823
1046
|
fontHeading: '"Fraunces", serif',
|
|
824
1047
|
fontSans: '"Lato", sans-serif'
|
|
825
1048
|
},
|
|
826
|
-
subtitleFontFamily: '"Lora", serif',
|
|
827
1049
|
framework: {
|
|
828
|
-
defaultRadius: "
|
|
1050
|
+
defaultRadius: "xl",
|
|
829
1051
|
fontFamily: '"Lato", sans-serif',
|
|
830
1052
|
headings: {
|
|
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,477 @@ 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
|
+
loader: /* @__PURE__ */ jsx(Loader, { type: "dots", size: "xl" }),
|
|
1496
|
+
light: {
|
|
1497
|
+
primary: "#f23801",
|
|
1498
|
+
primaryContrast: "#ffffff",
|
|
1499
|
+
background: "#ffffff",
|
|
1500
|
+
surface: "transparent",
|
|
1501
|
+
surfaceHover: "#f0f0f0",
|
|
1502
|
+
text: "#000000",
|
|
1503
|
+
textDimmed: "#32373c",
|
|
1504
|
+
textSubtle: "#6b7177",
|
|
1505
|
+
border: "rgba(0, 0, 0, 0.08)",
|
|
1506
|
+
error: "#cf2e2e",
|
|
1507
|
+
warning: "#ff6900",
|
|
1508
|
+
success: "#28a745",
|
|
1509
|
+
glassBackground: "rgba(255, 255, 255, 0.65)",
|
|
1510
|
+
glassBlur: "blur(24px) saturate(180%)",
|
|
1511
|
+
shadow: "0px 1px 2px rgba(0, 0, 0, 0.04), 0px 8px 24px -8px rgba(0, 0, 0, 0.12)",
|
|
1512
|
+
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)",
|
|
1513
|
+
durationFast: "150ms",
|
|
1514
|
+
durationNormal: "250ms",
|
|
1515
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1516
|
+
destructiveFg: "#ffffff",
|
|
1517
|
+
fontHeading: '"Cormorant", Georgia, "Times New Roman", serif',
|
|
1518
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1519
|
+
},
|
|
1520
|
+
dark: {
|
|
1521
|
+
primary: "#f23801",
|
|
1522
|
+
primaryContrast: "#ffffff",
|
|
1523
|
+
background: "#000000",
|
|
1524
|
+
surface: "transparent",
|
|
1525
|
+
surfaceHover: "#1a1a1a",
|
|
1526
|
+
text: "#ffffff",
|
|
1527
|
+
textDimmed: "#c8ccd0",
|
|
1528
|
+
textSubtle: "#8a8f95",
|
|
1529
|
+
border: "rgba(255, 255, 255, 0.08)",
|
|
1530
|
+
error: "#ff5252",
|
|
1531
|
+
warning: "#ff9800",
|
|
1532
|
+
success: "#4caf50",
|
|
1533
|
+
glassBackground: "rgba(20, 20, 22, 0.45)",
|
|
1534
|
+
glassBlur: "blur(28px) saturate(180%)",
|
|
1535
|
+
shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
|
|
1536
|
+
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)",
|
|
1537
|
+
durationFast: "150ms",
|
|
1538
|
+
durationNormal: "250ms",
|
|
1539
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1540
|
+
destructiveFg: "#ffffff",
|
|
1541
|
+
fontHeading: '"Cormorant", Georgia, "Times New Roman", serif',
|
|
1542
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1543
|
+
},
|
|
1544
|
+
framework: {
|
|
1545
|
+
fontFamily: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
1546
|
+
defaultRadius: "xl",
|
|
1547
|
+
headings: {
|
|
1548
|
+
fontFamily: '"Cormorant", Georgia, "Times New Roman", serif',
|
|
1549
|
+
fontWeight: "600"
|
|
1550
|
+
}
|
|
1551
|
+
}
|
|
1552
|
+
};
|
|
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
|
+
var wavePreset = {
|
|
1726
|
+
subtitleFontFamily: '"Inter", sans-serif',
|
|
1727
|
+
fontImports: [
|
|
1728
|
+
"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
|
+
],
|
|
1730
|
+
background: WaveBackground,
|
|
1731
|
+
light: {
|
|
1732
|
+
primary: "#2563eb",
|
|
1733
|
+
primaryContrast: "#ffffff",
|
|
1734
|
+
background: "#f5f8fc",
|
|
1735
|
+
surface: "rgba(250, 251, 253, 0.2)",
|
|
1736
|
+
surfaceHover: "#eef3fa",
|
|
1737
|
+
text: "#0b1220",
|
|
1738
|
+
textDimmed: "#334155",
|
|
1739
|
+
textSubtle: "#64748b",
|
|
1740
|
+
border: "rgba(15, 23, 42, 0.08)",
|
|
1741
|
+
error: "#dc2626",
|
|
1742
|
+
warning: "#f59e0b",
|
|
1743
|
+
success: "#16a34a",
|
|
1744
|
+
glassBackground: "rgba(250, 251, 253, 0.5)",
|
|
1745
|
+
glassBlur: "blur(24px) saturate(180%)",
|
|
1746
|
+
shadow: "0px 1px 2px rgba(15, 23, 42, 0.04), 0px 8px 24px -8px rgba(37, 99, 235, 0.12)",
|
|
1747
|
+
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)",
|
|
1748
|
+
durationFast: "150ms",
|
|
1749
|
+
durationNormal: "250ms",
|
|
1750
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1751
|
+
destructiveFg: "#ffffff",
|
|
1752
|
+
fontHeading: '"Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
|
|
1753
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1754
|
+
},
|
|
1755
|
+
dark: {
|
|
1756
|
+
primary: "#60a5fa",
|
|
1757
|
+
primaryContrast: "#000000",
|
|
1758
|
+
background: "#000000",
|
|
1759
|
+
surface: "rgba(14, 22, 40, 0.1)",
|
|
1760
|
+
surfaceHover: "#141f36",
|
|
1761
|
+
text: "#f1f5f9",
|
|
1762
|
+
textDimmed: "#cbd5e1",
|
|
1763
|
+
textSubtle: "#94a3b8",
|
|
1764
|
+
border: "rgba(148, 163, 184, 0.1)",
|
|
1765
|
+
error: "#f87171",
|
|
1766
|
+
warning: "#fbbf24",
|
|
1767
|
+
success: "#4ade80",
|
|
1768
|
+
glassBackground: "rgba(16, 16, 18, 0.4)",
|
|
1769
|
+
glassBlur: "blur(28px) saturate(180%)",
|
|
1770
|
+
shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
|
|
1771
|
+
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)",
|
|
1772
|
+
durationFast: "150ms",
|
|
1773
|
+
durationNormal: "250ms",
|
|
1774
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1775
|
+
destructiveFg: "#ffffff",
|
|
1776
|
+
fontHeading: '"Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
|
|
1777
|
+
fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
|
|
1778
|
+
},
|
|
1779
|
+
framework: {
|
|
1780
|
+
fontFamily: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
1781
|
+
defaultRadius: "xl",
|
|
1782
|
+
headings: {
|
|
1783
|
+
fontFamily: '"Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
|
|
1784
|
+
fontWeight: "600"
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
};
|
|
1103
1788
|
|
|
1104
1789
|
// src/theme/presets/index.ts
|
|
1105
1790
|
var PRESETS = {
|
|
@@ -1115,18 +1800,18 @@ var PRESETS = {
|
|
|
1115
1800
|
description: "Tactical command center aesthetic",
|
|
1116
1801
|
colors: ["#0099ff", "#020304", "#EAEBEE"]
|
|
1117
1802
|
},
|
|
1118
|
-
regal: {
|
|
1119
|
-
...regalPreset,
|
|
1120
|
-
label: "Regal",
|
|
1121
|
-
description: "Regal black and gold aesthetic",
|
|
1122
|
-
colors: ["#D4A843", "#080604", "#F5F0E8"]
|
|
1123
|
-
},
|
|
1124
1803
|
slate: {
|
|
1125
1804
|
...slatePreset,
|
|
1126
1805
|
label: "Slate",
|
|
1127
1806
|
description: "Industrial precision",
|
|
1128
1807
|
colors: ["#7B9EBC", "#0C1016", "#ECEEF0"]
|
|
1129
1808
|
},
|
|
1809
|
+
regal: {
|
|
1810
|
+
...regalPreset,
|
|
1811
|
+
label: "Regal",
|
|
1812
|
+
description: "Regal black and gold aesthetic",
|
|
1813
|
+
colors: ["#D4A843", "#080604", "#F5F0E8"]
|
|
1814
|
+
},
|
|
1130
1815
|
aurora: {
|
|
1131
1816
|
...auroraPreset,
|
|
1132
1817
|
label: "Aurora",
|
|
@@ -1151,11 +1836,17 @@ var PRESETS = {
|
|
|
1151
1836
|
description: "Earthy terracotta warmth",
|
|
1152
1837
|
colors: ["#E87B55", "#120E0A", "#F3EFEB"]
|
|
1153
1838
|
},
|
|
1154
|
-
|
|
1155
|
-
...
|
|
1156
|
-
label: "
|
|
1157
|
-
description: "
|
|
1158
|
-
colors: ["#
|
|
1839
|
+
nirvana: {
|
|
1840
|
+
...nirvanaPreset,
|
|
1841
|
+
label: "Nirvana",
|
|
1842
|
+
description: "Warm peach waves and rising motes",
|
|
1843
|
+
colors: ["#f23801", "#000000", "#ffffff"]
|
|
1844
|
+
},
|
|
1845
|
+
wave: {
|
|
1846
|
+
...wavePreset,
|
|
1847
|
+
label: "Waves",
|
|
1848
|
+
description: "Cool azure waves and rising cyan motes",
|
|
1849
|
+
colors: ["#2563eb", "#050914", "#f5f8fc"]
|
|
1159
1850
|
},
|
|
1160
1851
|
honey: {
|
|
1161
1852
|
...honeyPreset,
|
|
@@ -1163,12 +1854,6 @@ var PRESETS = {
|
|
|
1163
1854
|
description: "Warm amber optimism",
|
|
1164
1855
|
colors: ["#E8A820", "#110E04", "#F5F0E8"]
|
|
1165
1856
|
},
|
|
1166
|
-
abyss: {
|
|
1167
|
-
...abyssPreset,
|
|
1168
|
-
label: "Abyss",
|
|
1169
|
-
description: "Deep ocean authority",
|
|
1170
|
-
colors: ["#1090D8", "#050E18", "#EDF1F5"]
|
|
1171
|
-
},
|
|
1172
1857
|
canopy: {
|
|
1173
1858
|
...canopyPreset,
|
|
1174
1859
|
label: "Canopy",
|
|
@@ -1181,11 +1866,11 @@ var PRESETS = {
|
|
|
1181
1866
|
description: "Neon-soaked sci-fi interface",
|
|
1182
1867
|
colors: ["#00E5FF", "#0A0E14", "#E8EDF2"]
|
|
1183
1868
|
},
|
|
1184
|
-
"cyber-
|
|
1185
|
-
...
|
|
1186
|
-
label: "Cyber-
|
|
1187
|
-
description: "
|
|
1188
|
-
colors: ["#
|
|
1869
|
+
"cyber-void": {
|
|
1870
|
+
...cyberVoidPreset,
|
|
1871
|
+
label: "Cyber-Void",
|
|
1872
|
+
description: "Cold synthetic digital depths",
|
|
1873
|
+
colors: ["#2979FF", "#0A0D14", "#E8ECF2"]
|
|
1189
1874
|
},
|
|
1190
1875
|
"cyber-flux": {
|
|
1191
1876
|
...cyberFluxPreset,
|
|
@@ -1193,12 +1878,24 @@ var PRESETS = {
|
|
|
1193
1878
|
description: "Hazard-lit industrial neon",
|
|
1194
1879
|
colors: ["#FFD600", "#14120A", "#F2F0E8"]
|
|
1195
1880
|
},
|
|
1196
|
-
"cyber-
|
|
1197
|
-
...
|
|
1198
|
-
label: "Cyber-
|
|
1199
|
-
description: "
|
|
1200
|
-
colors: ["#
|
|
1881
|
+
"cyber-strike": {
|
|
1882
|
+
...cyberStrikePreset,
|
|
1883
|
+
label: "Cyber-Strike",
|
|
1884
|
+
description: "Aggressive dystopian neon",
|
|
1885
|
+
colors: ["#FF1744", "#140A0C", "#F2E8EA"]
|
|
1201
1886
|
}
|
|
1887
|
+
// abyss: {
|
|
1888
|
+
// ...abyssPreset,
|
|
1889
|
+
// label: 'Abyss',
|
|
1890
|
+
// description: 'Deep ocean authority',
|
|
1891
|
+
// colors: ['#1090D8', '#050E18', '#EDF1F5']
|
|
1892
|
+
// },
|
|
1893
|
+
// obsidian: {
|
|
1894
|
+
// ...obsidianPreset,
|
|
1895
|
+
// label: 'Obsidian',
|
|
1896
|
+
// description: 'Monochrome precision and clarity',
|
|
1897
|
+
// colors: ['#A0A0A8', '#0D0D0F', '#F7F7F8']
|
|
1898
|
+
// }
|
|
1202
1899
|
};
|
|
1203
1900
|
function getPreset(name, presetsMap) {
|
|
1204
1901
|
if (presetsMap) return presetsMap[name] ?? presetsMap["default"] ?? PRESETS.default;
|