@elevasis/ui 1.24.3 → 1.25.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.
Files changed (41) hide show
  1. package/dist/charts/index.js +2 -2
  2. package/dist/{chunk-H3MU3WTM.js → chunk-3EVTCVKR.js} +2 -2
  3. package/dist/{chunk-ZDKC3V7C.js → chunk-7RS6VTAV.js} +56 -57
  4. package/dist/{chunk-TQBM3OEW.js → chunk-BS4J2LAW.js} +1 -1
  5. package/dist/{chunk-JR2C4XAN.js → chunk-CYXZHBP4.js} +202 -295
  6. package/dist/{chunk-OH74INP2.js → chunk-FEZZ3IDU.js} +434 -314
  7. package/dist/{chunk-IAZT3VO6.js → chunk-G25YWGUL.js} +4 -1
  8. package/dist/{chunk-BGTZFEKR.js → chunk-HYYI4ZFT.js} +6 -252
  9. package/dist/{chunk-CTF6FS2M.js → chunk-L3GVDMCA.js} +211 -1
  10. package/dist/{chunk-VMMNFRAO.js → chunk-QNABH7YG.js} +3 -3
  11. package/dist/{chunk-JTUX5FDC.js → chunk-R565P6XC.js} +691 -2
  12. package/dist/{chunk-WY5IJI37.js → chunk-RIL2CDFE.js} +2 -2
  13. package/dist/{chunk-TML32XBW.js → chunk-RMPXGBNI.js} +2 -2
  14. package/dist/{chunk-UG5565XQ.js → chunk-US4JUSI3.js} +3 -3
  15. package/dist/components/index.d.ts +3005 -192
  16. package/dist/components/index.js +1539 -24
  17. package/dist/features/auth/index.d.ts +108 -9
  18. package/dist/features/dashboard/index.js +7 -7
  19. package/dist/features/monitoring/index.js +8 -8
  20. package/dist/features/operations/index.d.ts +8 -2
  21. package/dist/features/operations/index.js +52 -55
  22. package/dist/features/settings/index.d.ts +108 -9
  23. package/dist/features/settings/index.js +27 -10
  24. package/dist/hooks/index.d.ts +3279 -185
  25. package/dist/hooks/index.js +4 -4
  26. package/dist/hooks/published.d.ts +108 -9
  27. package/dist/hooks/published.js +3 -3
  28. package/dist/index.d.ts +3285 -187
  29. package/dist/index.js +5 -5
  30. package/dist/initialization/index.d.ts +108 -9
  31. package/dist/layout/index.d.ts +60 -3
  32. package/dist/layout/index.js +2 -2
  33. package/dist/profile/index.d.ts +108 -9
  34. package/dist/provider/index.d.ts +6 -2
  35. package/dist/provider/index.js +3 -3
  36. package/dist/provider/published.d.ts +6 -2
  37. package/dist/supabase/index.d.ts +210 -18
  38. package/dist/theme/index.d.ts +6 -2
  39. package/dist/theme/index.js +3 -3
  40. package/dist/types/index.d.ts +108 -9
  41. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { AppBackground, CyberBackground, WaveBackground } from './chunk-JR2C4XAN.js';
1
+ import { AppBackground, AmbientBloomGrid, CyberBackground, FloatingMotes, WaveBackground } from './chunk-CYXZHBP4.js';
2
2
  import { createElement, Fragment, createContext, useRef, useEffect, useContext } from 'react';
3
3
  import { jsxs, Fragment as Fragment$1, jsx } from 'react/jsx-runtime';
4
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';
@@ -64,109 +64,6 @@ function generateShades(hex) {
64
64
  ];
65
65
  return targets.map((tl) => hslToHex(h, s, tl));
66
66
  }
67
- var STYLE = `
68
- /* NOTE: does not neutralize AppShellContainer's background paint, unlike
69
- ChromeBackground / ConstellationBackground. AmbientBloom is designed to
70
- compose *above* existing background layers (CyberBackground's grid,
71
- ConstellationBackground's canvas), so it must not knock out the base
72
- color paint the sibling background relies on. */
73
- .elevasis-ambient-bloom {
74
- display: none;
75
- position: fixed;
76
- inset: 0;
77
- pointer-events: none;
78
- overflow: hidden;
79
- }
80
- [data-mantine-color-scheme="dark"] .elevasis-ambient-bloom {
81
- display: block;
82
- }
83
- [data-mantine-color-scheme="dark"] .elevasis-ambient-bloom-lobe {
84
- mix-blend-mode: screen;
85
- }
86
- @keyframes elevasis-ambient-bloom-a {
87
- 0%, 100% { transform: translate(0, 0) scale(1); }
88
- 33% { transform: translate(4%, -5%) scale(1.08); }
89
- 66% { transform: translate(-5%, 4%) scale(0.94); }
90
- }
91
- @keyframes elevasis-ambient-bloom-b {
92
- 0%, 100% { transform: translate(0, 0) scale(1); }
93
- 50% { transform: translate(-6%, 6%) scale(1.12); }
94
- }
95
- @keyframes elevasis-ambient-bloom-c {
96
- 0%, 100% { transform: translate(0, 0) scale(1); }
97
- 40% { transform: translate(5%, 4%) scale(0.9); }
98
- 80% { transform: translate(-4%, -6%) scale(1.08); }
99
- }
100
- @media (prefers-reduced-motion: reduce) {
101
- .elevasis-ambient-bloom-lobe { animation: none !important; }
102
- }
103
- `;
104
- function AmbientBloom({
105
- color = "var(--color-primary)",
106
- intensity = 0.08
107
- }) {
108
- const primaryPct = `${Math.round(intensity * 100)}%`;
109
- const secondaryPct = `${Math.round(intensity * 80)}%`;
110
- const tertiaryPct = `${Math.round(intensity * 60)}%`;
111
- return /* @__PURE__ */ jsxs(Fragment$1, { children: [
112
- /* @__PURE__ */ jsx("style", { children: STYLE }),
113
- /* @__PURE__ */ jsxs("div", { className: "elevasis-ambient-bloom", "aria-hidden": "true", children: [
114
- /* @__PURE__ */ jsx(
115
- "div",
116
- {
117
- className: "elevasis-ambient-bloom-lobe",
118
- style: {
119
- position: "absolute",
120
- top: "-30%",
121
- left: "0%",
122
- width: "100%",
123
- height: "92%",
124
- background: `radial-gradient(ellipse at center, color-mix(in srgb, ${color} ${primaryPct}, transparent) 0%, transparent 60%)`,
125
- filter: "blur(80px)",
126
- animation: "elevasis-ambient-bloom-a 32s ease-in-out infinite",
127
- willChange: "transform"
128
- }
129
- }
130
- ),
131
- /* @__PURE__ */ jsx(
132
- "div",
133
- {
134
- className: "elevasis-ambient-bloom-lobe",
135
- style: {
136
- position: "absolute",
137
- top: "15%",
138
- right: "-20%",
139
- width: "88%",
140
- height: "82%",
141
- background: `radial-gradient(ellipse at center, color-mix(in srgb, ${color} ${secondaryPct}, transparent) 0%, transparent 65%)`,
142
- filter: "blur(90px)",
143
- animation: "elevasis-ambient-bloom-b 40s ease-in-out infinite",
144
- willChange: "transform"
145
- }
146
- }
147
- ),
148
- /* @__PURE__ */ jsx(
149
- "div",
150
- {
151
- className: "elevasis-ambient-bloom-lobe",
152
- style: {
153
- position: "absolute",
154
- top: "15%",
155
- left: "-15%",
156
- width: "82%",
157
- height: "78%",
158
- background: `radial-gradient(ellipse at center, color-mix(in srgb, ${color} ${tertiaryPct}, transparent) 0%, transparent 60%)`,
159
- filter: "blur(100px)",
160
- animation: "elevasis-ambient-bloom-c 36s ease-in-out infinite",
161
- willChange: "transform"
162
- }
163
- }
164
- )
165
- ] })
166
- ] });
167
- }
168
-
169
- // src/theme/presets/default.ts
170
67
  var defaultPreset = {
171
68
  subtitleFontFamily: '"Inter", sans-serif',
172
69
  fontImports: ["https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"],
@@ -174,7 +71,7 @@ var defaultPreset = {
174
71
  Fragment,
175
72
  null,
176
73
  createElement(AppBackground),
177
- createElement(AmbientBloom, { intensity: 0.06, color: "#606468" })
74
+ createElement(AmbientBloomGrid, { intensity: 0.06, color: "#606468", size: 1.2 })
178
75
  ),
179
76
  light: {
180
77
  primary: "#0099ff",
@@ -182,6 +79,7 @@ var defaultPreset = {
182
79
  background: "#ededf0",
183
80
  surface: "#f5f5f5",
184
81
  surfaceHover: "#f2f2f2",
82
+ elevatedSurface: "rgba(255, 255, 255, 0.95)",
185
83
  text: "#212529",
186
84
  textDimmed: "#495057",
187
85
  textSubtle: "#868e96",
@@ -206,6 +104,7 @@ var defaultPreset = {
206
104
  background: "#040404",
207
105
  surface: "rgba(16, 16, 18, 0.52)",
208
106
  surfaceHover: "rgba(24, 24, 26, 0.56)",
107
+ elevatedSurface: "rgba(22, 22, 24, 0.93)",
209
108
  text: "#ffffff",
210
109
  textDimmed: "#c1c2c5",
211
110
  textSubtle: "#999999",
@@ -230,7 +129,7 @@ var tacticalPreset = {
230
129
  Fragment,
231
130
  null,
232
131
  createElement(AppBackground),
233
- createElement(AmbientBloom, { intensity: 0.07, color: "#5A6070" })
132
+ createElement(AmbientBloomGrid, { intensity: 0.07, color: "#5A6070", size: 1.2 })
234
133
  ),
235
134
  light: {
236
135
  primary: "#0099ff",
@@ -238,6 +137,7 @@ var tacticalPreset = {
238
137
  background: "#EAEBEE",
239
138
  surface: "#F3F3F6",
240
139
  surfaceHover: "#DFDFE4",
140
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
241
141
  text: "#0F1319",
242
142
  textDimmed: "#3B4559",
243
143
  textSubtle: "#5D677B",
@@ -262,14 +162,15 @@ var tacticalPreset = {
262
162
  background: "#030304",
263
163
  surface: "rgba(18, 19, 21, 0.3)",
264
164
  surfaceHover: "rgba(32, 33, 36, 0.5)",
165
+ elevatedSurface: "rgba(18, 21, 27, 0.85)",
265
166
  text: "#EFF1F4",
266
167
  textDimmed: "#B0B8C4",
267
168
  textSubtle: "#8890A0",
268
- border: "rgba(136, 144, 160, 0.07)",
169
+ border: "rgba(136, 144, 160, 0.08)",
269
170
  error: "#FF4757",
270
171
  warning: "#FFA502",
271
172
  success: "#2ED573",
272
- glassBackground: "rgba(14, 15, 17, 0.66)",
173
+ glassBackground: "rgba(14, 15, 17, 0.6)",
273
174
  glassBlur: "blur(24px) saturate(170%)",
274
175
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
275
176
  cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 2px 8px rgba(0, 0, 0, 0.3), 0 12px 32px -8px rgba(0, 0, 0, 0.4), 0 32px 64px -16px rgba(0, 0, 0, 0.3)",
@@ -294,7 +195,7 @@ var regalPreset = {
294
195
  Fragment,
295
196
  null,
296
197
  createElement(AppBackground),
297
- createElement(AmbientBloom, { intensity: 0.12, color: "#606870" })
198
+ createElement(AmbientBloomGrid, { intensity: 0.09, color: "#6E727A", size: 1.2 })
298
199
  ),
299
200
  light: {
300
201
  primary: "#B8922F",
@@ -321,22 +222,23 @@ var regalPreset = {
321
222
  fontSans: '"Inter", sans-serif'
322
223
  },
323
224
  dark: {
324
- primary: "#C9A044",
325
- primaryContrast: "#0A0800",
326
- background: "#000000",
225
+ primary: "#C0A558",
226
+ primaryContrast: "#0A0A0A",
227
+ background: "#020203",
327
228
  surface: "transparent",
328
- surfaceHover: "rgba(22, 23, 26, 0.12)",
329
- text: "#E8E6E2",
330
- textDimmed: "#A0A0A0",
331
- textSubtle: "#707070",
229
+ surfaceHover: "rgba(180, 180, 188, 0.08)",
230
+ elevatedSurface: "rgba(16, 16, 19, 0.85)",
231
+ text: "#F0F0F2",
232
+ textDimmed: "#C2C2C4",
233
+ textSubtle: "#96969A",
332
234
  border: "rgba(255, 255, 255, 0.06)",
333
235
  error: "#E05252",
334
236
  warning: "#D4943C",
335
237
  success: "#4AA84A",
336
- glassBackground: "rgba(16, 17, 20, 0.36)",
337
- glassBlur: "blur(22px) saturate(180%)",
238
+ glassBackground: "rgba(16, 17, 20, 0.45)",
239
+ glassBlur: "blur(18px) saturate(180%)",
338
240
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 8px 24px -8px rgba(0, 0, 0, 0.5), 0px 20px 48px -16px rgba(0, 0, 0, 0.35)",
339
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 2px 8px rgba(0, 0, 0, 0.3), 0 12px 32px -8px rgba(0, 0, 0, 0.4), 0 32px 64px -16px rgba(0, 0, 0, 0.3)",
241
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 2px 8px rgba(0, 0, 0, 0.3), 0 12px 32px -8px rgba(0, 0, 0, 0.4), 0 32px 40px -16px rgba(0, 0, 0, 0.2)",
340
242
  durationFast: "180ms",
341
243
  durationNormal: "320ms",
342
244
  easing: "cubic-bezier(0.25, 0.1, 0.25, 1)",
@@ -363,8 +265,8 @@ var cyberVoltPreset = {
363
265
  background: createElement(
364
266
  Fragment,
365
267
  null,
366
- createElement(CyberBackground, { variant: "volt" }),
367
- createElement(AmbientBloom, { intensity: 0.11 })
268
+ createElement(CyberBackground, { variant: "void", perspectiveGridRadialGlowIntensity: 14 }),
269
+ createElement(AmbientBloomGrid, { intensity: 0.07, size: 1.3 })
368
270
  ),
369
271
  light: {
370
272
  primary: "#0097A7",
@@ -372,6 +274,7 @@ var cyberVoltPreset = {
372
274
  background: "#F5FAFB",
373
275
  surface: "transparent",
374
276
  surfaceHover: "rgba(0, 151, 167, 0.08)",
277
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
375
278
  text: "#0A0E14",
376
279
  textDimmed: "#2E3A4D",
377
280
  textSubtle: "#556680",
@@ -393,20 +296,21 @@ var cyberVoltPreset = {
393
296
  dark: {
394
297
  primary: "#00A8BD",
395
298
  primaryContrast: "#001418",
396
- background: "#030506",
299
+ background: "#040607",
397
300
  surface: "transparent",
398
301
  surfaceHover: "rgba(0, 229, 255, 0.06)",
302
+ elevatedSurface: "rgba(16, 19, 21, 0.85)",
399
303
  text: "#E0F7FA",
400
304
  textDimmed: "#80DEEA",
401
- textSubtle: "#5E8A94",
402
- border: "rgba(0, 229, 255, 0.1)",
305
+ textSubtle: "#82BEC8",
306
+ border: "rgba(0, 229, 255, 0.08)",
403
307
  error: "#FF1744",
404
308
  warning: "#FF9100",
405
309
  success: "#00E676",
406
- glassBackground: "rgba(6, 14, 20, 0.3)",
407
- glassBlur: "blur(18px) saturate(180%)",
310
+ glassBackground: "rgba(8, 16, 22, 0.25)",
311
+ glassBlur: "blur(14px) saturate(160%)",
408
312
  shadow: "0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -14px rgba(0, 0, 0, 0.4)",
409
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(0, 229, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
313
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(0, 229, 255, 0.06), 0 4px 4px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.25)",
410
314
  durationFast: "80ms",
411
315
  durationNormal: "160ms",
412
316
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -423,7 +327,7 @@ var cyberVoltPreset = {
423
327
  },
424
328
  fontImports: ["https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap"]
425
329
  };
426
- var STYLE2 = `
330
+ var STYLE = `
427
331
  div[style*="var(--color-background)"][style*="100vh"] {
428
332
  background-color: transparent !important;
429
333
  isolation: isolate;
@@ -478,16 +382,16 @@ var STYLE2 = `
478
382
  }
479
383
  [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="ember"] {
480
384
  --chrome-base: #F7F3EF;
481
- --chrome-origin-glow: rgba(254, 215, 170, 0.45);
385
+ --chrome-origin-glow: rgba(225, 195, 165, 0.4);
482
386
  --chrome-vignette: rgba(44, 23, 8, 0.05);
483
- --chrome-beam-1: #F97316;
484
- --chrome-beam-2: #FB923C;
485
- --chrome-beam-3: #EA580C;
486
- --chrome-beam-4: #FDBA74;
487
- --chrome-beam-5: #F59E0B;
488
- --chrome-beam-6: #FB923C;
489
- --chrome-beam-7: #F97316;
490
- --chrome-beam-8: #FDBA74;
387
+ --chrome-beam-1: #D4805A;
388
+ --chrome-beam-2: #D49468;
389
+ --chrome-beam-3: #BE6A40;
390
+ --chrome-beam-4: #D9A888;
391
+ --chrome-beam-5: #C48848;
392
+ --chrome-beam-6: #D49468;
393
+ --chrome-beam-7: #D4805A;
394
+ --chrome-beam-8: #D9A888;
491
395
  }
492
396
 
493
397
  /* ============ Dark mode variant palettes ============ */
@@ -518,13 +422,13 @@ var STYLE2 = `
518
422
  --chrome-beam-8: #059669;
519
423
  }
520
424
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] {
521
- --chrome-base: #070405;
425
+ --chrome-base: #030202;
522
426
  --chrome-origin-glow: rgba(232, 165, 152, 0.05);
523
427
  --chrome-vignette: rgba(0, 0, 0, 0.4);
524
- --chrome-beam-1: #4C0519;
525
- --chrome-beam-2: #881337;
526
- --chrome-beam-3: #9F1239;
527
- --chrome-beam-4: #7C2D12;
428
+ --chrome-beam-1: #9F4060;
429
+ --chrome-beam-2: #B85070;
430
+ --chrome-beam-3: #C05A6A;
431
+ --chrome-beam-4: #A8583C;
528
432
  --chrome-beam-5: #A8695E;
529
433
  --chrome-beam-6: #C07A6F;
530
434
  --chrome-beam-7: #E8A598;
@@ -532,16 +436,16 @@ var STYLE2 = `
532
436
  }
533
437
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] {
534
438
  --chrome-base: #060302;
535
- --chrome-origin-glow: rgba(232, 123, 85, 0.05);
439
+ --chrome-origin-glow: rgba(180, 120, 90, 0.05);
536
440
  --chrome-vignette: rgba(0, 0, 0, 0.4);
537
- --chrome-beam-1: #431407;
538
- --chrome-beam-2: #7C2D12;
539
- --chrome-beam-3: #9A3412;
540
- --chrome-beam-4: #B45309;
541
- --chrome-beam-5: #C2410C;
542
- --chrome-beam-6: #92400E;
543
- --chrome-beam-7: #EA580C;
544
- --chrome-beam-8: #78350F;
441
+ --chrome-beam-1: #8C4830;
442
+ --chrome-beam-2: #9C5A3A;
443
+ --chrome-beam-3: #7E4028;
444
+ --chrome-beam-4: #94583A;
445
+ --chrome-beam-5: #A05838;
446
+ --chrome-beam-6: #8A5034;
447
+ --chrome-beam-7: #A05F38;
448
+ --chrome-beam-8: #8A4E38;
545
449
  }
546
450
 
547
451
  /* ============ Shared geometry ============ */
@@ -572,7 +476,7 @@ var STYLE2 = `
572
476
  top: 50%;
573
477
  left: 0;
574
478
  right: 0;
575
- height: 18vmax;
479
+ height: 32vmax;
576
480
  filter: blur(55px);
577
481
  transform-origin: center;
578
482
  }
@@ -582,103 +486,177 @@ var STYLE2 = `
582
486
  mix-blend-mode: multiply;
583
487
  }
584
488
  [data-mantine-color-scheme="light"] .chrome-bg-beam-1 {
585
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-1) 25%, var(--chrome-beam-1) 75%, transparent 95%);
489
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-1) 10%, var(--chrome-beam-1) 90%, transparent 100%);
586
490
  transform: rotate(0deg);
587
491
  opacity: 0.09;
588
492
  }
589
493
  [data-mantine-color-scheme="light"] .chrome-bg-beam-2 {
590
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-2) 25%, var(--chrome-beam-2) 75%, transparent 95%);
494
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-2) 10%, var(--chrome-beam-2) 90%, transparent 100%);
591
495
  transform: rotate(22.5deg);
592
496
  opacity: 0.08;
593
497
  }
594
498
  [data-mantine-color-scheme="light"] .chrome-bg-beam-3 {
595
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-3) 25%, var(--chrome-beam-3) 75%, transparent 95%);
499
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-3) 10%, var(--chrome-beam-3) 90%, transparent 100%);
596
500
  transform: rotate(45deg);
597
501
  opacity: 0.09;
598
502
  }
599
503
  [data-mantine-color-scheme="light"] .chrome-bg-beam-4 {
600
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-4) 25%, var(--chrome-beam-4) 75%, transparent 95%);
504
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-4) 10%, var(--chrome-beam-4) 90%, transparent 100%);
601
505
  transform: rotate(67.5deg);
602
506
  opacity: 0.07;
603
507
  }
604
508
  [data-mantine-color-scheme="light"] .chrome-bg-beam-5 {
605
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-5) 25%, var(--chrome-beam-5) 75%, transparent 95%);
509
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-5) 10%, var(--chrome-beam-5) 90%, transparent 100%);
606
510
  transform: rotate(90deg);
607
511
  opacity: 0.09;
608
512
  }
609
513
  [data-mantine-color-scheme="light"] .chrome-bg-beam-6 {
610
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-6) 25%, var(--chrome-beam-6) 75%, transparent 95%);
514
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-6) 10%, var(--chrome-beam-6) 90%, transparent 100%);
611
515
  transform: rotate(112.5deg);
612
516
  opacity: 0.07;
613
517
  }
614
518
  [data-mantine-color-scheme="light"] .chrome-bg-beam-7 {
615
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-7) 25%, var(--chrome-beam-7) 75%, transparent 95%);
519
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-7) 10%, var(--chrome-beam-7) 90%, transparent 100%);
616
520
  transform: rotate(135deg);
617
521
  opacity: 0.09;
618
522
  }
619
523
  [data-mantine-color-scheme="light"] .chrome-bg-beam-8 {
620
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-8) 25%, var(--chrome-beam-8) 75%, transparent 95%);
524
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-8) 10%, var(--chrome-beam-8) 90%, transparent 100%);
621
525
  transform: rotate(157.5deg);
622
526
  opacity: 0.07;
623
527
  }
624
528
 
529
+ /* Midnight light mode: reduce beam intensity by one step */
530
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-1,
531
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-3,
532
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-5,
533
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-7 {
534
+ opacity: 0.08;
535
+ }
536
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-2 {
537
+ opacity: 0.07;
538
+ }
539
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-4,
540
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-6,
541
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-8 {
542
+ opacity: 0.06;
543
+ }
544
+
545
+ /* Aurora light mode: reduce beam intensity by one step */
546
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-1,
547
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-3,
548
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-5,
549
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-7 {
550
+ opacity: 0.08;
551
+ }
552
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-2 {
553
+ opacity: 0.07;
554
+ }
555
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-4,
556
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-6,
557
+ [data-mantine-color-scheme="light"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-8 {
558
+ opacity: 0.06;
559
+ }
560
+
625
561
  /* Dark mode: screen blend with low opacity over near-black base */
626
562
  [data-mantine-color-scheme="dark"] .chrome-bg-beam {
627
563
  mix-blend-mode: screen;
628
564
  }
629
565
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-1 {
630
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-1) 25%, var(--chrome-beam-1) 75%, transparent 95%);
566
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-1) 10%, var(--chrome-beam-1) 90%, transparent 100%);
631
567
  transform: rotate(0deg);
632
568
  opacity: 0.12;
633
569
  }
634
570
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-2 {
635
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-2) 25%, var(--chrome-beam-2) 75%, transparent 95%);
571
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-2) 10%, var(--chrome-beam-2) 90%, transparent 100%);
636
572
  transform: rotate(22.5deg);
637
573
  opacity: 0.1;
638
574
  }
639
575
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-3 {
640
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-3) 25%, var(--chrome-beam-3) 75%, transparent 95%);
576
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-3) 10%, var(--chrome-beam-3) 90%, transparent 100%);
641
577
  transform: rotate(45deg);
642
578
  opacity: 0.12;
643
579
  }
644
580
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-4 {
645
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-4) 25%, var(--chrome-beam-4) 75%, transparent 95%);
581
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-4) 10%, var(--chrome-beam-4) 90%, transparent 100%);
646
582
  transform: rotate(67.5deg);
647
583
  opacity: 0.1;
648
584
  }
649
585
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-5 {
650
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-5) 25%, var(--chrome-beam-5) 75%, transparent 95%);
586
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-5) 10%, var(--chrome-beam-5) 90%, transparent 100%);
651
587
  transform: rotate(90deg);
652
588
  opacity: 0.12;
653
589
  }
654
590
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-6 {
655
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-6) 25%, var(--chrome-beam-6) 75%, transparent 95%);
591
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-6) 10%, var(--chrome-beam-6) 90%, transparent 100%);
656
592
  transform: rotate(112.5deg);
657
593
  opacity: 0.1;
658
594
  }
659
595
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-7 {
660
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-7) 25%, var(--chrome-beam-7) 75%, transparent 95%);
596
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-7) 10%, var(--chrome-beam-7) 90%, transparent 100%);
661
597
  transform: rotate(135deg);
662
598
  opacity: 0.12;
663
599
  }
664
600
  [data-mantine-color-scheme="dark"] .chrome-bg-beam-8 {
665
- background: linear-gradient(to right, transparent 5%, var(--chrome-beam-8) 25%, var(--chrome-beam-8) 75%, transparent 95%);
601
+ background: linear-gradient(to right, transparent 0%, var(--chrome-beam-8) 10%, var(--chrome-beam-8) 90%, transparent 100%);
666
602
  transform: rotate(157.5deg);
667
603
  opacity: 0.1;
668
604
  }
669
605
 
606
+ /* Rose-gold dark mode: reduced brightness */
607
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-1,
608
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-3,
609
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-5,
610
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-7 {
611
+ opacity: 0.07;
612
+ }
613
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-2,
614
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-4,
615
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-6,
616
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="rose-gold"] .chrome-bg-beam-8 {
617
+ opacity: 0.06;
618
+ }
619
+
620
+ /* Ember dark mode: softened beams to match calmer terracotta palette */
621
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-1,
622
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-3,
623
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-5,
624
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-7 {
625
+ opacity: 0.08;
626
+ }
627
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-2,
628
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-4,
629
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-6,
630
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="ember"] .chrome-bg-beam-8 {
631
+ opacity: 0.06;
632
+ }
633
+
670
634
  /* Aurora dark mode: softer beams to reduce ambient bloom */
671
635
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-1,
672
636
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-3,
673
637
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-5,
674
638
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-7 {
675
- opacity: 0.07;
639
+ opacity: 0.12;
676
640
  }
677
641
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-2,
678
642
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-4,
679
643
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-6,
680
644
  [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="aurora"] .chrome-bg-beam-8 {
681
- opacity: 0.06;
645
+ opacity: 0.09;
646
+ }
647
+
648
+ /* Midnight dark mode: slightly brighter beams */
649
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-1,
650
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-3,
651
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-5,
652
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-7 {
653
+ opacity: 0.14;
654
+ }
655
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-2,
656
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-4,
657
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-6,
658
+ [data-mantine-color-scheme="dark"] .chrome-bg-root[data-variant="midnight"] .chrome-bg-beam-8 {
659
+ opacity: 0.11;
682
660
  }
683
661
 
684
662
  @keyframes chrome-rotate {
@@ -693,7 +671,7 @@ var STYLE2 = `
693
671
  `;
694
672
  function ChromeBackground({ variant }) {
695
673
  return /* @__PURE__ */ jsxs(Fragment$1, { children: [
696
- /* @__PURE__ */ jsx("style", { children: STYLE2 }),
674
+ /* @__PURE__ */ jsx("style", { children: STYLE }),
697
675
  /* @__PURE__ */ jsx("div", { className: "chrome-bg-root", "data-variant": variant, "aria-hidden": "true", children: /* @__PURE__ */ jsxs("div", { className: "chrome-bg-wrapper", children: [
698
676
  /* @__PURE__ */ jsx("div", { className: "chrome-bg-beam chrome-bg-beam-1" }),
699
677
  /* @__PURE__ */ jsx("div", { className: "chrome-bg-beam chrome-bg-beam-2" }),
@@ -718,6 +696,7 @@ var auroraPreset = {
718
696
  background: "#EFF5F3",
719
697
  surface: "transparent",
720
698
  surfaceHover: "rgba(0, 137, 123, 0.08)",
699
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
721
700
  text: "#0A1E1A",
722
701
  textDimmed: "#3D5E54",
723
702
  textSubtle: "#507368",
@@ -739,20 +718,21 @@ var auroraPreset = {
739
718
  dark: {
740
719
  primary: "#00A88A",
741
720
  primaryContrast: "#062E26",
742
- background: "#020807",
721
+ background: "#070D0C",
743
722
  surface: "transparent",
744
- surfaceHover: "#0E2620",
723
+ surfaceHover: "rgba(0, 168, 138, 0.10)",
724
+ elevatedSurface: "rgba(19, 26, 24, 0.85)",
745
725
  text: "#E0F2F1",
746
726
  textDimmed: "#80CBC4",
747
- textSubtle: "#68C8BE",
727
+ textSubtle: "#64B0A8",
748
728
  border: "rgba(128, 203, 196, 0.09)",
749
729
  error: "#F87171",
750
730
  warning: "#FBBF24",
751
731
  success: "#4ADE80",
752
- glassBackground: "rgba(10, 20, 18, 0.35)",
753
- glassBlur: "blur(28px) saturate(180%)",
732
+ glassBackground: "rgba(18, 28, 24, 0.3)",
733
+ glassBlur: "blur(28px) saturate(220%)",
754
734
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
755
- cardShadow: "inset 0 1px 0 rgba(128, 203, 196, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 2px 8px rgba(0, 0, 0, 0.45), 0 14px 34px -6px rgba(0, 0, 0, 0.55), 0 36px 68px -14px rgba(0, 0, 0, 0.45), 0 48px 96px -24px rgba(16, 185, 129, 0.14)",
735
+ cardShadow: "inset 0 1px 0 rgba(128, 203, 196, 0.07), inset 0 0 0 1px rgba(128, 203, 196, 0.04), 0 2px 8px rgba(0, 0, 0, 0.3), 0 12px 32px -8px rgba(0, 0, 0, 0.42), 0 32px 64px -16px rgba(0, 0, 0, 0.25)",
756
736
  durationFast: "160ms",
757
737
  durationNormal: "280ms",
758
738
  easing: "cubic-bezier(0.4, 0, 0.2, 1)",
@@ -783,6 +763,7 @@ var roseGoldPreset = {
783
763
  background: "#F4F0EE",
784
764
  surface: "transparent",
785
765
  surfaceHover: "rgba(168, 105, 94, 0.08)",
766
+ elevatedSurface: "rgba(255, 252, 251, 0.85)",
786
767
  text: "#2D1516",
787
768
  textDimmed: "#5A4448",
788
769
  textSubtle: "#9A848A",
@@ -804,20 +785,21 @@ var roseGoldPreset = {
804
785
  dark: {
805
786
  primary: "#A56B5E",
806
787
  primaryContrast: "#2D1A16",
807
- background: "#070405",
788
+ background: "#0B0809",
808
789
  surface: "transparent",
809
- surfaceHover: "#221418",
790
+ surfaceHover: "rgba(165, 107, 94, 0.10)",
791
+ elevatedSurface: "rgba(23, 20, 21, 0.85)",
810
792
  text: "#F5E8E6",
811
793
  textDimmed: "#D8B8B2",
812
794
  textSubtle: "#B89A94",
813
- border: "rgba(216, 184, 178, 0.08)",
795
+ border: "rgba(216, 184, 178, 0.06)",
814
796
  error: "#F87171",
815
797
  warning: "#FBBF24",
816
798
  success: "#4ADE80",
817
- glassBackground: "rgba(22, 14, 16, 0.35)",
818
- glassBlur: "blur(28px) saturate(180%)",
799
+ glassBackground: "rgba(35, 27, 31, 0.32)",
800
+ glassBlur: "blur(28px) saturate(210%)",
819
801
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
820
- cardShadow: "inset 0 1px 0 rgba(216, 184, 178, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 2px 8px rgba(0, 0, 0, 0.45), 0 14px 34px -6px rgba(0, 0, 0, 0.55), 0 36px 68px -14px rgba(0, 0, 0, 0.45), 0 48px 96px -24px rgba(200, 137, 124, 0.16)",
802
+ cardShadow: "inset 0 1px 0 rgba(216, 184, 178, 0.07), inset 0 0 0 1px rgba(216, 184, 178, 0.03), 0 2px 8px rgba(0, 0, 0, 0.25), 0 12px 32px -8px rgba(0, 0, 0, 0.32), 0 32px 64px -16px rgba(0, 0, 0, 0.25)",
821
803
  durationFast: "160ms",
822
804
  durationNormal: "300ms",
823
805
  easing: "cubic-bezier(0.25, 0.1, 0.25, 1)",
@@ -847,6 +829,7 @@ var midnightPreset = {
847
829
  background: "#F3F5FA",
848
830
  surface: "transparent",
849
831
  surfaceHover: "rgba(71, 85, 105, 0.08)",
832
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
850
833
  text: "#0A1020",
851
834
  textDimmed: "#374358",
852
835
  textSubtle: "#64708A",
@@ -868,20 +851,21 @@ var midnightPreset = {
868
851
  dark: {
869
852
  primary: "#7888A8",
870
853
  primaryContrast: "#F1F5F9",
871
- background: "#060A14",
854
+ background: "#080C16",
872
855
  surface: "transparent",
873
- surfaceHover: "#171A24",
856
+ surfaceHover: "rgba(120, 136, 168, 0.09)",
857
+ elevatedSurface: "rgba(19, 24, 36, 0.85)",
874
858
  text: "#F1F5F9",
875
859
  textDimmed: "#CBD5E1",
876
860
  textSubtle: "#94A3B8",
877
- border: "rgba(193, 203, 215, 0.08)",
861
+ border: "rgba(193, 203, 215, 0.07)",
878
862
  error: "#F87171",
879
863
  warning: "#FBBF24",
880
864
  success: "#4ADE80",
881
- glassBackground: "rgba(13, 15, 22, 0.33)",
882
- glassBlur: "blur(28px) saturate(180%)",
865
+ glassBackground: "rgba(20, 22, 31, 0.25)",
866
+ glassBlur: "blur(18px) saturate(210%)",
883
867
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
884
- cardShadow: "inset 0 1px 0 rgba(203, 213, 225, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.01), 0 2px 8px rgba(0, 0, 0, 0.45), 0 14px 34px -6px rgba(0, 0, 0, 0.55), 0 36px 68px -14px rgba(0, 0, 0, 0.45), 0 48px 96px -24px rgba(100, 116, 139, 0.1)",
868
+ cardShadow: "inset 0 1px 0 rgba(203, 213, 225, 0.02), inset 0 0 0 1px rgba(203, 213, 225, 0.01), 0 2px 8px rgba(0, 0, 0, 0.5), 0 12px 32px -8px rgba(0, 0, 0, 0.35), 0 32px 64px -16px rgba(0, 0, 0, 0.12)",
885
869
  durationFast: "160ms",
886
870
  durationNormal: "280ms",
887
871
  easing: "cubic-bezier(0.4, 0, 0.2, 1)",
@@ -907,11 +891,12 @@ var emberPreset = {
907
891
  ],
908
892
  background: createElement(ChromeBackground, { variant: "ember" }),
909
893
  light: {
910
- primary: "#D4603A",
894
+ primary: "#C26040",
911
895
  primaryContrast: "#ffffff",
912
896
  background: "#F3EFEB",
913
897
  surface: "transparent",
914
898
  surfaceHover: "rgba(212, 96, 58, 0.08)",
899
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
915
900
  text: "#2C1708",
916
901
  textDimmed: "#5E4A3A",
917
902
  textSubtle: "#8D7A6A",
@@ -931,11 +916,12 @@ var emberPreset = {
931
916
  fontSans: '"Source Sans 3", sans-serif'
932
917
  },
933
918
  dark: {
934
- primary: "#E87B55",
919
+ primary: "#D07055",
935
920
  primaryContrast: "#1A0E08",
936
- background: "#060302",
921
+ background: "#120F0E",
937
922
  surface: "transparent",
938
- surfaceHover: "#1F1410",
923
+ surfaceHover: "rgba(208, 112, 85, 0.10)",
924
+ elevatedSurface: "rgba(30, 26, 23, 0.85)",
939
925
  text: "#F5EDE6",
940
926
  textDimmed: "#D4B9A0",
941
927
  textSubtle: "#B8A090",
@@ -943,10 +929,10 @@ var emberPreset = {
943
929
  error: "#F87171",
944
930
  warning: "#FBBF24",
945
931
  success: "#4ADE80",
946
- glassBackground: "rgba(20, 14, 10, 0.35)",
947
- glassBlur: "blur(28px) saturate(180%)",
932
+ glassBackground: "rgba(35, 29, 25, 0.3)",
933
+ glassBlur: "blur(18px) saturate(175%)",
948
934
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
949
- cardShadow: "inset 0 1px 0 rgba(232, 123, 85, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.01), 0 2px 8px rgba(0, 0, 0, 0.45), 0 14px 34px -6px rgba(0, 0, 0, 0.55), 0 36px 68px -14px rgba(0, 0, 0, 0.45), 0 48px 96px -24px rgba(249, 115, 22, 0.16)",
935
+ cardShadow: "inset 0 1px 0 rgba(232, 123, 85, 0.12), inset 0 0 0 1px rgba(232, 123, 85, 0.05), 0 2px 8px rgba(0, 0, 0, 0.2), 0 12px 32px -8px rgba(0, 0, 0, 0.45), 0 32px 44px -16px rgba(0, 0, 0, 0.15)",
950
936
  durationFast: "150ms",
951
937
  durationNormal: "280ms",
952
938
  easing: "cubic-bezier(0.4, 0, 0.2, 1)",
@@ -963,6 +949,107 @@ var emberPreset = {
963
949
  }
964
950
  }
965
951
  };
952
+ var STYLE2 = `
953
+ /* NOTE: does not neutralize AppShellContainer's background paint, unlike
954
+ ChromeBackground / ConstellationBackground. AmbientBloom is designed to
955
+ compose *above* existing background layers (CyberBackground's grid,
956
+ ConstellationBackground's canvas), so it must not knock out the base
957
+ color paint the sibling background relies on. */
958
+ .elevasis-ambient-bloom {
959
+ display: none;
960
+ position: fixed;
961
+ inset: 0;
962
+ pointer-events: none;
963
+ overflow: hidden;
964
+ }
965
+ [data-mantine-color-scheme="dark"] .elevasis-ambient-bloom {
966
+ display: block;
967
+ }
968
+ [data-mantine-color-scheme="dark"] .elevasis-ambient-bloom-lobe {
969
+ mix-blend-mode: screen;
970
+ }
971
+ @keyframes elevasis-ambient-bloom-a {
972
+ 0%, 100% { transform: translate(0, 0) scale(1); }
973
+ 33% { transform: translate(4%, -5%) scale(1.08); }
974
+ 66% { transform: translate(-5%, 4%) scale(0.94); }
975
+ }
976
+ @keyframes elevasis-ambient-bloom-b {
977
+ 0%, 100% { transform: translate(0, 0) scale(1); }
978
+ 50% { transform: translate(-2%, 2%) scale(1.06); }
979
+ }
980
+ @keyframes elevasis-ambient-bloom-c {
981
+ 0%, 100% { transform: translate(0, 0) scale(1); }
982
+ 40% { transform: translate(5%, 4%) scale(0.9); }
983
+ 80% { transform: translate(-4%, -6%) scale(1.08); }
984
+ }
985
+ @media (prefers-reduced-motion: reduce) {
986
+ .elevasis-ambient-bloom-lobe { animation: none !important; }
987
+ }
988
+ `;
989
+ function AmbientBloom({
990
+ color = "var(--color-primary)",
991
+ intensity = 0.08
992
+ }) {
993
+ const primaryPct = `${Math.round(intensity * 100)}%`;
994
+ const secondaryPct = `${Math.round(intensity * 80)}%`;
995
+ const tertiaryPct = `${Math.round(intensity * 60)}%`;
996
+ return /* @__PURE__ */ jsxs(Fragment$1, { children: [
997
+ /* @__PURE__ */ jsx("style", { children: STYLE2 }),
998
+ /* @__PURE__ */ jsxs("div", { className: "elevasis-ambient-bloom", "aria-hidden": "true", children: [
999
+ /* @__PURE__ */ jsx(
1000
+ "div",
1001
+ {
1002
+ className: "elevasis-ambient-bloom-lobe",
1003
+ style: {
1004
+ position: "absolute",
1005
+ top: "-45%",
1006
+ left: "-10%",
1007
+ width: "160%",
1008
+ height: "150%",
1009
+ background: `radial-gradient(ellipse at center, color-mix(in srgb, ${color} ${primaryPct}, transparent) 0%, transparent 60%)`,
1010
+ filter: "blur(80px)",
1011
+ animation: "elevasis-ambient-bloom-a 32s ease-in-out infinite",
1012
+ willChange: "transform"
1013
+ }
1014
+ }
1015
+ ),
1016
+ /* @__PURE__ */ jsx(
1017
+ "div",
1018
+ {
1019
+ className: "elevasis-ambient-bloom-lobe",
1020
+ style: {
1021
+ position: "absolute",
1022
+ top: "-8%",
1023
+ right: "-33%",
1024
+ width: "145%",
1025
+ height: "135%",
1026
+ background: `radial-gradient(ellipse at center, color-mix(in srgb, ${color} ${secondaryPct}, transparent) 0%, transparent 65%)`,
1027
+ filter: "blur(90px)",
1028
+ animation: "elevasis-ambient-bloom-b 40s ease-in-out infinite",
1029
+ willChange: "transform"
1030
+ }
1031
+ }
1032
+ ),
1033
+ /* @__PURE__ */ jsx(
1034
+ "div",
1035
+ {
1036
+ className: "elevasis-ambient-bloom-lobe",
1037
+ style: {
1038
+ position: "absolute",
1039
+ top: "-8%",
1040
+ left: "-42%",
1041
+ width: "138%",
1042
+ height: "128%",
1043
+ background: `radial-gradient(ellipse at center, color-mix(in srgb, ${color} ${tertiaryPct}, transparent) 0%, transparent 60%)`,
1044
+ filter: "blur(100px)",
1045
+ animation: "elevasis-ambient-bloom-c 36s ease-in-out infinite",
1046
+ willChange: "transform"
1047
+ }
1048
+ }
1049
+ )
1050
+ ] })
1051
+ ] });
1052
+ }
966
1053
  var canopyPreset = {
967
1054
  subtitleFontFamily: '"Lora", serif',
968
1055
  fontImports: [
@@ -980,6 +1067,7 @@ var canopyPreset = {
980
1067
  background: "#F4F8F5",
981
1068
  surface: "transparent",
982
1069
  surfaceHover: "rgba(46, 122, 64, 0.08)",
1070
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
983
1071
  text: "#0F2415",
984
1072
  textDimmed: "#2D5235",
985
1073
  textSubtle: "#5A7D62",
@@ -1003,18 +1091,19 @@ var canopyPreset = {
1003
1091
  primaryContrast: "#ffffff",
1004
1092
  background: "#060A07",
1005
1093
  surface: "transparent",
1006
- surfaceHover: "#162818",
1094
+ surfaceHover: "rgba(74, 168, 96, 0.10)",
1095
+ elevatedSurface: "rgba(18, 22, 19, 0.85)",
1007
1096
  text: "#E0F0E4",
1008
1097
  textDimmed: "#98C8A4",
1009
- textSubtle: "#80A090",
1098
+ textSubtle: "#98B8A8",
1010
1099
  border: "rgba(152, 200, 164, 0.09)",
1011
1100
  error: "#EF5350",
1012
1101
  warning: "#FF8A65",
1013
1102
  success: "#8BC34A",
1014
- glassBackground: "rgba(16, 23, 18, 0.42)",
1015
- glassBlur: "blur(18px) saturate(180%)",
1103
+ glassBackground: "rgba(27, 30, 25, 0.3)",
1104
+ glassBlur: "blur(12px) saturate(180%)",
1016
1105
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
1017
- cardShadow: "inset 0 1px 0 rgba(74, 168, 96, 0.06), inset 0 0 0 1px rgba(74, 168, 96, 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)",
1106
+ cardShadow: "inset 0 1px 0 rgba(74, 168, 96, 0.06), inset 0 0 0 1px rgba(74, 168, 96, 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.2)",
1018
1107
  durationFast: "150ms",
1019
1108
  durationNormal: "280ms",
1020
1109
  easing: "cubic-bezier(0.4, 0, 0.2, 1)",
@@ -1036,7 +1125,7 @@ var slatePreset = {
1036
1125
  Fragment,
1037
1126
  null,
1038
1127
  createElement(AppBackground),
1039
- createElement(AmbientBloom, { intensity: 0.06 })
1128
+ createElement(AmbientBloomGrid, { intensity: 0.06, size: 1.2 })
1040
1129
  ),
1041
1130
  light: {
1042
1131
  primary: "#4A6E8E",
@@ -1044,6 +1133,7 @@ var slatePreset = {
1044
1133
  background: "#ECEEF0",
1045
1134
  surface: "#F3F4F6",
1046
1135
  surfaceHover: "#E0E3E7",
1136
+ elevatedSurface: "rgba(255, 255, 255, 0.95)",
1047
1137
  text: "#161C22",
1048
1138
  textDimmed: "#404C58",
1049
1139
  textSubtle: "#6A7A88",
@@ -1065,9 +1155,10 @@ var slatePreset = {
1065
1155
  dark: {
1066
1156
  primary: "#6A8FAD",
1067
1157
  primaryContrast: "#0E1218",
1068
- background: "#010305",
1158
+ background: "#030507",
1069
1159
  surface: "#0B1015",
1070
- surfaceHover: "#1C2830",
1160
+ surfaceHover: "rgba(106, 143, 173, 0.10)",
1161
+ elevatedSurface: "rgba(18, 22, 27, 0.93)",
1071
1162
  text: "#E8F0F8",
1072
1163
  textDimmed: "#A8C4DC",
1073
1164
  textSubtle: "#80A0B0",
@@ -1103,20 +1194,21 @@ var cyberStrikePreset = {
1103
1194
  background: createElement(
1104
1195
  Fragment,
1105
1196
  null,
1106
- createElement(CyberBackground, { variant: "strike" }),
1107
- createElement(AmbientBloom, { intensity: 0.16 })
1197
+ createElement(CyberBackground, { variant: "strike", perspectiveGridRadialGlowIntensity: 16 }),
1198
+ createElement(AmbientBloomGrid, { intensity: 0.07, size: 1.2 })
1108
1199
  ),
1109
1200
  light: {
1110
- primary: "#FF1744",
1201
+ primary: "#D41840",
1111
1202
  primaryContrast: "#ffffff",
1112
1203
  background: "#FFF8FA",
1113
1204
  surface: "transparent",
1114
- surfaceHover: "rgba(255, 23, 68, 0.08)",
1205
+ surfaceHover: "rgba(212, 24, 64, 0.08)",
1206
+ elevatedSurface: "rgba(255, 252, 253, 0.92)",
1115
1207
  text: "#140A0C",
1116
1208
  textDimmed: "#4D2E35",
1117
1209
  textSubtle: "#805560",
1118
1210
  border: "rgba(20, 10, 12, 0.08)",
1119
- error: "#FF1744",
1211
+ error: "#D41840",
1120
1212
  warning: "#FF9100",
1121
1213
  success: "#00E676",
1122
1214
  glassBackground: "rgba(255, 248, 250, 0.55)",
@@ -1131,22 +1223,23 @@ var cyberStrikePreset = {
1131
1223
  fontSans: '"JetBrains Mono", monospace'
1132
1224
  },
1133
1225
  dark: {
1134
- primary: "#FF1744",
1226
+ primary: "#D41840",
1135
1227
  primaryContrast: "#ffffff",
1136
1228
  background: "#050303",
1137
1229
  surface: "transparent",
1138
- surfaceHover: "rgba(255, 23, 68, 0.06)",
1230
+ surfaceHover: "rgba(212, 24, 64, 0.06)",
1231
+ elevatedSurface: "rgba(16, 12, 12, 0.82)",
1139
1232
  text: "#FAE0E4",
1140
1233
  textDimmed: "#F0A0B0",
1141
- textSubtle: "#8E6068",
1142
- border: "rgba(200, 175, 180, 0.09)",
1143
- error: "#FF1744",
1234
+ textSubtle: "#B8848E",
1235
+ border: "rgba(230, 165, 170, 0.14)",
1236
+ error: "#D41840",
1144
1237
  warning: "#FF9100",
1145
1238
  success: "#00E676",
1146
- glassBackground: "rgba(20, 14, 18, 0.42)",
1147
- glassBlur: "blur(28px) saturate(180%)",
1239
+ glassBackground: "rgba(18, 19, 20, 0.2)",
1240
+ glassBlur: "blur(12px) saturate(180%)",
1148
1241
  shadow: "0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 24px -8px rgba(0, 0, 0, 0.5), 0 20px 48px -16px rgba(0, 0, 0, 0.4)",
1149
- cardShadow: "inset 0 1px 0 rgba(230, 200, 210, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 2px 8px rgba(0, 0, 0, 0.5), 0 12px 32px -8px rgba(0, 0, 0, 0.5), 0 32px 64px -16px rgba(0, 0, 0, 0.4)",
1242
+ cardShadow: "inset 0 1px 0 rgba(230, 200, 210, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 4px 6px rgba(0, 0, 0, 0.4), 0 10px 24px -10px rgba(0, 0, 0, .6), 0 28px 24px -16px rgba(0, 0, 0, 0.12)",
1150
1243
  durationFast: "80ms",
1151
1244
  durationNormal: "160ms",
1152
1245
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -1172,8 +1265,8 @@ var cyberChromePreset = {
1172
1265
  background: createElement(
1173
1266
  Fragment,
1174
1267
  null,
1175
- createElement(CyberBackground, { variant: "chrome" }),
1176
- createElement(AmbientBloom, { intensity: 0.1 })
1268
+ createElement(CyberBackground, { variant: "chrome", perspectiveGridRadialGlowIntensity: 16 }),
1269
+ createElement(AmbientBloomGrid, { intensity: 0.08, size: 1.2 })
1177
1270
  ),
1178
1271
  light: {
1179
1272
  primary: "#64748B",
@@ -1181,6 +1274,7 @@ var cyberChromePreset = {
1181
1274
  background: "#F1F3F5",
1182
1275
  surface: "transparent",
1183
1276
  surfaceHover: "rgba(100, 116, 139, 0.08)",
1277
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
1184
1278
  text: "#0B0E12",
1185
1279
  textDimmed: "#2F3A47",
1186
1280
  textSubtle: "#5C6B7A",
@@ -1200,22 +1294,23 @@ var cyberChromePreset = {
1200
1294
  fontSans: '"JetBrains Mono", monospace'
1201
1295
  },
1202
1296
  dark: {
1203
- primary: "#94A3B8",
1297
+ primary: "#7A8EA6",
1204
1298
  primaryContrast: "#0B0E12",
1205
- background: "#010204",
1299
+ background: "#020305",
1206
1300
  surface: "transparent",
1207
- surfaceHover: "rgba(148, 165, 184, 0.09)",
1301
+ surfaceHover: "rgba(122, 142, 166, 0.09)",
1302
+ elevatedSurface: "rgba(16, 20, 26, 0.82)",
1208
1303
  text: "#E8EEF5",
1209
1304
  textDimmed: "#A8B6C4",
1210
- textSubtle: "#5E6E80",
1211
- border: "rgba(148, 165, 184, 0.09)",
1305
+ textSubtle: "#8A98AC",
1306
+ border: "rgba(122, 142, 166, 0.14)",
1212
1307
  error: "#FF1744",
1213
1308
  warning: "#FF9100",
1214
1309
  success: "#00E676",
1215
- glassBackground: "rgba(14, 18, 24, 0.34)",
1216
- glassBlur: "blur(28px) saturate(180%)",
1310
+ glassBackground: "rgba(18, 22, 28, 0.25)",
1311
+ glassBlur: "blur(12px) saturate(185%)",
1217
1312
  shadow: "0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -14px rgba(0, 0, 0, 0.4)",
1218
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(148, 165, 184, 0.04), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
1313
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(122, 142, 166, 0.04), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
1219
1314
  durationFast: "80ms",
1220
1315
  durationNormal: "160ms",
1221
1316
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -1246,15 +1341,16 @@ var cyberVoidPreset = {
1246
1341
  background: createElement(
1247
1342
  Fragment,
1248
1343
  null,
1249
- createElement(CyberBackground, { variant: "void" }),
1250
- createElement(AmbientBloom, { intensity: 0.13 })
1344
+ createElement(CyberBackground, { variant: "void", perspectiveGridRadialGlowIntensity: 16 }),
1345
+ createElement(AmbientBloomGrid, { intensity: 0.07, size: 1.2 })
1251
1346
  ),
1252
1347
  light: {
1253
- primary: "#2979FF",
1348
+ primary: "#2468E0",
1254
1349
  primaryContrast: "#ffffff",
1255
1350
  background: "#F5F8FD",
1256
1351
  surface: "transparent",
1257
- surfaceHover: "rgba(41, 121, 255, 0.08)",
1352
+ surfaceHover: "rgba(36, 104, 224, 0.08)",
1353
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
1258
1354
  text: "#0A0D14",
1259
1355
  textDimmed: "#2E374D",
1260
1356
  textSubtle: "#556080",
@@ -1274,22 +1370,23 @@ var cyberVoidPreset = {
1274
1370
  fontSans: '"JetBrains Mono", monospace'
1275
1371
  },
1276
1372
  dark: {
1277
- primary: "#2979FF",
1373
+ primary: "#2468E0",
1278
1374
  primaryContrast: "#ffffff",
1279
- background: "#020406",
1375
+ background: "#050709",
1280
1376
  surface: "transparent",
1281
- surfaceHover: "rgba(41, 121, 255, 0.08)",
1377
+ surfaceHover: "rgba(36, 104, 224, 0.08)",
1378
+ elevatedSurface: "rgba(16, 19, 24, 0.85)",
1282
1379
  text: "#E0EAFA",
1283
1380
  textDimmed: "#99BBEE",
1284
- textSubtle: "#5E7898",
1285
- border: "rgba(41, 121, 255, 0.18)",
1381
+ textSubtle: "#8AACCE",
1382
+ border: "rgba(36, 104, 224, 0.17)",
1286
1383
  error: "#FF1744",
1287
1384
  warning: "#FF9100",
1288
1385
  success: "#00E676",
1289
- glassBackground: "rgba(11, 14, 16, 0.3)",
1290
- glassBlur: "blur(18px) saturate(180%)",
1386
+ glassBackground: "rgba(17, 19, 19, 0.2)",
1387
+ glassBlur: "blur(8px) saturate(150%)",
1291
1388
  shadow: "0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -14px rgba(0, 0, 0, 0.4)",
1292
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(41, 121, 255, 0.08), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
1389
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(36, 104, 224, 0.06), 0 4px 4px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 20px -16px rgba(0, 0, 0, 0.05)",
1293
1390
  durationFast: "80ms",
1294
1391
  durationNormal: "160ms",
1295
1392
  easing: "cubic-bezier(0.16, 1, 0.3, 1)",
@@ -1331,6 +1428,7 @@ var nirvanaPreset = {
1331
1428
  background: "#ffffff",
1332
1429
  surface: "transparent",
1333
1430
  surfaceHover: "rgba(242, 56, 1, 0.06)",
1431
+ elevatedSurface: "rgba(255, 252, 250, 0.92)",
1334
1432
  text: "#000000",
1335
1433
  textDimmed: "#32373c",
1336
1434
  textSubtle: "#6b7177",
@@ -1354,7 +1452,8 @@ var nirvanaPreset = {
1354
1452
  primaryContrast: "#ffffff",
1355
1453
  background: "#080605",
1356
1454
  surface: "transparent",
1357
- surfaceHover: "#1a1a1a",
1455
+ surfaceHover: "rgba(242, 56, 1, 0.10)",
1456
+ elevatedSurface: "rgba(20, 17, 15, 0.85)",
1358
1457
  text: "#ffffff",
1359
1458
  textDimmed: "#c8ccd0",
1360
1459
  textSubtle: "#8a8f95",
@@ -1362,10 +1461,10 @@ var nirvanaPreset = {
1362
1461
  error: "#ff5252",
1363
1462
  warning: "#ff9800",
1364
1463
  success: "#4caf50",
1365
- glassBackground: "rgba(20, 20, 22, 0.42)",
1366
- glassBlur: "blur(18px) saturate(180%)",
1464
+ glassBackground: "rgba(26, 26, 28, 0.28)",
1465
+ glassBlur: "blur(18px) saturate(187%)",
1367
1466
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
1368
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.02), 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)",
1467
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 4px 14px -2px rgba(0, 0, 0, 0.7), 0 12px 32px -8px rgba(0, 0, 0, 0.3), 0 32px 64px -16px rgba(0, 0, 0, 0.2)",
1369
1468
  durationFast: "150ms",
1370
1469
  durationNormal: "250ms",
1371
1470
  easing: "cubic-bezier(0.4, 0, 0.2, 1)",
@@ -1397,6 +1496,7 @@ var wavePreset = {
1397
1496
  background: "#f5f8fc",
1398
1497
  surface: "transparent",
1399
1498
  surfaceHover: "rgba(37, 99, 235, 0.06)",
1499
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
1400
1500
  text: "#0b1220",
1401
1501
  textDimmed: "#334155",
1402
1502
  textSubtle: "#64748b",
@@ -1416,11 +1516,12 @@ var wavePreset = {
1416
1516
  fontSans: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
1417
1517
  },
1418
1518
  dark: {
1419
- primary: "#60a5fa",
1519
+ primary: "#4A90E8",
1420
1520
  primaryContrast: "#000000",
1421
1521
  background: "#030507",
1422
1522
  surface: "transparent",
1423
- surfaceHover: "#141f36",
1523
+ surfaceHover: "rgba(74, 144, 232, 0.10)",
1524
+ elevatedSurface: "rgba(16, 19, 22, 0.85)",
1424
1525
  text: "#f1f5f9",
1425
1526
  textDimmed: "#cbd5e1",
1426
1527
  textSubtle: "#94a3b8",
@@ -1428,10 +1529,10 @@ var wavePreset = {
1428
1529
  error: "#f87171",
1429
1530
  warning: "#fbbf24",
1430
1531
  success: "#4ade80",
1431
- glassBackground: "rgba(16, 20, 30, 0.42)",
1432
- glassBlur: "blur(18px) saturate(180%)",
1433
- shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
1434
- cardShadow: "inset 0 1px 0 rgba(148, 197, 255, 0.04), inset 0 0 0 1px rgba(148, 197, 255, 0.02), 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)",
1532
+ glassBackground: "rgba(19, 23, 33, 0.3)",
1533
+ glassBlur: "blur(16px) saturate(180%)",
1534
+ shadow: "0px 1px 2px rgba(0, 0, 0, 0.3), 0px 12px 32px -8px rgba(0, 0, 0, 0.4)",
1535
+ cardShadow: "inset 0 1px 0 rgba(148, 197, 255, 0.03), inset 0 0 0 1px rgba(148, 197, 255, 0.02), 0 2px 8px rgba(0, 0, 0, 0.3), 0 12px 32px -8px rgba(0, 0, 0, 0.4), 0 32px 64px -16px rgba(0, 0, 0, 0.2)",
1435
1536
  durationFast: "150ms",
1436
1537
  durationNormal: "250ms",
1437
1538
  easing: "cubic-bezier(0.4, 0, 0.2, 1)",
@@ -1483,13 +1584,16 @@ var LIGHT_PALETTE = {
1483
1584
  };
1484
1585
  function ConstellationBackground({
1485
1586
  darkPalette = DARK_PALETTE,
1486
- lightPalette = LIGHT_PALETTE
1587
+ lightPalette = LIGHT_PALETTE,
1588
+ particles = true
1487
1589
  } = {}) {
1488
1590
  const canvasRef = useRef(null);
1489
1591
  const darkPaletteRef = useRef(darkPalette);
1490
1592
  const lightPaletteRef = useRef(lightPalette);
1593
+ const showParticlesRef = useRef(particles);
1491
1594
  darkPaletteRef.current = darkPalette;
1492
1595
  lightPaletteRef.current = lightPalette;
1596
+ showParticlesRef.current = particles;
1493
1597
  const redrawRef = useRef(null);
1494
1598
  useEffect(() => {
1495
1599
  const canvas = canvasRef.current;
@@ -1520,7 +1624,7 @@ function ConstellationBackground({
1520
1624
  };
1521
1625
  setSize();
1522
1626
  const randVelocity = () => (Math.random() - 0.5) * 0.28;
1523
- const particles = Array.from({ length: PARTICLE_COUNT }, () => ({
1627
+ const particles2 = Array.from({ length: PARTICLE_COUNT }, () => ({
1524
1628
  x: Math.random() * width,
1525
1629
  y: Math.random() * height,
1526
1630
  vx: randVelocity(),
@@ -1556,8 +1660,9 @@ function ConstellationBackground({
1556
1660
  gradient.addColorStop(1, palette.bgStops[2]);
1557
1661
  ctx.fillStyle = gradient;
1558
1662
  ctx.fillRect(0, 0, width, height);
1663
+ if (!showParticlesRef.current) return;
1559
1664
  ctx.globalCompositeOperation = palette.compositeOp;
1560
- for (const p of particles) {
1665
+ for (const p of particles2) {
1561
1666
  p.x += p.vx;
1562
1667
  p.y += p.vy;
1563
1668
  p.pulse += p.pulseSpeed;
@@ -1566,10 +1671,10 @@ function ConstellationBackground({
1566
1671
  if (p.y < 0) p.y += height;
1567
1672
  if (p.y > height) p.y -= height;
1568
1673
  }
1569
- for (let i = 0; i < particles.length; i++) {
1570
- for (let j = i + 1; j < particles.length; j++) {
1571
- const a = particles[i];
1572
- const b = particles[j];
1674
+ for (let i = 0; i < particles2.length; i++) {
1675
+ for (let j = i + 1; j < particles2.length; j++) {
1676
+ const a = particles2[i];
1677
+ const b = particles2[j];
1573
1678
  const dx = a.x - b.x;
1574
1679
  const dy = a.y - b.y;
1575
1680
  const distSq = dx * dx + dy * dy;
@@ -1587,7 +1692,7 @@ function ConstellationBackground({
1587
1692
  }
1588
1693
  }
1589
1694
  }
1590
- for (const p of particles) {
1695
+ for (const p of particles2) {
1591
1696
  const pulseScale = 0.8 + Math.sin(p.pulse) * 0.25;
1592
1697
  const [r, g, bl] = lerpColor(p.hueShift);
1593
1698
  const glowRadius = p.radius * 5 * pulseScale;
@@ -1675,7 +1780,8 @@ var synapsePreset = {
1675
1780
  ],
1676
1781
  colors: ["#22D3EE", "#020305", "#F0FAFB"],
1677
1782
  background: /* @__PURE__ */ jsxs(Fragment$1, { children: [
1678
- /* @__PURE__ */ jsx(ConstellationBackground, {}),
1783
+ /* @__PURE__ */ jsx(ConstellationBackground, { particles: false }),
1784
+ /* @__PURE__ */ jsx(FloatingMotes, {}),
1679
1785
  /* @__PURE__ */ jsx(AmbientBloom, { intensity: 0.12 })
1680
1786
  ] }),
1681
1787
  light: {
@@ -1684,6 +1790,7 @@ var synapsePreset = {
1684
1790
  background: "#F0FAFB",
1685
1791
  surface: "transparent",
1686
1792
  surfaceHover: "rgba(8, 145, 178, 0.08)",
1793
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
1687
1794
  text: "#04141A",
1688
1795
  textDimmed: "#1A3D48",
1689
1796
  textSubtle: "#547078",
@@ -1705,12 +1812,13 @@ var synapsePreset = {
1705
1812
  dark: {
1706
1813
  primary: "#0A8A9E",
1707
1814
  primaryContrast: "#ffffff",
1708
- background: "#000000",
1815
+ background: "#111111",
1709
1816
  surface: "transparent",
1710
1817
  surfaceHover: "rgba(34, 211, 238, 0.06)",
1818
+ elevatedSurface: "rgba(18, 30, 34, 0.78)",
1711
1819
  text: "#ECFEFF",
1712
1820
  textDimmed: "#A5F3FC",
1713
- textSubtle: "#5F8A94",
1821
+ textSubtle: "#84B8C5",
1714
1822
  border: "rgba(34, 211, 238, 0.07)",
1715
1823
  error: "#F87171",
1716
1824
  warning: "#FBBF24",
@@ -1718,7 +1826,7 @@ var synapsePreset = {
1718
1826
  glassBackground: "rgba(6, 12, 16, 0.2)",
1719
1827
  glassBlur: "blur(20px) saturate(180%)",
1720
1828
  shadow: "0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -14px rgba(0, 0, 0, 0.4)",
1721
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(34, 211, 238, 0.06), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
1829
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(34, 211, 238, 0.06), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.25)",
1722
1830
  durationFast: "120ms",
1723
1831
  durationNormal: "220ms",
1724
1832
  easing: "cubic-bezier(0.22, 0, 0.1, 1)",
@@ -1775,7 +1883,8 @@ var cortexPreset = {
1775
1883
  ],
1776
1884
  colors: ["#5A78B4", "#02050E", "#F3F5FA"],
1777
1885
  background: /* @__PURE__ */ jsxs(Fragment$1, { children: [
1778
- /* @__PURE__ */ jsx(ConstellationBackground, { darkPalette: CORTEX_DARK, lightPalette: CORTEX_LIGHT }),
1886
+ /* @__PURE__ */ jsx(ConstellationBackground, { darkPalette: CORTEX_DARK, lightPalette: CORTEX_LIGHT, particles: false }),
1887
+ /* @__PURE__ */ jsx(FloatingMotes, {}),
1779
1888
  /* @__PURE__ */ jsx(AmbientBloom, { intensity: 0.12 })
1780
1889
  ] }),
1781
1890
  light: {
@@ -1784,6 +1893,7 @@ var cortexPreset = {
1784
1893
  background: "#F3F5FA",
1785
1894
  surface: "transparent",
1786
1895
  surfaceHover: "rgba(61, 96, 152, 0.07)",
1896
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
1787
1897
  text: "#04102A",
1788
1898
  textDimmed: "#1A2E5A",
1789
1899
  textSubtle: "#556B94",
@@ -1803,14 +1913,15 @@ var cortexPreset = {
1803
1913
  fontSans: '"Inter", sans-serif'
1804
1914
  },
1805
1915
  dark: {
1806
- primary: "#7898BE",
1916
+ primary: "#6282A8",
1807
1917
  primaryContrast: "#F1F5F9",
1808
1918
  background: "#000000",
1809
1919
  surface: "transparent",
1810
- surfaceHover: "rgba(120, 152, 190, 0.07)",
1920
+ surfaceHover: "rgba(98, 130, 168, 0.09)",
1921
+ elevatedSurface: "rgba(12, 18, 32, 0.82)",
1811
1922
  text: "#EBF4FF",
1812
1923
  textDimmed: "#BFD9FF",
1813
- textSubtle: "#5F7A94",
1924
+ textSubtle: "#8AAAC8",
1814
1925
  border: "rgba(148, 163, 184, 0.09)",
1815
1926
  error: "#F87171",
1816
1927
  warning: "#FBBF24",
@@ -1818,7 +1929,7 @@ var cortexPreset = {
1818
1929
  glassBackground: "rgba(10, 14, 20, 0.18)",
1819
1930
  glassBlur: "blur(15px) saturate(195%)",
1820
1931
  shadow: "0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -14px rgba(0, 0, 0, 0.4)",
1821
- cardShadow: "inset 0 1px 0 rgba(180, 200, 230, 0.03), inset 0 0 0 1px rgba(148, 163, 184, 0.03), 0 1px 2px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.4), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
1932
+ cardShadow: "inset 0 1px 0 rgba(180, 200, 230, 0.04), inset 0 0 0 1px rgba(148, 163, 184, 0.04), 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3), 0 14px 28px -10px rgba(0, 0, 0, 0.4), 0 24px 48px -18px rgba(0, 0, 0, 0.25)",
1822
1933
  durationFast: "120ms",
1823
1934
  durationNormal: "220ms",
1824
1935
  easing: "cubic-bezier(0.22, 0, 0.1, 1)",
@@ -1836,35 +1947,35 @@ var cortexPreset = {
1836
1947
  }
1837
1948
  };
1838
1949
  var HELIOS_DARK = {
1839
- bgStops: ["rgba(27, 19, 9, 1)", "rgba(14, 10, 4, 1)", "rgba(3, 2, 1, 1)"],
1840
- paletteA: [190, 150, 60],
1841
- // muted gold
1842
- paletteB: [200, 170, 80],
1843
- // soft warm gold
1844
- paletteC: [180, 120, 50],
1845
- // muted bronze-amber
1950
+ bgStops: ["rgba(14, 12, 7, 1)", "rgba(8, 7, 4, 1)", "rgba(2, 2, 1, 1)"],
1951
+ paletteA: [225, 200, 120],
1952
+ // soft neutral yellow
1953
+ paletteB: [215, 190, 130],
1954
+ // pale warm yellow
1955
+ paletteC: [205, 180, 110],
1956
+ // muted honey (not brown)
1846
1957
  lineOpacity: 0.22,
1847
1958
  haloOpacity: 0.22,
1848
1959
  coreOpacity: 0.8,
1849
1960
  compositeOp: "lighter",
1850
- coreBrightenR: 20,
1851
- coreBrightenG: 15,
1852
- coreBrightenB: 5
1961
+ coreBrightenR: 25,
1962
+ coreBrightenG: 22,
1963
+ coreBrightenB: 10
1853
1964
  };
1854
1965
  var HELIOS_LIGHT = {
1855
- bgStops: ["rgba(250, 247, 240, 1)", "rgba(242, 236, 222, 1)", "rgba(230, 220, 200, 1)"],
1856
- paletteA: [140, 95, 30],
1857
- // muted amber
1858
- paletteB: [150, 85, 30],
1859
- // muted bronze
1860
- paletteC: [120, 80, 30],
1861
- // deep warm brown
1966
+ bgStops: ["rgba(252, 250, 244, 1)", "rgba(246, 240, 228, 1)", "rgba(234, 224, 204, 1)"],
1967
+ paletteA: [175, 140, 60],
1968
+ // soft muted gold
1969
+ paletteB: [165, 130, 55],
1970
+ // dusty honey
1971
+ paletteC: [150, 120, 50],
1972
+ // muted wheat
1862
1973
  lineOpacity: 0.22,
1863
1974
  haloOpacity: 0.14,
1864
1975
  coreOpacity: 0.7,
1865
1976
  compositeOp: "source-over",
1866
- coreBrightenR: -20,
1867
- coreBrightenG: -10,
1977
+ coreBrightenR: -15,
1978
+ coreBrightenG: -8,
1868
1979
  coreBrightenB: -10
1869
1980
  };
1870
1981
  var heliosPreset = {
@@ -1873,21 +1984,23 @@ var heliosPreset = {
1873
1984
  "https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap",
1874
1985
  "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
1875
1986
  ],
1876
- colors: ["#B8963C", "#0C0702", "#FAF7F0"],
1987
+ colors: ["#D4B456", "#0A0805", "#FAF7F0"],
1877
1988
  background: /* @__PURE__ */ jsxs(Fragment$1, { children: [
1878
- /* @__PURE__ */ jsx(ConstellationBackground, { darkPalette: HELIOS_DARK, lightPalette: HELIOS_LIGHT }),
1989
+ /* @__PURE__ */ jsx(ConstellationBackground, { darkPalette: HELIOS_DARK, lightPalette: HELIOS_LIGHT, particles: false }),
1990
+ /* @__PURE__ */ jsx(FloatingMotes, {}),
1879
1991
  /* @__PURE__ */ jsx(AmbientBloom, { intensity: 0.07 })
1880
1992
  ] }),
1881
1993
  light: {
1882
- primary: "#8B6B2A",
1994
+ primary: "#A8862E",
1883
1995
  primaryContrast: "#ffffff",
1884
1996
  background: "#FAF7F0",
1885
1997
  surface: "transparent",
1886
- surfaceHover: "rgba(139, 107, 42, 0.07)",
1887
- text: "#1F1504",
1888
- textDimmed: "#4A3415",
1889
- textSubtle: "#8A7A55",
1890
- border: "rgba(31, 21, 4, 0.09)",
1998
+ surfaceHover: "rgba(168, 134, 46, 0.07)",
1999
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
2000
+ text: "#1F1A08",
2001
+ textDimmed: "#4A3E1C",
2002
+ textSubtle: "#8A8165",
2003
+ border: "rgba(31, 26, 8, 0.09)",
1891
2004
  error: "#DC2626",
1892
2005
  warning: "#F59E0B",
1893
2006
  success: "#16A34A",
@@ -1903,22 +2016,23 @@ var heliosPreset = {
1903
2016
  fontSans: '"Inter", sans-serif'
1904
2017
  },
1905
2018
  dark: {
1906
- primary: "#B8963C",
1907
- primaryContrast: "#1A0F02",
1908
- background: "#000000",
2019
+ primary: "#D4B456",
2020
+ primaryContrast: "#1A1505",
2021
+ background: "#0A0805",
1909
2022
  surface: "transparent",
1910
- surfaceHover: "rgba(184, 150, 60, 0.07)",
1911
- text: "#FFF7E6",
1912
- textDimmed: "#FCD98C",
1913
- textSubtle: "#947A55",
1914
- border: "rgba(184, 168, 140, 0.09)",
2023
+ surfaceHover: "rgba(212, 180, 86, 0.07)",
2024
+ elevatedSurface: "rgba(22, 20, 14, 0.85)",
2025
+ text: "#FFF8E1",
2026
+ textDimmed: "#E8D4A0",
2027
+ textSubtle: "#B8AC85",
2028
+ border: "rgba(216, 200, 160, 0.08)",
1915
2029
  error: "#F87171",
1916
2030
  warning: "#FBBF24",
1917
2031
  success: "#4ADE80",
1918
- glassBackground: "rgba(36, 28, 14, 0.1)",
1919
- glassBlur: "blur(14px) saturate(180%)",
2032
+ glassBackground: "rgba(28, 24, 16, 0.18)",
2033
+ glassBlur: "blur(18px) saturate(170%)",
1920
2034
  shadow: "0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -14px rgba(0, 0, 0, 0.4)",
1921
- cardShadow: "inset 0 1px 0 rgba(230, 210, 170, 0.06), inset 0 0 0 1px rgba(184, 168, 140, 0.05), 0 1px 2px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.4), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
2035
+ cardShadow: "inset 0 1px 0 rgba(240, 220, 170, 0.06), inset 0 0 0 1px rgba(216, 200, 160, 0.05), 0 1px 2px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.4), 0 24px 48px -18px rgba(0, 0, 0, 0.23)",
1922
2036
  durationFast: "120ms",
1923
2037
  durationNormal: "220ms",
1924
2038
  easing: "cubic-bezier(0.22, 0, 0.1, 1)",
@@ -1975,7 +2089,8 @@ var graphitePreset = {
1975
2089
  ],
1976
2090
  colors: ["#9CA3AF", "#08090B", "#F8F9FA"],
1977
2091
  background: /* @__PURE__ */ jsxs(Fragment$1, { children: [
1978
- /* @__PURE__ */ jsx(ConstellationBackground, { darkPalette: GRAPHITE_DARK, lightPalette: GRAPHITE_LIGHT }),
2092
+ /* @__PURE__ */ jsx(ConstellationBackground, { darkPalette: GRAPHITE_DARK, lightPalette: GRAPHITE_LIGHT, particles: false }),
2093
+ /* @__PURE__ */ jsx(FloatingMotes, {}),
1979
2094
  /* @__PURE__ */ jsx(AmbientBloom, { intensity: 0.1 })
1980
2095
  ] }),
1981
2096
  light: {
@@ -1984,6 +2099,7 @@ var graphitePreset = {
1984
2099
  background: "#F8F9FA",
1985
2100
  surface: "transparent",
1986
2101
  surfaceHover: "rgba(75, 85, 99, 0.08)",
2102
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
1987
2103
  text: "#0F1214",
1988
2104
  textDimmed: "#2E3338",
1989
2105
  textSubtle: "#6B7280",
@@ -2008,9 +2124,10 @@ var graphitePreset = {
2008
2124
  background: "#000000",
2009
2125
  surface: "transparent",
2010
2126
  surfaceHover: "rgba(156, 163, 175, 0.08)",
2127
+ elevatedSurface: "rgba(14, 15, 16, 0.85)",
2011
2128
  text: "#F3F4F6",
2012
2129
  textDimmed: "#D1D5DB",
2013
- textSubtle: "#6B7280",
2130
+ textSubtle: "#949BA6",
2014
2131
  border: "rgba(156, 163, 175, 0.07)",
2015
2132
  error: "#F87171",
2016
2133
  warning: "#FBBF24",
@@ -2018,7 +2135,7 @@ var graphitePreset = {
2018
2135
  glassBackground: "rgba(26, 30, 36, 0.2)",
2019
2136
  glassBlur: "blur(16px) saturate(180%)",
2020
2137
  shadow: "0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -14px rgba(0, 0, 0, 0.4)",
2021
- cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(156, 163, 175, 0.08), 0 1px 2px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.35)",
2138
+ cardShadow: "inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(156, 163, 175, 0.08), 0 1px 2px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.35), 0 14px 28px -10px rgba(0, 0, 0, 0.45), 0 24px 48px -18px rgba(0, 0, 0, 0.25)",
2022
2139
  durationFast: "120ms",
2023
2140
  durationNormal: "220ms",
2024
2141
  easing: "cubic-bezier(0.22, 0, 0.1, 1)",
@@ -2052,6 +2169,7 @@ var quarryPreset = {
2052
2169
  background: "#F1F3F5",
2053
2170
  surface: "transparent",
2054
2171
  surfaceHover: "rgba(99, 105, 114, 0.08)",
2172
+ elevatedSurface: "rgba(255, 255, 255, 0.85)",
2055
2173
  text: "#15181C",
2056
2174
  textDimmed: "#353A42",
2057
2175
  textSubtle: "#686E78",
@@ -2071,22 +2189,23 @@ var quarryPreset = {
2071
2189
  fontSans: '"Lato", sans-serif'
2072
2190
  },
2073
2191
  dark: {
2074
- primary: "#A5ACB5",
2192
+ primary: "#8B939D",
2075
2193
  primaryContrast: "#101215",
2076
2194
  background: "#07080A",
2077
2195
  surface: "transparent",
2078
- surfaceHover: "rgba(165, 172, 181, 0.08)",
2196
+ surfaceHover: "rgba(139, 147, 157, 0.08)",
2197
+ elevatedSurface: "rgba(18, 20, 23, 0.85)",
2079
2198
  text: "#E8EBEF",
2080
2199
  textDimmed: "#B4B9C1",
2081
- textSubtle: "#7A8089",
2082
- border: "rgba(165, 172, 181, 0.09)",
2200
+ textSubtle: "#9298A3",
2201
+ border: "rgba(139, 147, 157, 0.09)",
2083
2202
  error: "#EF5350",
2084
2203
  warning: "#FF8A65",
2085
2204
  success: "#8EA99A",
2086
2205
  glassBackground: "rgba(22, 25, 30, 0.36)",
2087
2206
  glassBlur: "blur(18px) saturate(160%)",
2088
2207
  shadow: "0px 1px 2px rgba(0, 0, 0, 0.5), 0px 12px 32px -8px rgba(0, 0, 0, 0.6)",
2089
- cardShadow: "inset 0 1px 0 rgba(165, 172, 181, 0.06), inset 0 0 0 1px rgba(165, 172, 181, 0.03), 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)",
2208
+ cardShadow: "inset 0 1px 0 rgba(139, 147, 157, 0.06), inset 0 0 0 1px rgba(139, 147, 157, 0.03), 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.25)",
2090
2209
  durationFast: "150ms",
2091
2210
  durationNormal: "280ms",
2092
2211
  easing: "cubic-bezier(0.4, 0, 0.2, 1)",
@@ -2263,6 +2382,7 @@ var TOKEN_VAR_MAP = {
2263
2382
  background: "--color-background",
2264
2383
  surface: "--color-surface",
2265
2384
  surfaceHover: "--color-surface-hover",
2385
+ elevatedSurface: "--color-elevated",
2266
2386
  text: "--color-text",
2267
2387
  textDimmed: "--color-text-dimmed",
2268
2388
  textSubtle: "--color-text-subtle",
@@ -2435,8 +2555,8 @@ var componentThemes = {
2435
2555
  Modal: Modal.extend({
2436
2556
  styles: {
2437
2557
  content: {
2438
- backgroundColor: "var(--color-surface)",
2439
- border: "1px solid var(--color-border)"
2558
+ backgroundColor: "var(--color-elevated, var(--color-background))",
2559
+ ...glassBase
2440
2560
  }
2441
2561
  }
2442
2562
  }),