@jarllyng/nostromo 3.3.1 → 3.5.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 (47) hide show
  1. package/dist/animations.css +144 -0
  2. package/dist/chunk-3FY7LZ3B.js +3 -0
  3. package/dist/chunk-3FY7LZ3B.js.map +1 -0
  4. package/dist/chunk-3HKYX26O.cjs +3 -0
  5. package/dist/chunk-3HKYX26O.cjs.map +1 -0
  6. package/dist/chunk-CCNO2VWE.js +3 -0
  7. package/dist/chunk-CCNO2VWE.js.map +1 -0
  8. package/dist/chunk-E53C3RDD.cjs +3 -0
  9. package/dist/chunk-E53C3RDD.cjs.map +1 -0
  10. package/dist/chunk-EEGXD4HC.cjs +3 -0
  11. package/dist/chunk-EEGXD4HC.cjs.map +1 -0
  12. package/dist/chunk-ESUSGG6O.js +3 -0
  13. package/dist/chunk-ESUSGG6O.js.map +1 -0
  14. package/dist/components/core/chart-composable.cjs +3 -0
  15. package/dist/components/core/chart-composable.cjs.map +1 -0
  16. package/dist/components/core/chart-composable.d.cts +110 -0
  17. package/dist/components/core/chart-composable.d.ts +110 -0
  18. package/dist/components/core/chart-composable.js +3 -0
  19. package/dist/components/core/chart-composable.js.map +1 -0
  20. package/dist/components/core/collapsible.cjs +3 -0
  21. package/dist/components/core/collapsible.cjs.map +1 -0
  22. package/dist/components/core/collapsible.d.cts +17 -0
  23. package/dist/components/core/collapsible.d.ts +17 -0
  24. package/dist/components/core/collapsible.js +3 -0
  25. package/dist/components/core/collapsible.js.map +1 -0
  26. package/dist/components/core/popover.cjs +3 -0
  27. package/dist/components/core/popover.cjs.map +1 -0
  28. package/dist/components/core/popover.d.cts +39 -0
  29. package/dist/components/core/popover.d.ts +39 -0
  30. package/dist/components/core/popover.js +3 -0
  31. package/dist/components/core/popover.js.map +1 -0
  32. package/dist/components/marketing/gallery.d.cts +1 -1
  33. package/dist/components/marketing/gallery.d.ts +1 -1
  34. package/dist/index.cjs +1 -1
  35. package/dist/index.cjs.map +1 -1
  36. package/dist/index.css +1 -1
  37. package/dist/index.css.map +1 -1
  38. package/dist/index.d.cts +6 -0
  39. package/dist/index.d.ts +6 -0
  40. package/dist/index.js +1 -1
  41. package/dist/index.js.map +1 -1
  42. package/dist/tailwind.css +4 -0
  43. package/dist/themes/lv-426.css +6 -0
  44. package/dist/themes/mother.css +6 -0
  45. package/dist/themes/nostromo.css +6 -0
  46. package/dist/themes/sulaco.css +6 -0
  47. package/package.json +31 -5
@@ -0,0 +1,3 @@
1
+ "use client";
2
+ 'use strict';var chunkE53C3RDD_cjs=require('../../chunk-E53C3RDD.cjs');require('../../chunk-ITRGJNWL.cjs');Object.defineProperty(exports,"Popover",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.b}});Object.defineProperty(exports,"PopoverAnchor",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.d}});Object.defineProperty(exports,"PopoverArrow",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.g}});Object.defineProperty(exports,"PopoverClose",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.e}});Object.defineProperty(exports,"PopoverContent",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.f}});Object.defineProperty(exports,"PopoverTrigger",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.c}});Object.defineProperty(exports,"popoverContentVariants",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.a}});//# sourceMappingURL=popover.cjs.map
3
+ //# sourceMappingURL=popover.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"popover.cjs"}
@@ -0,0 +1,39 @@
1
+ import * as class_variance_authority_types from 'class-variance-authority/types';
2
+ import * as React from 'react';
3
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
4
+ import { VariantProps } from 'class-variance-authority';
5
+
6
+ /**
7
+ * `@radix-ui/react-popover` was already a dependency - Calendar mounts its month
8
+ * grid in one - but it was never exposed, so a consumer wanting a popover had to
9
+ * add the package a second time and theme it themselves.
10
+ */
11
+ declare const popoverContentVariants: (props?: ({
12
+ size?: "default" | "sm" | "lg" | "auto" | null | undefined;
13
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
14
+ declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
15
+ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
16
+ declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
17
+ declare const PopoverClose: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverCloseProps & React.RefAttributes<HTMLButtonElement>>;
18
+ type PopoverContentBase = Omit<React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>, "aria-label" | "aria-labelledby"> & VariantProps<typeof popoverContentVariants>;
19
+ /**
20
+ * An accessible name is required, not optional.
21
+ *
22
+ * Radix gives the content `role="dialog"`, and a dialog without a name is an
23
+ * `aria-dialog-name` violation - axe flags it, and a screen reader announces
24
+ * "dialog" and nothing else. It is not something a default can solve, because a
25
+ * generic "Popover" label is worse than useless. So the type asks for one of the
26
+ * two ways to supply it, which turns a runtime audit finding into a compile
27
+ * error.
28
+ */
29
+ type PopoverContentProps = PopoverContentBase & ({
30
+ "aria-label": string;
31
+ "aria-labelledby"?: never;
32
+ } | {
33
+ "aria-labelledby": string;
34
+ "aria-label"?: never;
35
+ });
36
+ declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>;
37
+ declare const PopoverArrow: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverArrowProps & React.RefAttributes<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
+
39
+ export { Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, type PopoverContentProps, PopoverTrigger, popoverContentVariants };
@@ -0,0 +1,39 @@
1
+ import * as class_variance_authority_types from 'class-variance-authority/types';
2
+ import * as React from 'react';
3
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
4
+ import { VariantProps } from 'class-variance-authority';
5
+
6
+ /**
7
+ * `@radix-ui/react-popover` was already a dependency - Calendar mounts its month
8
+ * grid in one - but it was never exposed, so a consumer wanting a popover had to
9
+ * add the package a second time and theme it themselves.
10
+ */
11
+ declare const popoverContentVariants: (props?: ({
12
+ size?: "default" | "sm" | "lg" | "auto" | null | undefined;
13
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
14
+ declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
15
+ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
16
+ declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
17
+ declare const PopoverClose: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverCloseProps & React.RefAttributes<HTMLButtonElement>>;
18
+ type PopoverContentBase = Omit<React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>, "aria-label" | "aria-labelledby"> & VariantProps<typeof popoverContentVariants>;
19
+ /**
20
+ * An accessible name is required, not optional.
21
+ *
22
+ * Radix gives the content `role="dialog"`, and a dialog without a name is an
23
+ * `aria-dialog-name` violation - axe flags it, and a screen reader announces
24
+ * "dialog" and nothing else. It is not something a default can solve, because a
25
+ * generic "Popover" label is worse than useless. So the type asks for one of the
26
+ * two ways to supply it, which turns a runtime audit finding into a compile
27
+ * error.
28
+ */
29
+ type PopoverContentProps = PopoverContentBase & ({
30
+ "aria-label": string;
31
+ "aria-labelledby"?: never;
32
+ } | {
33
+ "aria-labelledby": string;
34
+ "aria-label"?: never;
35
+ });
36
+ declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>;
37
+ declare const PopoverArrow: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverArrowProps & React.RefAttributes<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
+
39
+ export { Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, type PopoverContentProps, PopoverTrigger, popoverContentVariants };
@@ -0,0 +1,3 @@
1
+ "use client";
2
+ export{b as Popover,d as PopoverAnchor,g as PopoverArrow,e as PopoverClose,f as PopoverContent,c as PopoverTrigger,a as popoverContentVariants}from'../../chunk-3FY7LZ3B.js';import'../../chunk-AC2JBXHQ.js';//# sourceMappingURL=popover.js.map
3
+ //# sourceMappingURL=popover.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"popover.js"}
@@ -11,7 +11,7 @@ declare const galleryItemVariants: (props?: ({
11
11
  hover?: "none" | "scale" | "zoom" | "lift" | null | undefined;
12
12
  } & class_variance_authority_types.ClassProp) | undefined) => string;
13
13
  declare const lightboxVariants: (props?: ({
14
- animation?: "slide" | "fade" | "zoom" | null | undefined;
14
+ animation?: "slide" | "zoom" | "fade" | null | undefined;
15
15
  } & class_variance_authority_types.ClassProp) | undefined) => string;
16
16
  interface GalleryImage {
17
17
  id: string;
@@ -11,7 +11,7 @@ declare const galleryItemVariants: (props?: ({
11
11
  hover?: "none" | "scale" | "zoom" | "lift" | null | undefined;
12
12
  } & class_variance_authority_types.ClassProp) | undefined) => string;
13
13
  declare const lightboxVariants: (props?: ({
14
- animation?: "slide" | "fade" | "zoom" | null | undefined;
14
+ animation?: "slide" | "zoom" | "fade" | null | undefined;
15
15
  } & class_variance_authority_types.ClassProp) | undefined) => string;
16
16
  interface GalleryImage {
17
17
  id: string;
package/dist/index.cjs CHANGED
@@ -1,3 +1,3 @@
1
1
  "use client";
2
- 'use strict';var chunk5Z3MYAVM_cjs=require('./chunk-5Z3MYAVM.cjs'),chunkZ7WEJ5IQ_cjs=require('./chunk-Z7WEJ5IQ.cjs'),chunkJ4VRJVTO_cjs=require('./chunk-J4VRJVTO.cjs'),chunk7PPAI3MM_cjs=require('./chunk-7PPAI3MM.cjs'),chunk2DNQXAMB_cjs=require('./chunk-2DNQXAMB.cjs'),chunk3V3OIZWQ_cjs=require('./chunk-3V3OIZWQ.cjs'),chunkOEN63W3G_cjs=require('./chunk-OEN63W3G.cjs'),chunkJUOCEYUF_cjs=require('./chunk-JUOCEYUF.cjs'),chunkMLJZU63I_cjs=require('./chunk-MLJZU63I.cjs'),chunkK2JCGDU7_cjs=require('./chunk-K2JCGDU7.cjs'),chunkC7HZAQBX_cjs=require('./chunk-C7HZAQBX.cjs'),chunkEVRQYWZ3_cjs=require('./chunk-EVRQYWZ3.cjs'),chunkHWZTMVQV_cjs=require('./chunk-HWZTMVQV.cjs'),chunkV45EOCAD_cjs=require('./chunk-V45EOCAD.cjs'),chunkV77N662N_cjs=require('./chunk-V77N662N.cjs'),chunk7YFUAGIW_cjs=require('./chunk-7YFUAGIW.cjs'),chunkNC27D5Y3_cjs=require('./chunk-NC27D5Y3.cjs'),chunkXPIBRXTW_cjs=require('./chunk-XPIBRXTW.cjs'),chunkBYV75TDY_cjs=require('./chunk-BYV75TDY.cjs'),chunkG35BR7SK_cjs=require('./chunk-G35BR7SK.cjs'),chunkJCETHQ55_cjs=require('./chunk-JCETHQ55.cjs'),chunk5PVFLXPO_cjs=require('./chunk-5PVFLXPO.cjs'),chunkPMNNV4ML_cjs=require('./chunk-PMNNV4ML.cjs'),chunkBZ5ZCZJX_cjs=require('./chunk-BZ5ZCZJX.cjs'),chunk3QVQ2TNE_cjs=require('./chunk-3QVQ2TNE.cjs'),chunkWK6LNC2E_cjs=require('./chunk-WK6LNC2E.cjs'),chunkNPSIDFOF_cjs=require('./chunk-NPSIDFOF.cjs'),chunkAYEM2M4H_cjs=require('./chunk-AYEM2M4H.cjs'),chunkVNDL67OG_cjs=require('./chunk-VNDL67OG.cjs'),chunkFUENXWR7_cjs=require('./chunk-FUENXWR7.cjs'),chunkNBX6FKCA_cjs=require('./chunk-NBX6FKCA.cjs'),chunk55N2IT62_cjs=require('./chunk-55N2IT62.cjs'),chunk4FSJEW7W_cjs=require('./chunk-4FSJEW7W.cjs'),chunk7WEIVLG3_cjs=require('./chunk-7WEIVLG3.cjs'),chunkMLSE5XSB_cjs=require('./chunk-MLSE5XSB.cjs'),chunkLXQT7FH6_cjs=require('./chunk-LXQT7FH6.cjs'),chunkIOX4WPJL_cjs=require('./chunk-IOX4WPJL.cjs'),chunkEFCNLYYW_cjs=require('./chunk-EFCNLYYW.cjs');require('./chunk-7SPPGTBT.cjs');var chunk35RWQSO2_cjs=require('./chunk-35RWQSO2.cjs'),chunkITRGJNWL_cjs=require('./chunk-ITRGJNWL.cjs');var rt={nostromo:"nostromo",mother:"mother","lv-426":"lv-426",sulaco:"sulaco"};function jr(o){typeof document<"u"&&document.documentElement.setAttribute("data-theme",o);}function Yr(){return typeof document>"u"?null:document.documentElement.getAttribute("data-theme")}function tt(){if(typeof document>"u")return;let r=document.documentElement.getAttribute("data-color-scheme")==="dark"?"light":"dark";document.documentElement.setAttribute("data-color-scheme",r);}function Zr(o){typeof document>"u"||document.documentElement.setAttribute("data-color-scheme",o?"dark":"light");}function Qr(){return typeof document>"u"?null:document.documentElement.getAttribute("data-color-scheme")}function Jr(){return typeof window>"u"?false:window.matchMedia("(prefers-color-scheme: dark)").matches}function nt(o){if(typeof window>"u")return ()=>{};let r=window.matchMedia("(prefers-color-scheme: dark)"),t=e=>{o(e.matches);};return r.addEventListener("change",t),()=>{r.removeEventListener("change",t);}}function et(o="nostromo"){typeof document>"u"||(Yr()||jr(o),Qr()||Zr(Jr()));}var bt={nostromo:{name:"Nostromo",description:"Classic space industrial theme inspired by the USCSS Nostromo",colors:{primary:"Purple/Blue",secondary:"Dark Gray",accent:"Green"}},mother:{name:"Mother",description:"Cold, clinical AI aesthetic inspired by the ship's computer",colors:{primary:"Cold Blue/Cyan",secondary:"Clinical White",accent:"Green"}},"lv-426":{name:"LV-426",description:"Warm, rusty atmosphere inspired by the planet LV-426",colors:{primary:"Warm Orange/Rust",secondary:"Earth Tones",accent:"Green"}},sulaco:{name:"Sulaco",description:"Modern, military-inspired aesthetic from the USS Sulaco",colors:{primary:"Military Blue/Gray",secondary:"Steel Tones",accent:"Green"}}};Object.defineProperty(exports,"Toast",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.e}});Object.defineProperty(exports,"ToastProvider",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.d}});Object.defineProperty(exports,"toastIconVariants",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.b}});Object.defineProperty(exports,"toastVariants",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.a}});Object.defineProperty(exports,"useToast",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.c}});Object.defineProperty(exports,"useToastNotification",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.f}});Object.defineProperty(exports,"Tooltip",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.f}});Object.defineProperty(exports,"TooltipContent",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.d}});Object.defineProperty(exports,"TooltipProvider",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.e}});Object.defineProperty(exports,"TooltipTrigger",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.c}});Object.defineProperty(exports,"arrowVariants",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.b}});Object.defineProperty(exports,"tooltipVariants",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.a}});Object.defineProperty(exports,"Features",{enumerable:true,get:function(){return chunkJ4VRJVTO_cjs.a}});Object.defineProperty(exports,"Gallery",{enumerable:true,get:function(){return chunk7PPAI3MM_cjs.a}});Object.defineProperty(exports,"Hero",{enumerable:true,get:function(){return chunk2DNQXAMB_cjs.a}});Object.defineProperty(exports,"LogoWall",{enumerable:true,get:function(){return chunk3V3OIZWQ_cjs.a}});Object.defineProperty(exports,"Pricing",{enumerable:true,get:function(){return chunkOEN63W3G_cjs.a}});Object.defineProperty(exports,"Testimonials",{enumerable:true,get:function(){return chunkJUOCEYUF_cjs.a}});Object.defineProperty(exports,"RadioGroup",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.c}});Object.defineProperty(exports,"RadioGroupItem",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.d}});Object.defineProperty(exports,"RadioItem",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.d}});Object.defineProperty(exports,"radioGroupVariants",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.a}});Object.defineProperty(exports,"radioItemVariants",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.b}});Object.defineProperty(exports,"Select",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.d}});Object.defineProperty(exports,"SelectContent",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.h}});Object.defineProperty(exports,"SelectGroup",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.e}});Object.defineProperty(exports,"SelectItem",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.j}});Object.defineProperty(exports,"SelectLabel",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.i}});Object.defineProperty(exports,"SelectSeparator",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.k}});Object.defineProperty(exports,"SelectTrigger",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.g}});Object.defineProperty(exports,"SelectValue",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.f}});Object.defineProperty(exports,"selectContentVariants",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.b}});Object.defineProperty(exports,"selectItemVariants",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.c}});Object.defineProperty(exports,"selectTriggerVariants",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.a}});Object.defineProperty(exports,"Separator",{enumerable:true,get:function(){return chunkC7HZAQBX_cjs.b}});Object.defineProperty(exports,"separatorVariants",{enumerable:true,get:function(){return chunkC7HZAQBX_cjs.a}});Object.defineProperty(exports,"Switch",{enumerable:true,get:function(){return chunkEVRQYWZ3_cjs.c}});Object.defineProperty(exports,"switchThumbVariants",{enumerable:true,get:function(){return chunkEVRQYWZ3_cjs.b}});Object.defineProperty(exports,"switchVariants",{enumerable:true,get:function(){return chunkEVRQYWZ3_cjs.a}});Object.defineProperty(exports,"Tabs",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.d}});Object.defineProperty(exports,"TabsContent",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.g}});Object.defineProperty(exports,"TabsList",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.e}});Object.defineProperty(exports,"TabsTrigger",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.f}});Object.defineProperty(exports,"tabsContentVariants",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.c}});Object.defineProperty(exports,"tabsListVariants",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.a}});Object.defineProperty(exports,"tabsTriggerVariants",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.b}});Object.defineProperty(exports,"Textarea",{enumerable:true,get:function(){return chunkV45EOCAD_cjs.b}});Object.defineProperty(exports,"textareaVariants",{enumerable:true,get:function(){return chunkV45EOCAD_cjs.a}});Object.defineProperty(exports,"ErrorMessage",{enumerable:true,get:function(){return chunkV77N662N_cjs.b}});Object.defineProperty(exports,"errorMessageVariants",{enumerable:true,get:function(){return chunkV77N662N_cjs.a}});Object.defineProperty(exports,"HelperText",{enumerable:true,get:function(){return chunk7YFUAGIW_cjs.b}});Object.defineProperty(exports,"helperTextVariants",{enumerable:true,get:function(){return chunk7YFUAGIW_cjs.a}});Object.defineProperty(exports,"Icon",{enumerable:true,get:function(){return chunkNC27D5Y3_cjs.a}});Object.defineProperty(exports,"iconNames",{enumerable:true,get:function(){return chunkNC27D5Y3_cjs.b}});Object.defineProperty(exports,"Label",{enumerable:true,get:function(){return chunkXPIBRXTW_cjs.b}});Object.defineProperty(exports,"labelVariants",{enumerable:true,get:function(){return chunkXPIBRXTW_cjs.a}});Object.defineProperty(exports,"Pagination",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.c}});Object.defineProperty(exports,"PaginationContent",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.d}});Object.defineProperty(exports,"PaginationEllipsis",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.i}});Object.defineProperty(exports,"PaginationItem",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.e}});Object.defineProperty(exports,"PaginationLink",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.f}});Object.defineProperty(exports,"PaginationNext",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.h}});Object.defineProperty(exports,"PaginationPrevious",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.g}});Object.defineProperty(exports,"paginationItemVariants",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.b}});Object.defineProperty(exports,"paginationVariants",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.a}});Object.defineProperty(exports,"CircularProgress",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.e}});Object.defineProperty(exports,"Progress",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.d}});Object.defineProperty(exports,"progressBarVariants",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.b}});Object.defineProperty(exports,"progressLabelVariants",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.c}});Object.defineProperty(exports,"progressVariants",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.a}});Object.defineProperty(exports,"Calendar",{enumerable:true,get:function(){return chunkJCETHQ55_cjs.c}});Object.defineProperty(exports,"calendarDayVariants",{enumerable:true,get:function(){return chunkJCETHQ55_cjs.b}});Object.defineProperty(exports,"calendarVariants",{enumerable:true,get:function(){return chunkJCETHQ55_cjs.a}});Object.defineProperty(exports,"Button",{enumerable:true,get:function(){return chunk5PVFLXPO_cjs.b}});Object.defineProperty(exports,"buttonVariants",{enumerable:true,get:function(){return chunk5PVFLXPO_cjs.a}});Object.defineProperty(exports,"Card",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.g}});Object.defineProperty(exports,"CardContent",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.e}});Object.defineProperty(exports,"CardDescription",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.d}});Object.defineProperty(exports,"CardFooter",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.f}});Object.defineProperty(exports,"CardHeader",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.b}});Object.defineProperty(exports,"CardTitle",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.c}});Object.defineProperty(exports,"LazyChart",{enumerable:true,get:function(){return chunkBZ5ZCZJX_cjs.a}});Object.defineProperty(exports,"Skeleton",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.b}});Object.defineProperty(exports,"SkeletonAvatar",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.d}});Object.defineProperty(exports,"SkeletonButton",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.e}});Object.defineProperty(exports,"SkeletonCard",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.f}});Object.defineProperty(exports,"SkeletonList",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.h}});Object.defineProperty(exports,"SkeletonTable",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.g}});Object.defineProperty(exports,"SkeletonText",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.c}});Object.defineProperty(exports,"skeletonVariants",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.a}});Object.defineProperty(exports,"Chart",{enumerable:true,get:function(){return chunkWK6LNC2E_cjs.b}});Object.defineProperty(exports,"chartContainerVariants",{enumerable:true,get:function(){return chunkWK6LNC2E_cjs.a}});Object.defineProperty(exports,"Checkbox",{enumerable:true,get:function(){return chunkNPSIDFOF_cjs.b}});Object.defineProperty(exports,"checkboxVariants",{enumerable:true,get:function(){return chunkNPSIDFOF_cjs.a}});Object.defineProperty(exports,"DataTable",{enumerable:true,get:function(){return chunkAYEM2M4H_cjs.a}});Object.defineProperty(exports,"Table",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.d}});Object.defineProperty(exports,"TableBody",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.f}});Object.defineProperty(exports,"TableCell",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.h}});Object.defineProperty(exports,"TableHead",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.i}});Object.defineProperty(exports,"TableHeader",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.e}});Object.defineProperty(exports,"TableRow",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.g}});Object.defineProperty(exports,"tableCellVariants",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.c}});Object.defineProperty(exports,"tableHeaderVariants",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.b}});Object.defineProperty(exports,"tableVariants",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.a}});Object.defineProperty(exports,"Input",{enumerable:true,get:function(){return chunkFUENXWR7_cjs.b}});Object.defineProperty(exports,"Dialog",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.c}});Object.defineProperty(exports,"DialogContent",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.e}});Object.defineProperty(exports,"DialogDescription",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.h}});Object.defineProperty(exports,"DialogHeader",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.f}});Object.defineProperty(exports,"DialogTitle",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.g}});Object.defineProperty(exports,"DialogTrigger",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.d}});Object.defineProperty(exports,"LazyComponent",{enumerable:true,get:function(){return chunk55N2IT62_cjs.a}});Object.defineProperty(exports,"LazyInView",{enumerable:true,get:function(){return chunk55N2IT62_cjs.d}});Object.defineProperty(exports,"useLazyLoading",{enumerable:true,get:function(){return chunk55N2IT62_cjs.c}});Object.defineProperty(exports,"withLazyLoading",{enumerable:true,get:function(){return chunk55N2IT62_cjs.b}});Object.defineProperty(exports,"ErrorBoundary",{enumerable:true,get:function(){return chunk4FSJEW7W_cjs.a}});Object.defineProperty(exports,"useErrorHandler",{enumerable:true,get:function(){return chunk4FSJEW7W_cjs.b}});Object.defineProperty(exports,"performanceUtils",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.d}});Object.defineProperty(exports,"useMemoryMonitor",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.c}});Object.defineProperty(exports,"usePerformanceMonitor",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.a}});Object.defineProperty(exports,"withPerformanceMonitoring",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.b}});Object.defineProperty(exports,"Accordion",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.f}});Object.defineProperty(exports,"AccordionContent",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.i}});Object.defineProperty(exports,"AccordionItem",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.g}});Object.defineProperty(exports,"AccordionTrigger",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.h}});Object.defineProperty(exports,"accordionChevronVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.e}});Object.defineProperty(exports,"accordionContentVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.d}});Object.defineProperty(exports,"accordionItemVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.b}});Object.defineProperty(exports,"accordionTriggerVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.c}});Object.defineProperty(exports,"accordionVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.a}});Object.defineProperty(exports,"Alert",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.g}});Object.defineProperty(exports,"AlertDescription",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.f}});Object.defineProperty(exports,"AlertTitle",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.e}});Object.defineProperty(exports,"alertCloseVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.d}});Object.defineProperty(exports,"alertDescriptionVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.c}});Object.defineProperty(exports,"alertTitleVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.b}});Object.defineProperty(exports,"alertVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.a}});Object.defineProperty(exports,"Avatar",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.d}});Object.defineProperty(exports,"AvatarFallback",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.c}});Object.defineProperty(exports,"AvatarImage",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.b}});Object.defineProperty(exports,"avatarVariants",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.a}});Object.defineProperty(exports,"Badge",{enumerable:true,get:function(){return chunkEFCNLYYW_cjs.b}});Object.defineProperty(exports,"badgeVariants",{enumerable:true,get:function(){return chunkEFCNLYYW_cjs.a}});Object.defineProperty(exports,"Breadcrumb",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.d}});Object.defineProperty(exports,"BreadcrumbEllipsis",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.j}});Object.defineProperty(exports,"BreadcrumbItem",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.f}});Object.defineProperty(exports,"BreadcrumbLink",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.g}});Object.defineProperty(exports,"BreadcrumbList",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.e}});Object.defineProperty(exports,"BreadcrumbPage",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.h}});Object.defineProperty(exports,"BreadcrumbSeparator",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.i}});Object.defineProperty(exports,"breadcrumbItemVariants",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.b}});Object.defineProperty(exports,"breadcrumbSeparatorVariants",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.c}});Object.defineProperty(exports,"breadcrumbVariants",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.a}});Object.defineProperty(exports,"cn",{enumerable:true,get:function(){return chunkITRGJNWL_cjs.a}});exports.applyTheme=jr;exports.getColorScheme=Qr;exports.getCurrentTheme=Yr;exports.initializeTheme=et;exports.onSystemColorSchemeChange=nt;exports.prefersDarkMode=Jr;exports.setDarkMode=Zr;exports.themeInfo=bt;exports.themes=rt;exports.toggleDarkMode=tt;//# sourceMappingURL=index.cjs.map
2
+ 'use strict';var chunk3V3OIZWQ_cjs=require('./chunk-3V3OIZWQ.cjs'),chunkOEN63W3G_cjs=require('./chunk-OEN63W3G.cjs'),chunkJUOCEYUF_cjs=require('./chunk-JUOCEYUF.cjs'),chunkHWZTMVQV_cjs=require('./chunk-HWZTMVQV.cjs'),chunkV45EOCAD_cjs=require('./chunk-V45EOCAD.cjs'),chunk5Z3MYAVM_cjs=require('./chunk-5Z3MYAVM.cjs'),chunkZ7WEJ5IQ_cjs=require('./chunk-Z7WEJ5IQ.cjs'),chunkJ4VRJVTO_cjs=require('./chunk-J4VRJVTO.cjs'),chunk7PPAI3MM_cjs=require('./chunk-7PPAI3MM.cjs'),chunk2DNQXAMB_cjs=require('./chunk-2DNQXAMB.cjs'),chunkBYV75TDY_cjs=require('./chunk-BYV75TDY.cjs'),chunkE53C3RDD_cjs=require('./chunk-E53C3RDD.cjs'),chunkG35BR7SK_cjs=require('./chunk-G35BR7SK.cjs'),chunkMLJZU63I_cjs=require('./chunk-MLJZU63I.cjs'),chunkK2JCGDU7_cjs=require('./chunk-K2JCGDU7.cjs'),chunkC7HZAQBX_cjs=require('./chunk-C7HZAQBX.cjs'),chunkEVRQYWZ3_cjs=require('./chunk-EVRQYWZ3.cjs'),chunkAYEM2M4H_cjs=require('./chunk-AYEM2M4H.cjs'),chunkVNDL67OG_cjs=require('./chunk-VNDL67OG.cjs'),chunkNBX6FKCA_cjs=require('./chunk-NBX6FKCA.cjs'),chunkV77N662N_cjs=require('./chunk-V77N662N.cjs'),chunk7YFUAGIW_cjs=require('./chunk-7YFUAGIW.cjs'),chunkNC27D5Y3_cjs=require('./chunk-NC27D5Y3.cjs'),chunkFUENXWR7_cjs=require('./chunk-FUENXWR7.cjs'),chunkXPIBRXTW_cjs=require('./chunk-XPIBRXTW.cjs'),chunkJCETHQ55_cjs=require('./chunk-JCETHQ55.cjs'),chunk5PVFLXPO_cjs=require('./chunk-5PVFLXPO.cjs'),chunkPMNNV4ML_cjs=require('./chunk-PMNNV4ML.cjs'),chunk3HKYX26O_cjs=require('./chunk-3HKYX26O.cjs'),chunkBZ5ZCZJX_cjs=require('./chunk-BZ5ZCZJX.cjs'),chunk3QVQ2TNE_cjs=require('./chunk-3QVQ2TNE.cjs'),chunkWK6LNC2E_cjs=require('./chunk-WK6LNC2E.cjs'),chunkNPSIDFOF_cjs=require('./chunk-NPSIDFOF.cjs'),chunkEEGXD4HC_cjs=require('./chunk-EEGXD4HC.cjs'),chunk55N2IT62_cjs=require('./chunk-55N2IT62.cjs'),chunk4FSJEW7W_cjs=require('./chunk-4FSJEW7W.cjs'),chunk7WEIVLG3_cjs=require('./chunk-7WEIVLG3.cjs'),chunkMLSE5XSB_cjs=require('./chunk-MLSE5XSB.cjs'),chunkLXQT7FH6_cjs=require('./chunk-LXQT7FH6.cjs'),chunkIOX4WPJL_cjs=require('./chunk-IOX4WPJL.cjs'),chunkEFCNLYYW_cjs=require('./chunk-EFCNLYYW.cjs');require('./chunk-7SPPGTBT.cjs');var chunk35RWQSO2_cjs=require('./chunk-35RWQSO2.cjs'),chunkITRGJNWL_cjs=require('./chunk-ITRGJNWL.cjs');var St={nostromo:"nostromo",mother:"mother","lv-426":"lv-426",sulaco:"sulaco"};function pt(o){typeof document<"u"&&document.documentElement.setAttribute("data-theme",o);}function gt(){return typeof document>"u"?null:document.documentElement.getAttribute("data-theme")}function Pt(){if(typeof document>"u")return;let r=document.documentElement.getAttribute("data-color-scheme")==="dark"?"light":"dark";document.documentElement.setAttribute("data-color-scheme",r);}function ft(o){typeof document>"u"||document.documentElement.setAttribute("data-color-scheme",o?"dark":"light");}function ht(){return typeof document>"u"?null:document.documentElement.getAttribute("data-color-scheme")}function xt(){return typeof window>"u"?false:window.matchMedia("(prefers-color-scheme: dark)").matches}function Tt(o){if(typeof window>"u")return ()=>{};let r=window.matchMedia("(prefers-color-scheme: dark)"),t=e=>{o(e.matches);};return r.addEventListener("change",t),()=>{r.removeEventListener("change",t);}}function It(o="nostromo"){typeof document>"u"||(gt()||pt(o),ht()||ft(xt()));}var Ut={nostromo:{name:"Nostromo",description:"Classic space industrial theme inspired by the USCSS Nostromo",colors:{primary:"Purple/Blue",secondary:"Dark Gray",accent:"Green"}},mother:{name:"Mother",description:"Cold, clinical AI aesthetic inspired by the ship's computer",colors:{primary:"Cold Blue/Cyan",secondary:"Clinical White",accent:"Green"}},"lv-426":{name:"LV-426",description:"Warm, rusty atmosphere inspired by the planet LV-426",colors:{primary:"Warm Orange/Rust",secondary:"Earth Tones",accent:"Green"}},sulaco:{name:"Sulaco",description:"Modern, military-inspired aesthetic from the USS Sulaco",colors:{primary:"Military Blue/Gray",secondary:"Steel Tones",accent:"Green"}}};Object.defineProperty(exports,"LogoWall",{enumerable:true,get:function(){return chunk3V3OIZWQ_cjs.a}});Object.defineProperty(exports,"Pricing",{enumerable:true,get:function(){return chunkOEN63W3G_cjs.a}});Object.defineProperty(exports,"Testimonials",{enumerable:true,get:function(){return chunkJUOCEYUF_cjs.a}});Object.defineProperty(exports,"Tabs",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.d}});Object.defineProperty(exports,"TabsContent",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.g}});Object.defineProperty(exports,"TabsList",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.e}});Object.defineProperty(exports,"TabsTrigger",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.f}});Object.defineProperty(exports,"tabsContentVariants",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.c}});Object.defineProperty(exports,"tabsListVariants",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.a}});Object.defineProperty(exports,"tabsTriggerVariants",{enumerable:true,get:function(){return chunkHWZTMVQV_cjs.b}});Object.defineProperty(exports,"Textarea",{enumerable:true,get:function(){return chunkV45EOCAD_cjs.b}});Object.defineProperty(exports,"textareaVariants",{enumerable:true,get:function(){return chunkV45EOCAD_cjs.a}});Object.defineProperty(exports,"Toast",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.e}});Object.defineProperty(exports,"ToastProvider",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.d}});Object.defineProperty(exports,"toastIconVariants",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.b}});Object.defineProperty(exports,"toastVariants",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.a}});Object.defineProperty(exports,"useToast",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.c}});Object.defineProperty(exports,"useToastNotification",{enumerable:true,get:function(){return chunk5Z3MYAVM_cjs.f}});Object.defineProperty(exports,"Tooltip",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.f}});Object.defineProperty(exports,"TooltipContent",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.d}});Object.defineProperty(exports,"TooltipProvider",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.e}});Object.defineProperty(exports,"TooltipTrigger",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.c}});Object.defineProperty(exports,"arrowVariants",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.b}});Object.defineProperty(exports,"tooltipVariants",{enumerable:true,get:function(){return chunkZ7WEJ5IQ_cjs.a}});Object.defineProperty(exports,"Features",{enumerable:true,get:function(){return chunkJ4VRJVTO_cjs.a}});Object.defineProperty(exports,"Gallery",{enumerable:true,get:function(){return chunk7PPAI3MM_cjs.a}});Object.defineProperty(exports,"Hero",{enumerable:true,get:function(){return chunk2DNQXAMB_cjs.a}});Object.defineProperty(exports,"Pagination",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.c}});Object.defineProperty(exports,"PaginationContent",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.d}});Object.defineProperty(exports,"PaginationEllipsis",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.i}});Object.defineProperty(exports,"PaginationItem",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.e}});Object.defineProperty(exports,"PaginationLink",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.f}});Object.defineProperty(exports,"PaginationNext",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.h}});Object.defineProperty(exports,"PaginationPrevious",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.g}});Object.defineProperty(exports,"paginationItemVariants",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.b}});Object.defineProperty(exports,"paginationVariants",{enumerable:true,get:function(){return chunkBYV75TDY_cjs.a}});Object.defineProperty(exports,"Popover",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.b}});Object.defineProperty(exports,"PopoverAnchor",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.d}});Object.defineProperty(exports,"PopoverArrow",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.g}});Object.defineProperty(exports,"PopoverClose",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.e}});Object.defineProperty(exports,"PopoverContent",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.f}});Object.defineProperty(exports,"PopoverTrigger",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.c}});Object.defineProperty(exports,"popoverContentVariants",{enumerable:true,get:function(){return chunkE53C3RDD_cjs.a}});Object.defineProperty(exports,"CircularProgress",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.e}});Object.defineProperty(exports,"Progress",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.d}});Object.defineProperty(exports,"progressBarVariants",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.b}});Object.defineProperty(exports,"progressLabelVariants",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.c}});Object.defineProperty(exports,"progressVariants",{enumerable:true,get:function(){return chunkG35BR7SK_cjs.a}});Object.defineProperty(exports,"RadioGroup",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.c}});Object.defineProperty(exports,"RadioGroupItem",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.d}});Object.defineProperty(exports,"RadioItem",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.d}});Object.defineProperty(exports,"radioGroupVariants",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.a}});Object.defineProperty(exports,"radioItemVariants",{enumerable:true,get:function(){return chunkMLJZU63I_cjs.b}});Object.defineProperty(exports,"Select",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.d}});Object.defineProperty(exports,"SelectContent",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.h}});Object.defineProperty(exports,"SelectGroup",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.e}});Object.defineProperty(exports,"SelectItem",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.j}});Object.defineProperty(exports,"SelectLabel",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.i}});Object.defineProperty(exports,"SelectSeparator",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.k}});Object.defineProperty(exports,"SelectTrigger",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.g}});Object.defineProperty(exports,"SelectValue",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.f}});Object.defineProperty(exports,"selectContentVariants",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.b}});Object.defineProperty(exports,"selectItemVariants",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.c}});Object.defineProperty(exports,"selectTriggerVariants",{enumerable:true,get:function(){return chunkK2JCGDU7_cjs.a}});Object.defineProperty(exports,"Separator",{enumerable:true,get:function(){return chunkC7HZAQBX_cjs.b}});Object.defineProperty(exports,"separatorVariants",{enumerable:true,get:function(){return chunkC7HZAQBX_cjs.a}});Object.defineProperty(exports,"Switch",{enumerable:true,get:function(){return chunkEVRQYWZ3_cjs.c}});Object.defineProperty(exports,"switchThumbVariants",{enumerable:true,get:function(){return chunkEVRQYWZ3_cjs.b}});Object.defineProperty(exports,"switchVariants",{enumerable:true,get:function(){return chunkEVRQYWZ3_cjs.a}});Object.defineProperty(exports,"DataTable",{enumerable:true,get:function(){return chunkAYEM2M4H_cjs.a}});Object.defineProperty(exports,"Table",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.d}});Object.defineProperty(exports,"TableBody",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.f}});Object.defineProperty(exports,"TableCell",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.h}});Object.defineProperty(exports,"TableHead",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.i}});Object.defineProperty(exports,"TableHeader",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.e}});Object.defineProperty(exports,"TableRow",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.g}});Object.defineProperty(exports,"tableCellVariants",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.c}});Object.defineProperty(exports,"tableHeaderVariants",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.b}});Object.defineProperty(exports,"tableVariants",{enumerable:true,get:function(){return chunkVNDL67OG_cjs.a}});Object.defineProperty(exports,"Dialog",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.c}});Object.defineProperty(exports,"DialogContent",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.e}});Object.defineProperty(exports,"DialogDescription",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.h}});Object.defineProperty(exports,"DialogHeader",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.f}});Object.defineProperty(exports,"DialogTitle",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.g}});Object.defineProperty(exports,"DialogTrigger",{enumerable:true,get:function(){return chunkNBX6FKCA_cjs.d}});Object.defineProperty(exports,"ErrorMessage",{enumerable:true,get:function(){return chunkV77N662N_cjs.b}});Object.defineProperty(exports,"errorMessageVariants",{enumerable:true,get:function(){return chunkV77N662N_cjs.a}});Object.defineProperty(exports,"HelperText",{enumerable:true,get:function(){return chunk7YFUAGIW_cjs.b}});Object.defineProperty(exports,"helperTextVariants",{enumerable:true,get:function(){return chunk7YFUAGIW_cjs.a}});Object.defineProperty(exports,"Icon",{enumerable:true,get:function(){return chunkNC27D5Y3_cjs.a}});Object.defineProperty(exports,"iconNames",{enumerable:true,get:function(){return chunkNC27D5Y3_cjs.b}});Object.defineProperty(exports,"Input",{enumerable:true,get:function(){return chunkFUENXWR7_cjs.b}});Object.defineProperty(exports,"Label",{enumerable:true,get:function(){return chunkXPIBRXTW_cjs.b}});Object.defineProperty(exports,"labelVariants",{enumerable:true,get:function(){return chunkXPIBRXTW_cjs.a}});Object.defineProperty(exports,"Calendar",{enumerable:true,get:function(){return chunkJCETHQ55_cjs.c}});Object.defineProperty(exports,"calendarDayVariants",{enumerable:true,get:function(){return chunkJCETHQ55_cjs.b}});Object.defineProperty(exports,"calendarVariants",{enumerable:true,get:function(){return chunkJCETHQ55_cjs.a}});Object.defineProperty(exports,"Button",{enumerable:true,get:function(){return chunk5PVFLXPO_cjs.b}});Object.defineProperty(exports,"buttonVariants",{enumerable:true,get:function(){return chunk5PVFLXPO_cjs.a}});Object.defineProperty(exports,"Card",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.g}});Object.defineProperty(exports,"CardContent",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.e}});Object.defineProperty(exports,"CardDescription",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.d}});Object.defineProperty(exports,"CardFooter",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.f}});Object.defineProperty(exports,"CardHeader",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.b}});Object.defineProperty(exports,"CardTitle",{enumerable:true,get:function(){return chunkPMNNV4ML_cjs.c}});Object.defineProperty(exports,"ChartArea",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.l}});Object.defineProperty(exports,"ChartBar",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.j}});Object.defineProperty(exports,"ChartContainer",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.d}});Object.defineProperty(exports,"ChartGrid",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.e}});Object.defineProperty(exports,"ChartLegend",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.i}});Object.defineProperty(exports,"ChartLine",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.k}});Object.defineProperty(exports,"ChartReferenceLine",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.m}});Object.defineProperty(exports,"ChartTooltip",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.h}});Object.defineProperty(exports,"ChartXAxis",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.f}});Object.defineProperty(exports,"ChartYAxis",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.g}});Object.defineProperty(exports,"buildColorMap",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.b}});Object.defineProperty(exports,"chartPalette",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.a}});Object.defineProperty(exports,"resolveSeriesColor",{enumerable:true,get:function(){return chunk3HKYX26O_cjs.c}});Object.defineProperty(exports,"LazyChart",{enumerable:true,get:function(){return chunkBZ5ZCZJX_cjs.a}});Object.defineProperty(exports,"Skeleton",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.b}});Object.defineProperty(exports,"SkeletonAvatar",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.d}});Object.defineProperty(exports,"SkeletonButton",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.e}});Object.defineProperty(exports,"SkeletonCard",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.f}});Object.defineProperty(exports,"SkeletonList",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.h}});Object.defineProperty(exports,"SkeletonTable",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.g}});Object.defineProperty(exports,"SkeletonText",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.c}});Object.defineProperty(exports,"skeletonVariants",{enumerable:true,get:function(){return chunk3QVQ2TNE_cjs.a}});Object.defineProperty(exports,"Chart",{enumerable:true,get:function(){return chunkWK6LNC2E_cjs.b}});Object.defineProperty(exports,"chartContainerVariants",{enumerable:true,get:function(){return chunkWK6LNC2E_cjs.a}});Object.defineProperty(exports,"Checkbox",{enumerable:true,get:function(){return chunkNPSIDFOF_cjs.b}});Object.defineProperty(exports,"checkboxVariants",{enumerable:true,get:function(){return chunkNPSIDFOF_cjs.a}});Object.defineProperty(exports,"Collapsible",{enumerable:true,get:function(){return chunkEEGXD4HC_cjs.a}});Object.defineProperty(exports,"CollapsibleContent",{enumerable:true,get:function(){return chunkEEGXD4HC_cjs.c}});Object.defineProperty(exports,"CollapsibleTrigger",{enumerable:true,get:function(){return chunkEEGXD4HC_cjs.b}});Object.defineProperty(exports,"LazyComponent",{enumerable:true,get:function(){return chunk55N2IT62_cjs.a}});Object.defineProperty(exports,"LazyInView",{enumerable:true,get:function(){return chunk55N2IT62_cjs.d}});Object.defineProperty(exports,"useLazyLoading",{enumerable:true,get:function(){return chunk55N2IT62_cjs.c}});Object.defineProperty(exports,"withLazyLoading",{enumerable:true,get:function(){return chunk55N2IT62_cjs.b}});Object.defineProperty(exports,"ErrorBoundary",{enumerable:true,get:function(){return chunk4FSJEW7W_cjs.a}});Object.defineProperty(exports,"useErrorHandler",{enumerable:true,get:function(){return chunk4FSJEW7W_cjs.b}});Object.defineProperty(exports,"performanceUtils",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.d}});Object.defineProperty(exports,"useMemoryMonitor",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.c}});Object.defineProperty(exports,"usePerformanceMonitor",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.a}});Object.defineProperty(exports,"withPerformanceMonitoring",{enumerable:true,get:function(){return chunk7WEIVLG3_cjs.b}});Object.defineProperty(exports,"Accordion",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.f}});Object.defineProperty(exports,"AccordionContent",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.i}});Object.defineProperty(exports,"AccordionItem",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.g}});Object.defineProperty(exports,"AccordionTrigger",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.h}});Object.defineProperty(exports,"accordionChevronVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.e}});Object.defineProperty(exports,"accordionContentVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.d}});Object.defineProperty(exports,"accordionItemVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.b}});Object.defineProperty(exports,"accordionTriggerVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.c}});Object.defineProperty(exports,"accordionVariants",{enumerable:true,get:function(){return chunkMLSE5XSB_cjs.a}});Object.defineProperty(exports,"Alert",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.g}});Object.defineProperty(exports,"AlertDescription",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.f}});Object.defineProperty(exports,"AlertTitle",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.e}});Object.defineProperty(exports,"alertCloseVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.d}});Object.defineProperty(exports,"alertDescriptionVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.c}});Object.defineProperty(exports,"alertTitleVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.b}});Object.defineProperty(exports,"alertVariants",{enumerable:true,get:function(){return chunkLXQT7FH6_cjs.a}});Object.defineProperty(exports,"Avatar",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.d}});Object.defineProperty(exports,"AvatarFallback",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.c}});Object.defineProperty(exports,"AvatarImage",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.b}});Object.defineProperty(exports,"avatarVariants",{enumerable:true,get:function(){return chunkIOX4WPJL_cjs.a}});Object.defineProperty(exports,"Badge",{enumerable:true,get:function(){return chunkEFCNLYYW_cjs.b}});Object.defineProperty(exports,"badgeVariants",{enumerable:true,get:function(){return chunkEFCNLYYW_cjs.a}});Object.defineProperty(exports,"Breadcrumb",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.d}});Object.defineProperty(exports,"BreadcrumbEllipsis",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.j}});Object.defineProperty(exports,"BreadcrumbItem",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.f}});Object.defineProperty(exports,"BreadcrumbLink",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.g}});Object.defineProperty(exports,"BreadcrumbList",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.e}});Object.defineProperty(exports,"BreadcrumbPage",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.h}});Object.defineProperty(exports,"BreadcrumbSeparator",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.i}});Object.defineProperty(exports,"breadcrumbItemVariants",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.b}});Object.defineProperty(exports,"breadcrumbSeparatorVariants",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.c}});Object.defineProperty(exports,"breadcrumbVariants",{enumerable:true,get:function(){return chunk35RWQSO2_cjs.a}});Object.defineProperty(exports,"cn",{enumerable:true,get:function(){return chunkITRGJNWL_cjs.a}});exports.applyTheme=pt;exports.getColorScheme=ht;exports.getCurrentTheme=gt;exports.initializeTheme=It;exports.onSystemColorSchemeChange=Tt;exports.prefersDarkMode=xt;exports.setDarkMode=ft;exports.themeInfo=Ut;exports.themes=St;exports.toggleDarkMode=Pt;//# sourceMappingURL=index.cjs.map
3
3
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/themes/utils.ts","../src/themes/index.ts"],"names":["themes","applyTheme","theme","getCurrentTheme","toggleDarkMode","newScheme","setDarkMode","isDark","getColorScheme","prefersDarkMode","onSystemColorSchemeChange","callback","mediaQuery","handler","initializeTheme","defaultTheme","themeInfo"],"mappings":"qgEAIO,IAAMA,EAAAA,CAAoC,CAC/C,QAAA,CAAU,UAAA,CACV,MAAA,CAAQ,SACR,QAAA,CAAU,QAAA,CACV,MAAA,CAAQ,QACV,EAKO,SAASC,GAAWC,CAAAA,CAAwB,CAC7C,OAAO,QAAA,CAAa,GAAA,EACtB,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,YAAA,CAAcA,CAAK,EAE7D,CAKO,SAASC,EAAAA,EAAoC,CAClD,OAAI,OAAO,QAAA,CAAa,GAAA,CAAoB,IAAA,CAE9B,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,YAAY,CAElE,CAKO,SAASC,EAAAA,EAAuB,CACrC,GAAI,OAAO,QAAA,CAAa,GAAA,CAAa,OAGrC,IAAMC,CAAAA,CADgB,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,mBAAmB,CAAA,GAC3C,MAAA,CAAS,OAAA,CAAU,MAAA,CACvD,SAAS,eAAA,CAAgB,YAAA,CAAa,mBAAA,CAAqBA,CAAS,EACtE,CAKO,SAASC,EAAAA,CAAYC,CAAAA,CAAuB,CAC7C,OAAO,QAAA,CAAa,GAAA,EAExB,QAAA,CAAS,gBAAgB,YAAA,CAAa,mBAAA,CAAqBA,CAAAA,CAAS,MAAA,CAAS,OAAO,EACtF,CAKO,SAASC,EAAAA,EAA0C,CACxD,OAAI,OAAO,QAAA,CAAa,GAAA,CAAoB,KAE7B,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,mBAAmB,CAE1E,CAKO,SAASC,EAAAA,EAA2B,CACzC,OAAI,OAAO,MAAA,CAAW,GAAA,CAAoB,KAAA,CAEnC,OAAO,UAAA,CAAW,8BAA8B,CAAA,CAAE,OAC3D,CAKO,SAASC,EAAAA,CAA0BC,CAAAA,CAAiD,CACzF,GAAI,OAAO,MAAA,CAAW,GAAA,CAAa,OAAO,IAAM,CAAC,CAAA,CAEjD,IAAMC,CAAAA,CAAa,MAAA,CAAO,UAAA,CAAW,8BAA8B,CAAA,CAE7DC,CAAAA,CAAW,CAAA,EAA2B,CAC1CF,CAAAA,CAAS,CAAA,CAAE,OAAO,EACpB,CAAA,CAEA,OAAAC,CAAAA,CAAW,gBAAA,CAAiB,QAAA,CAAUC,CAAO,CAAA,CAGtC,IAAM,CACXD,CAAAA,CAAW,mBAAA,CAAoB,QAAA,CAAUC,CAAO,EAClD,CACF,CAKO,SAASC,EAAAA,CAAgBC,CAAAA,CAA0B,UAAA,CAAkB,CACtE,OAAO,QAAA,CAAa,GAAA,GAGnBZ,EAAAA,EAAgB,EACnBF,EAAAA,CAAWc,CAAY,CAAA,CAIpBP,IAAe,EAClBF,EAAAA,CAAYG,EAAAA,EAAiB,CAAA,EAEjC,CC9FO,IAAMO,EAAAA,CAAY,CACvB,QAAA,CAAU,CACR,IAAA,CAAM,UAAA,CACN,WAAA,CAAa,gEACb,MAAA,CAAQ,CACN,OAAA,CAAS,aAAA,CACT,SAAA,CAAW,WAAA,CACX,MAAA,CAAQ,OACV,CACF,CAAA,CACA,MAAA,CAAQ,CACN,IAAA,CAAM,QAAA,CACN,YAAa,6DAAA,CACb,MAAA,CAAQ,CACN,OAAA,CAAS,gBAAA,CACT,SAAA,CAAW,gBAAA,CACX,MAAA,CAAQ,OACV,CACF,CAAA,CACA,QAAA,CAAU,CACR,IAAA,CAAM,SACN,WAAA,CAAa,sDAAA,CACb,MAAA,CAAQ,CACN,OAAA,CAAS,kBAAA,CACT,SAAA,CAAW,aAAA,CACX,MAAA,CAAQ,OACV,CACF,CAAA,CACA,MAAA,CAAQ,CACN,KAAM,QAAA,CACN,WAAA,CAAa,yDAAA,CACb,MAAA,CAAQ,CACN,OAAA,CAAS,oBAAA,CACT,SAAA,CAAW,aAAA,CACX,MAAA,CAAQ,OACV,CACF,CACF","file":"index.cjs","sourcesContent":["// Theme utilities and helpers\n\nexport type ThemeName = 'nostromo' | 'mother' | 'lv-426' | 'sulaco';\n\nexport const themes: Record<ThemeName, string> = {\n nostromo: 'nostromo',\n mother: 'mother',\n 'lv-426': 'lv-426',\n sulaco: 'sulaco',\n} as const;\n\n/**\n * Apply a theme to the document\n */\nexport function applyTheme(theme: ThemeName): void {\n if (typeof document !== 'undefined') {\n document.documentElement.setAttribute('data-theme', theme);\n }\n}\n\n/**\n * Get the current theme from the document\n */\nexport function getCurrentTheme(): ThemeName | null {\n if (typeof document === 'undefined') return null;\n \n const theme = document.documentElement.getAttribute('data-theme');\n return theme as ThemeName | null;\n}\n\n/**\n * Toggle between light and dark mode\n */\nexport function toggleDarkMode(): void {\n if (typeof document === 'undefined') return;\n \n const currentScheme = document.documentElement.getAttribute('data-color-scheme');\n const newScheme = currentScheme === 'dark' ? 'light' : 'dark';\n document.documentElement.setAttribute('data-color-scheme', newScheme);\n}\n\n/**\n * Set dark mode\n */\nexport function setDarkMode(isDark: boolean): void {\n if (typeof document === 'undefined') return;\n \n document.documentElement.setAttribute('data-color-scheme', isDark ? 'dark' : 'light');\n}\n\n/**\n * Get current color scheme\n */\nexport function getColorScheme(): 'light' | 'dark' | null {\n if (typeof document === 'undefined') return null;\n \n const scheme = document.documentElement.getAttribute('data-color-scheme');\n return scheme as 'light' | 'dark' | null;\n}\n\n/**\n * Check if system prefers dark mode\n */\nexport function prefersDarkMode(): boolean {\n if (typeof window === 'undefined') return false;\n \n return window.matchMedia('(prefers-color-scheme: dark)').matches;\n}\n\n/**\n * Listen for system color scheme changes\n */\nexport function onSystemColorSchemeChange(callback: (isDark: boolean) => void): () => void {\n if (typeof window === 'undefined') return () => {};\n \n const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)');\n \n const handler = (e: MediaQueryListEvent) => {\n callback(e.matches);\n };\n \n mediaQuery.addEventListener('change', handler);\n \n // Return cleanup function\n return () => {\n mediaQuery.removeEventListener('change', handler);\n };\n}\n\n/**\n * Initialize theme system\n */\nexport function initializeTheme(defaultTheme: ThemeName = 'nostromo'): void {\n if (typeof document === 'undefined') return;\n \n // Set default theme if none is set\n if (!getCurrentTheme()) {\n applyTheme(defaultTheme);\n }\n \n // Set initial color scheme based on system preference\n if (!getColorScheme()) {\n setDarkMode(prefersDarkMode());\n }\n}\n","// Theme exports\nexport * from './utils';\n\n// Theme CSS imports (for bundlers that support CSS imports)\nimport './nostromo.css';\nimport './mother.css';\nimport './lv-426.css';\nimport './sulaco.css';\n\n// Theme names and descriptions\nexport const themeInfo = {\n nostromo: {\n name: 'Nostromo',\n description: 'Classic space industrial theme inspired by the USCSS Nostromo',\n colors: {\n primary: 'Purple/Blue',\n secondary: 'Dark Gray',\n accent: 'Green'\n }\n },\n mother: {\n name: 'Mother',\n description: 'Cold, clinical AI aesthetic inspired by the ship\\'s computer',\n colors: {\n primary: 'Cold Blue/Cyan',\n secondary: 'Clinical White',\n accent: 'Green'\n }\n },\n 'lv-426': {\n name: 'LV-426',\n description: 'Warm, rusty atmosphere inspired by the planet LV-426',\n colors: {\n primary: 'Warm Orange/Rust',\n secondary: 'Earth Tones',\n accent: 'Green'\n }\n },\n sulaco: {\n name: 'Sulaco',\n description: 'Modern, military-inspired aesthetic from the USS Sulaco',\n colors: {\n primary: 'Military Blue/Gray',\n secondary: 'Steel Tones',\n accent: 'Green'\n }\n }\n} as const;\n\nexport type ThemeInfo = typeof themeInfo;\n"]}
1
+ {"version":3,"sources":["../src/themes/utils.ts","../src/themes/index.ts"],"names":["themes","applyTheme","theme","getCurrentTheme","toggleDarkMode","newScheme","setDarkMode","isDark","getColorScheme","prefersDarkMode","onSystemColorSchemeChange","callback","mediaQuery","handler","initializeTheme","defaultTheme","themeInfo"],"mappings":"2pEAIO,IAAMA,EAAAA,CAAoC,CAC/C,QAAA,CAAU,UAAA,CACV,MAAA,CAAQ,SACR,QAAA,CAAU,QAAA,CACV,MAAA,CAAQ,QACV,EAKO,SAASC,GAAWC,CAAAA,CAAwB,CAC7C,OAAO,QAAA,CAAa,GAAA,EACtB,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,YAAA,CAAcA,CAAK,EAE7D,CAKO,SAASC,EAAAA,EAAoC,CAClD,OAAI,OAAO,QAAA,CAAa,GAAA,CAAoB,IAAA,CAE9B,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,YAAY,CAElE,CAKO,SAASC,EAAAA,EAAuB,CACrC,GAAI,OAAO,QAAA,CAAa,GAAA,CAAa,OAGrC,IAAMC,CAAAA,CADgB,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,mBAAmB,CAAA,GAC3C,MAAA,CAAS,OAAA,CAAU,MAAA,CACvD,SAAS,eAAA,CAAgB,YAAA,CAAa,mBAAA,CAAqBA,CAAS,EACtE,CAKO,SAASC,EAAAA,CAAYC,CAAAA,CAAuB,CAC7C,OAAO,QAAA,CAAa,GAAA,EAExB,QAAA,CAAS,gBAAgB,YAAA,CAAa,mBAAA,CAAqBA,CAAAA,CAAS,MAAA,CAAS,OAAO,EACtF,CAKO,SAASC,EAAAA,EAA0C,CACxD,OAAI,OAAO,QAAA,CAAa,GAAA,CAAoB,KAE7B,QAAA,CAAS,eAAA,CAAgB,YAAA,CAAa,mBAAmB,CAE1E,CAKO,SAASC,EAAAA,EAA2B,CACzC,OAAI,OAAO,MAAA,CAAW,GAAA,CAAoB,KAAA,CAEnC,OAAO,UAAA,CAAW,8BAA8B,CAAA,CAAE,OAC3D,CAKO,SAASC,EAAAA,CAA0BC,CAAAA,CAAiD,CACzF,GAAI,OAAO,MAAA,CAAW,GAAA,CAAa,OAAO,IAAM,CAAC,CAAA,CAEjD,IAAMC,CAAAA,CAAa,MAAA,CAAO,UAAA,CAAW,8BAA8B,CAAA,CAE7DC,CAAAA,CAAW,CAAA,EAA2B,CAC1CF,CAAAA,CAAS,CAAA,CAAE,OAAO,EACpB,CAAA,CAEA,OAAAC,CAAAA,CAAW,gBAAA,CAAiB,QAAA,CAAUC,CAAO,CAAA,CAGtC,IAAM,CACXD,CAAAA,CAAW,mBAAA,CAAoB,QAAA,CAAUC,CAAO,EAClD,CACF,CAKO,SAASC,EAAAA,CAAgBC,CAAAA,CAA0B,UAAA,CAAkB,CACtE,OAAO,QAAA,CAAa,GAAA,GAGnBZ,EAAAA,EAAgB,EACnBF,EAAAA,CAAWc,CAAY,CAAA,CAIpBP,IAAe,EAClBF,EAAAA,CAAYG,EAAAA,EAAiB,CAAA,EAEjC,CC9FO,IAAMO,EAAAA,CAAY,CACvB,QAAA,CAAU,CACR,IAAA,CAAM,UAAA,CACN,WAAA,CAAa,gEACb,MAAA,CAAQ,CACN,OAAA,CAAS,aAAA,CACT,SAAA,CAAW,WAAA,CACX,MAAA,CAAQ,OACV,CACF,CAAA,CACA,MAAA,CAAQ,CACN,IAAA,CAAM,QAAA,CACN,YAAa,6DAAA,CACb,MAAA,CAAQ,CACN,OAAA,CAAS,gBAAA,CACT,SAAA,CAAW,gBAAA,CACX,MAAA,CAAQ,OACV,CACF,CAAA,CACA,QAAA,CAAU,CACR,IAAA,CAAM,SACN,WAAA,CAAa,sDAAA,CACb,MAAA,CAAQ,CACN,OAAA,CAAS,kBAAA,CACT,SAAA,CAAW,aAAA,CACX,MAAA,CAAQ,OACV,CACF,CAAA,CACA,MAAA,CAAQ,CACN,KAAM,QAAA,CACN,WAAA,CAAa,yDAAA,CACb,MAAA,CAAQ,CACN,OAAA,CAAS,oBAAA,CACT,SAAA,CAAW,aAAA,CACX,MAAA,CAAQ,OACV,CACF,CACF","file":"index.cjs","sourcesContent":["// Theme utilities and helpers\n\nexport type ThemeName = 'nostromo' | 'mother' | 'lv-426' | 'sulaco';\n\nexport const themes: Record<ThemeName, string> = {\n nostromo: 'nostromo',\n mother: 'mother',\n 'lv-426': 'lv-426',\n sulaco: 'sulaco',\n} as const;\n\n/**\n * Apply a theme to the document\n */\nexport function applyTheme(theme: ThemeName): void {\n if (typeof document !== 'undefined') {\n document.documentElement.setAttribute('data-theme', theme);\n }\n}\n\n/**\n * Get the current theme from the document\n */\nexport function getCurrentTheme(): ThemeName | null {\n if (typeof document === 'undefined') return null;\n \n const theme = document.documentElement.getAttribute('data-theme');\n return theme as ThemeName | null;\n}\n\n/**\n * Toggle between light and dark mode\n */\nexport function toggleDarkMode(): void {\n if (typeof document === 'undefined') return;\n \n const currentScheme = document.documentElement.getAttribute('data-color-scheme');\n const newScheme = currentScheme === 'dark' ? 'light' : 'dark';\n document.documentElement.setAttribute('data-color-scheme', newScheme);\n}\n\n/**\n * Set dark mode\n */\nexport function setDarkMode(isDark: boolean): void {\n if (typeof document === 'undefined') return;\n \n document.documentElement.setAttribute('data-color-scheme', isDark ? 'dark' : 'light');\n}\n\n/**\n * Get current color scheme\n */\nexport function getColorScheme(): 'light' | 'dark' | null {\n if (typeof document === 'undefined') return null;\n \n const scheme = document.documentElement.getAttribute('data-color-scheme');\n return scheme as 'light' | 'dark' | null;\n}\n\n/**\n * Check if system prefers dark mode\n */\nexport function prefersDarkMode(): boolean {\n if (typeof window === 'undefined') return false;\n \n return window.matchMedia('(prefers-color-scheme: dark)').matches;\n}\n\n/**\n * Listen for system color scheme changes\n */\nexport function onSystemColorSchemeChange(callback: (isDark: boolean) => void): () => void {\n if (typeof window === 'undefined') return () => {};\n \n const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)');\n \n const handler = (e: MediaQueryListEvent) => {\n callback(e.matches);\n };\n \n mediaQuery.addEventListener('change', handler);\n \n // Return cleanup function\n return () => {\n mediaQuery.removeEventListener('change', handler);\n };\n}\n\n/**\n * Initialize theme system\n */\nexport function initializeTheme(defaultTheme: ThemeName = 'nostromo'): void {\n if (typeof document === 'undefined') return;\n \n // Set default theme if none is set\n if (!getCurrentTheme()) {\n applyTheme(defaultTheme);\n }\n \n // Set initial color scheme based on system preference\n if (!getColorScheme()) {\n setDarkMode(prefersDarkMode());\n }\n}\n","// Theme exports\nexport * from './utils';\n\n// Theme CSS imports (for bundlers that support CSS imports)\nimport './nostromo.css';\nimport './mother.css';\nimport './lv-426.css';\nimport './sulaco.css';\n\n// Theme names and descriptions\nexport const themeInfo = {\n nostromo: {\n name: 'Nostromo',\n description: 'Classic space industrial theme inspired by the USCSS Nostromo',\n colors: {\n primary: 'Purple/Blue',\n secondary: 'Dark Gray',\n accent: 'Green'\n }\n },\n mother: {\n name: 'Mother',\n description: 'Cold, clinical AI aesthetic inspired by the ship\\'s computer',\n colors: {\n primary: 'Cold Blue/Cyan',\n secondary: 'Clinical White',\n accent: 'Green'\n }\n },\n 'lv-426': {\n name: 'LV-426',\n description: 'Warm, rusty atmosphere inspired by the planet LV-426',\n colors: {\n primary: 'Warm Orange/Rust',\n secondary: 'Earth Tones',\n accent: 'Green'\n }\n },\n sulaco: {\n name: 'Sulaco',\n description: 'Modern, military-inspired aesthetic from the USS Sulaco',\n colors: {\n primary: 'Military Blue/Gray',\n secondary: 'Steel Tones',\n accent: 'Green'\n }\n }\n} as const;\n\nexport type ThemeInfo = typeof themeInfo;\n"]}
package/dist/index.css CHANGED
@@ -1,2 +1,2 @@
1
- [data-theme=nostromo]{--nostromo-color-brand-50: 262 84% 95%;--nostromo-color-brand-100: 262 84% 90%;--nostromo-color-brand-200: 262 84% 80%;--nostromo-color-brand-300: 262 84% 70%;--nostromo-color-brand-400: 262 84% 60%;--nostromo-color-brand-500: 262 84% 52%;--nostromo-color-brand-600: 262 84% 45%;--nostromo-color-brand-700: 262 84% 35%;--nostromo-color-brand-800: 262 84% 25%;--nostromo-color-brand-900: 262 84% 15%;--nostromo-color-brand-950: 262 84% 8%;--nostromo-color-neutral-50: 0 0% 98%;--nostromo-color-neutral-100: 0 0% 96%;--nostromo-color-neutral-200: 0 0% 90%;--nostromo-color-neutral-300: 0 0% 83%;--nostromo-color-neutral-400: 0 0% 64%;--nostromo-color-neutral-500: 0 0% 45%;--nostromo-color-neutral-600: 0 0% 32%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 9%;--nostromo-color-neutral-950: 0 0% 4%;--nostromo-color-success-50: 142 76% 95%;--nostromo-color-success-100: 142 76% 90%;--nostromo-color-success-200: 142 76% 80%;--nostromo-color-success-300: 142 76% 70%;--nostromo-color-success-400: 142 76% 60%;--nostromo-color-success-500: 142 76% 36%;--nostromo-color-success-600: 142 76% 30%;--nostromo-color-success-700: 142 76% 25%;--nostromo-color-success-800: 142 76% 20%;--nostromo-color-success-900: 142 76% 15%;--nostromo-color-success-950: 142 76% 8%;--nostromo-color-warning-50: 38 92% 95%;--nostromo-color-warning-100: 38 92% 90%;--nostromo-color-warning-200: 38 92% 80%;--nostromo-color-warning-300: 38 92% 70%;--nostromo-color-warning-400: 38 92% 60%;--nostromo-color-warning-500: 38 92% 50%;--nostromo-color-warning-600: 38 92% 45%;--nostromo-color-warning-700: 38 92% 35%;--nostromo-color-warning-800: 38 92% 25%;--nostromo-color-warning-900: 38 92% 15%;--nostromo-color-warning-950: 38 92% 8%;--nostromo-color-error-50: 0 84% 95%;--nostromo-color-error-100: 0 84% 90%;--nostromo-color-error-200: 0 84% 80%;--nostromo-color-error-300: 0 84% 70%;--nostromo-color-error-400: 0 84% 60%;--nostromo-color-error-500: 0 84% 60%;--nostromo-color-error-600: 0 84% 48%;--nostromo-color-error-700: 0 84% 40%;--nostromo-color-error-800: 0 84% 30%;--nostromo-color-error-900: 0 84% 20%;--nostromo-color-error-950: 0 84% 10%;--nostromo-color-info-50: 199 89% 95%;--nostromo-color-info-100: 199 89% 90%;--nostromo-color-info-200: 199 89% 80%;--nostromo-color-info-300: 199 89% 70%;--nostromo-color-info-400: 199 89% 60%;--nostromo-color-info-500: 199 89% 48%;--nostromo-color-info-600: 199 89% 40%;--nostromo-color-info-700: 199 89% 30%;--nostromo-color-info-800: 199 89% 20%;--nostromo-color-info-900: 199 89% 15%;--nostromo-color-info-950: 199 89% 8%;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-none: 0px;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .5rem;--nostromo-radius-lg: .75rem;--nostromo-radius-xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-shadow-xs: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-sm: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / .05);--nostromo-shadow-button: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-button-hover: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-card: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--nostromo-shadow-card-hover: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-input: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-input-focus: 0 0 0 3px rgb(139 92 246 / .1);--nostromo-font-heading: "Inter", system-ui, sans-serif;--nostromo-font-body: "Inter", system-ui, sans-serif;--nostromo-font-mono: "JetBrains Mono", "Fira Code", monospace;--nostromo-text-xs: .75rem;--nostromo-text-sm: .875rem;--nostromo-text-base: 1rem;--nostromo-text-lg: 1.125rem;--nostromo-text-xl: 1.25rem;--nostromo-text-2xl: 1.5rem;--nostromo-text-3xl: 1.875rem;--nostromo-text-4xl: 2.25rem;--nostromo-text-5xl: 3rem;--nostromo-leading-tight: 1.25;--nostromo-leading-normal: 1.5;--nostromo-leading-relaxed: 1.75;--nostromo-font-normal: 400;--nostromo-font-medium: 500;--nostromo-font-semibold: 600;--nostromo-font-bold: 700;--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .2s ease-in-out;--nostromo-transition-slow: .3s ease-in-out;--nostromo-transition-bounce: .2s cubic-bezier(.68, -.55, .265, 1.55);--nostromo-transition-button: all .15s ease-in-out;--nostromo-transition-input: all .2s ease-in-out;--nostromo-transition-card: all .2s ease-in-out;--nostromo-transition-modal: all .3s cubic-bezier(.4, 0, .2, 1);--nostromo-color-background: 0 0% 98%;--nostromo-color-foreground: 0 0% 9%;--nostromo-color-muted: 0 0% 96%;--nostromo-color-muted-foreground: 0 0% 32%;--nostromo-color-popover: 0 0% 98%;--nostromo-color-popover-foreground: 0 0% 9%;--nostromo-color-card: 0 0% 98%;--nostromo-color-card-foreground: 0 0% 9%;--nostromo-color-border: 0 0% 90%;--nostromo-color-input: 0 0% 90%;--nostromo-color-primary: 262 84% 52%;--nostromo-color-primary-foreground: 0 0% 98%;--nostromo-color-secondary: 0 0% 90%;--nostromo-color-secondary-foreground: 0 0% 9%;--nostromo-color-accent: 262 84% 90%;--nostromo-color-accent-foreground: 262 84% 15%;--nostromo-color-destructive: 0 84% 48%;--nostromo-color-destructive-foreground: 0 0% 98%;--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: 262 84% 52%}[data-theme=nostromo][data-color-scheme=light]{--nostromo-color-neutral-50: 0 0% 98%;--nostromo-color-neutral-100: 0 0% 96%;--nostromo-color-neutral-200: 0 0% 90%;--nostromo-color-neutral-300: 0 0% 83%;--nostromo-color-neutral-400: 0 0% 64%;--nostromo-color-neutral-500: 0 0% 45%;--nostromo-color-neutral-600: 0 0% 32%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 9%;--nostromo-color-neutral-950: 0 0% 4%;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1)}[data-theme=nostromo][data-color-scheme=dark]{--nostromo-color-neutral-50: 0 0% 9%;--nostromo-color-neutral-100: 0 0% 15%;--nostromo-color-neutral-200: 0 0% 25%;--nostromo-color-neutral-300: 0 0% 35%;--nostromo-color-neutral-400: 0 0% 45%;--nostromo-color-neutral-500: 0 0% 55%;--nostromo-color-neutral-600: 0 0% 65%;--nostromo-color-neutral-700: 0 0% 75%;--nostromo-color-neutral-800: 0 0% 85%;--nostromo-color-neutral-900: 0 0% 95%;--nostromo-color-neutral-950: 0 0% 98%;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .3);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .4);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .4);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .4);--nostromo-color-background: 0 0% 9%;--nostromo-color-foreground: 0 0% 95%;--nostromo-color-muted: 0 0% 20%;--nostromo-color-muted-foreground: 0 0% 65%;--nostromo-color-popover: 0 0% 15%;--nostromo-color-popover-foreground: 0 0% 95%;--nostromo-color-card: 0 0% 15%;--nostromo-color-card-foreground: 0 0% 95%;--nostromo-color-border: 0 0% 75%;--nostromo-color-input: 0 0% 75%;--nostromo-color-primary: 262 84% 60%;--nostromo-color-primary-foreground: 0 0% 98%;--nostromo-color-secondary: 0 0% 20%;--nostromo-color-secondary-foreground: 0 0% 95%;--nostromo-color-accent: 262 84% 25%;--nostromo-color-accent-foreground: 262 84% 90%;--nostromo-color-destructive: 0 84% 48%;--nostromo-color-destructive-foreground: 0 0% 98%;--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: 262 84% 60%}@media(prefers-color-scheme:dark){[data-theme=nostromo]:not([data-color-scheme]){--nostromo-color-neutral-50: 0 0% 9%;--nostromo-color-neutral-100: 0 0% 15%;--nostromo-color-neutral-200: 0 0% 25%;--nostromo-color-neutral-300: 0 0% 35%;--nostromo-color-neutral-400: 0 0% 45%;--nostromo-color-neutral-500: 0 0% 55%;--nostromo-color-neutral-600: 0 0% 65%;--nostromo-color-neutral-700: 0 0% 75%;--nostromo-color-neutral-800: 0 0% 85%;--nostromo-color-neutral-900: 0 0% 95%;--nostromo-color-neutral-950: 0 0% 98%;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .3);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .4);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .4);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .4);--nostromo-color-background: 0 0% 9%;--nostromo-color-foreground: 0 0% 95%;--nostromo-color-muted: 0 0% 20%;--nostromo-color-muted-foreground: 0 0% 65%;--nostromo-color-popover: 0 0% 15%;--nostromo-color-popover-foreground: 0 0% 95%;--nostromo-color-card: 0 0% 15%;--nostromo-color-card-foreground: 0 0% 95%;--nostromo-color-border: 0 0% 75%;--nostromo-color-input: 0 0% 75%;--nostromo-color-primary: 262 84% 60%;--nostromo-color-primary-foreground: 0 0% 98%;--nostromo-color-secondary: 0 0% 20%;--nostromo-color-secondary-foreground: 0 0% 95%;--nostromo-color-accent: 262 84% 25%;--nostromo-color-accent-foreground: 262 84% 90%;--nostromo-color-destructive: 0 84% 48%;--nostromo-color-destructive-foreground: 0 0% 98%;--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: 262 84% 60%}}[data-theme=mother]{--nostromo-color-brand-50: 195 100% 95%;--nostromo-color-brand-100: 195 100% 90%;--nostromo-color-brand-200: 195 100% 80%;--nostromo-color-brand-300: 195 100% 70%;--nostromo-color-brand-400: 195 100% 60%;--nostromo-color-brand-500: 195 100% 50%;--nostromo-color-brand-600: 195 100% 40%;--nostromo-color-brand-700: 195 100% 30%;--nostromo-color-brand-800: 195 100% 20%;--nostromo-color-brand-900: 195 100% 10%;--nostromo-color-brand-950: 195 100% 5%;--nostromo-color-neutral-50: 0 0% 100%;--nostromo-color-neutral-100: 0 0% 98%;--nostromo-color-neutral-200: 0 0% 95%;--nostromo-color-neutral-300: 0 0% 90%;--nostromo-color-neutral-400: 0 0% 80%;--nostromo-color-neutral-500: 0 0% 60%;--nostromo-color-neutral-600: 0 0% 40%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 8%;--nostromo-color-neutral-950: 0 0% 3%;--nostromo-color-success-50: 120 100% 95%;--nostromo-color-success-100: 120 100% 90%;--nostromo-color-success-200: 120 100% 80%;--nostromo-color-success-300: 120 100% 70%;--nostromo-color-success-400: 120 100% 60%;--nostromo-color-success-500: 120 100% 40%;--nostromo-color-success-600: 120 100% 30%;--nostromo-color-success-700: 120 100% 20%;--nostromo-color-success-800: 120 100% 15%;--nostromo-color-success-900: 120 100% 10%;--nostromo-color-success-950: 120 100% 5%;--nostromo-color-warning-50: 45 100% 95%;--nostromo-color-warning-100: 45 100% 90%;--nostromo-color-warning-200: 45 100% 80%;--nostromo-color-warning-300: 45 100% 70%;--nostromo-color-warning-400: 45 100% 60%;--nostromo-color-warning-500: 45 100% 50%;--nostromo-color-warning-600: 45 100% 40%;--nostromo-color-warning-700: 45 100% 30%;--nostromo-color-warning-800: 45 100% 20%;--nostromo-color-warning-900: 45 100% 10%;--nostromo-color-warning-950: 45 100% 5%;--nostromo-color-error-50: 0 100% 95%;--nostromo-color-error-100: 0 100% 90%;--nostromo-color-error-200: 0 100% 80%;--nostromo-color-error-300: 0 100% 70%;--nostromo-color-error-400: 0 100% 60%;--nostromo-color-error-500: 0 100% 50%;--nostromo-color-error-600: 0 100% 40%;--nostromo-color-error-700: 0 100% 30%;--nostromo-color-error-800: 0 100% 20%;--nostromo-color-error-900: 0 100% 10%;--nostromo-color-error-950: 0 100% 5%;--nostromo-color-info-50: 210 100% 95%;--nostromo-color-info-100: 210 100% 90%;--nostromo-color-info-200: 210 100% 80%;--nostromo-color-info-300: 210 100% 70%;--nostromo-color-info-400: 210 100% 60%;--nostromo-color-info-500: 210 100% 50%;--nostromo-color-info-600: 210 100% 40%;--nostromo-color-info-700: 210 100% 30%;--nostromo-color-info-800: 210 100% 20%;--nostromo-color-info-900: 210 100% 10%;--nostromo-color-info-950: 210 100% 5%;--nostromo-color-background: var(--nostromo-color-neutral-50);--nostromo-color-foreground: var(--nostromo-color-neutral-900);--nostromo-color-muted: var(--nostromo-color-neutral-100);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-600);--nostromo-color-popover: var(--nostromo-color-neutral-50);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-900);--nostromo-color-card: var(--nostromo-color-neutral-50);--nostromo-color-card-foreground: var(--nostromo-color-neutral-900);--nostromo-color-border: var(--nostromo-color-neutral-200);--nostromo-color-input: var(--nostromo-color-neutral-200);--nostromo-color-primary: var(--nostromo-color-brand-500);--nostromo-color-primary-foreground: var( --nostromo-color-neutral-900 );--nostromo-color-secondary: var(--nostromo-color-neutral-100);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-accent: var(--nostromo-color-brand-100);--nostromo-color-accent-foreground: var(--nostromo-color-brand-900);--nostromo-color-destructive: var(--nostromo-color-error-600);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-50);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-500);--nostromo-font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Source Code Pro", monospace;--nostromo-font-heading: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .375rem;--nostromo-radius-lg: .5rem;--nostromo-radius-xl: .75rem;--nostromo-radius-2xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .25s ease-in-out;--nostromo-transition-slow: .35s ease-in-out;--nostromo-z-dropdown: 1000;--nostromo-z-sticky: 1020;--nostromo-z-fixed: 1030;--nostromo-z-modal-backdrop: 1040;--nostromo-z-modal: 1050;--nostromo-z-popover: 1060;--nostromo-z-tooltip: 1070;--nostromo-z-toast: 1080}[data-theme=mother][data-color-scheme=dark]{--nostromo-color-background: var(--nostromo-color-neutral-900);--nostromo-color-foreground: var(--nostromo-color-neutral-50);--nostromo-color-muted: var(--nostromo-color-neutral-800);--nostromo-color-muted-foreground: 0 0% 65%;--nostromo-color-popover: var( --nostromo-color-neutral-900 );--nostromo-color-popover-foreground: var(--nostromo-color-neutral-50);--nostromo-color-card: var( --nostromo-color-neutral-900 );--nostromo-color-card-foreground: var(--nostromo-color-neutral-50);--nostromo-color-border: var(--nostromo-color-neutral-700);--nostromo-color-input: var(--nostromo-color-neutral-700);--nostromo-color-primary: var( --nostromo-color-brand-300 );--nostromo-color-primary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-secondary: var( --nostromo-color-neutral-900 );--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-50);--nostromo-color-accent: var(--nostromo-color-brand-800);--nostromo-color-accent-foreground: var(--nostromo-color-brand-100);--nostromo-color-destructive: var(--nostromo-color-error-400);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-900);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-400)}[data-theme=mother]{font-family:var(--nostromo-font-sans);line-height:1.6;color:var(--nostromo-color-foreground);background-color:var(--nostromo-color-background)}[data-theme=mother] .font-mono{font-family:var(--nostromo-font-mono)}[data-theme=mother] .font-heading{font-family:var(--nostromo-font-heading);font-weight:600;letter-spacing:-.025em}[data-theme=mother] .btn{border-radius:var(--nostromo-radius-md);transition:all var(--nostromo-transition-fast)}[data-theme=mother] .btn:hover{transform:translateY(-1px);box-shadow:var(--nostromo-shadow-md)}[data-theme=mother] .card{border-radius:var(--nostromo-radius-lg);border:1px solid var(--nostromo-color-border);background-color:var(--nostromo-color-card);box-shadow:var(--nostromo-shadow-sm)}[data-theme=mother] .input{border-radius:var(--nostromo-radius-md);border:1px solid var(--nostromo-color-input);transition:all var(--nostromo-transition-fast)}[data-theme=mother] .input:focus{border-color:var(--nostromo-color-primary);box-shadow:0 0 0 3px hsl(var(--nostromo-color-primary) / .1)}[data-theme=mother] .animate-pulse{animation:mother-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes mother-pulse{0%,to{opacity:1}50%{opacity:.7}}[data-theme=mother] .animate-spin{animation:mother-spin 1s linear infinite}@keyframes mother-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}[data-theme=lv-426]{--nostromo-color-brand-50: 25 95% 95%;--nostromo-color-brand-100: 25 95% 90%;--nostromo-color-brand-200: 25 95% 80%;--nostromo-color-brand-300: 25 95% 70%;--nostromo-color-brand-400: 25 95% 60%;--nostromo-color-brand-500: 25 95% 50%;--nostromo-color-brand-600: 25 95% 40%;--nostromo-color-brand-700: 25 95% 30%;--nostromo-color-brand-800: 25 95% 20%;--nostromo-color-brand-900: 25 95% 10%;--nostromo-color-brand-950: 25 95% 5%;--nostromo-color-neutral-50: 30 20% 98%;--nostromo-color-neutral-100: 30 20% 95%;--nostromo-color-neutral-200: 30 20% 90%;--nostromo-color-neutral-300: 30 20% 80%;--nostromo-color-neutral-400: 30 20% 60%;--nostromo-color-neutral-500: 30 20% 40%;--nostromo-color-neutral-600: 30 20% 30%;--nostromo-color-neutral-700: 30 20% 20%;--nostromo-color-neutral-800: 30 20% 15%;--nostromo-color-neutral-900: 30 20% 10%;--nostromo-color-neutral-950: 30 20% 5%;--nostromo-color-success-50: 120 60% 95%;--nostromo-color-success-100: 120 60% 90%;--nostromo-color-success-200: 120 60% 80%;--nostromo-color-success-300: 120 60% 70%;--nostromo-color-success-400: 120 60% 60%;--nostromo-color-success-500: 120 60% 40%;--nostromo-color-success-600: 120 60% 30%;--nostromo-color-success-700: 120 60% 20%;--nostromo-color-success-800: 120 60% 15%;--nostromo-color-success-900: 120 60% 10%;--nostromo-color-success-950: 120 60% 5%;--nostromo-color-warning-50: 45 100% 95%;--nostromo-color-warning-100: 45 100% 90%;--nostromo-color-warning-200: 45 100% 80%;--nostromo-color-warning-300: 45 100% 70%;--nostromo-color-warning-400: 45 100% 60%;--nostromo-color-warning-500: 45 100% 50%;--nostromo-color-warning-600: 45 100% 40%;--nostromo-color-warning-700: 45 100% 30%;--nostromo-color-warning-800: 45 100% 20%;--nostromo-color-warning-900: 45 100% 10%;--nostromo-color-warning-950: 45 100% 5%;--nostromo-color-error-50: 0 80% 95%;--nostromo-color-error-100: 0 80% 90%;--nostromo-color-error-200: 0 80% 80%;--nostromo-color-error-300: 0 80% 70%;--nostromo-color-error-400: 0 80% 60%;--nostromo-color-error-500: 0 80% 50%;--nostromo-color-error-600: 0 80% 40%;--nostromo-color-error-700: 0 80% 30%;--nostromo-color-error-800: 0 80% 20%;--nostromo-color-error-900: 0 80% 10%;--nostromo-color-error-950: 0 80% 5%;--nostromo-color-info-50: 210 80% 95%;--nostromo-color-info-100: 210 80% 90%;--nostromo-color-info-200: 210 80% 80%;--nostromo-color-info-300: 210 80% 70%;--nostromo-color-info-400: 210 80% 60%;--nostromo-color-info-500: 210 80% 51%;--nostromo-color-info-600: 210 80% 40%;--nostromo-color-info-700: 210 80% 30%;--nostromo-color-info-800: 210 80% 20%;--nostromo-color-info-900: 210 80% 10%;--nostromo-color-info-950: 210 80% 5%;--nostromo-color-background: var(--nostromo-color-neutral-50);--nostromo-color-foreground: var(--nostromo-color-neutral-900);--nostromo-color-muted: var(--nostromo-color-neutral-100);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-600);--nostromo-color-popover: var(--nostromo-color-neutral-50);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-900);--nostromo-color-card: var(--nostromo-color-neutral-50);--nostromo-color-card-foreground: var(--nostromo-color-neutral-900);--nostromo-color-border: var(--nostromo-color-neutral-200);--nostromo-color-input: var(--nostromo-color-neutral-200);--nostromo-color-primary: var(--nostromo-color-brand-500);--nostromo-color-primary-foreground: var( --nostromo-color-neutral-900 );--nostromo-color-secondary: var(--nostromo-color-neutral-100);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-accent: var(--nostromo-color-brand-100);--nostromo-color-accent-foreground: var(--nostromo-color-brand-900);--nostromo-color-destructive: var(--nostromo-color-error-600);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-50);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-500);--nostromo-font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Source Code Pro", monospace;--nostromo-font-heading: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .375rem;--nostromo-radius-lg: .5rem;--nostromo-radius-xl: .75rem;--nostromo-radius-2xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .25s ease-in-out;--nostromo-transition-slow: .35s ease-in-out;--nostromo-z-dropdown: 1000;--nostromo-z-sticky: 1020;--nostromo-z-fixed: 1030;--nostromo-z-modal-backdrop: 1040;--nostromo-z-modal: 1050;--nostromo-z-popover: 1060;--nostromo-z-tooltip: 1070;--nostromo-z-toast: 1080}[data-theme=lv-426][data-color-scheme=dark]{--nostromo-color-background: var(--nostromo-color-neutral-900);--nostromo-color-foreground: var(--nostromo-color-neutral-50);--nostromo-color-muted: var(--nostromo-color-neutral-800);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-400);--nostromo-color-popover: var(--nostromo-color-neutral-800);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-50);--nostromo-color-card: var(--nostromo-color-neutral-800);--nostromo-color-card-foreground: var(--nostromo-color-neutral-50);--nostromo-color-border: var(--nostromo-color-neutral-700);--nostromo-color-input: var(--nostromo-color-neutral-700);--nostromo-color-primary: var(--nostromo-color-brand-400);--nostromo-color-primary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-secondary: var(--nostromo-color-neutral-700);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-50);--nostromo-color-accent: var(--nostromo-color-brand-800);--nostromo-color-accent-foreground: var(--nostromo-color-brand-100);--nostromo-color-destructive: var(--nostromo-color-error-400);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-900);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-400)}[data-theme=lv-426]{font-family:var(--nostromo-font-sans);line-height:1.6;color:var(--nostromo-color-foreground);background-color:var(--nostromo-color-background)}[data-theme=lv-426] .font-mono{font-family:var(--nostromo-font-mono)}[data-theme=lv-426] .font-heading{font-family:var(--nostromo-font-heading);font-weight:600;letter-spacing:-.025em}[data-theme=lv-426] .btn{border-radius:var(--nostromo-radius-md);transition:all var(--nostromo-transition-fast);background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)))}[data-theme=lv-426] .btn:hover{transform:translateY(-1px);box-shadow:var(--nostromo-shadow-lg);background:linear-gradient(135deg,hsl(var(--nostromo-color-brand-600)),hsl(var(--nostromo-color-brand-700)))}[data-theme=lv-426] .card{border-radius:var(--nostromo-radius-lg);border:1px solid var(--nostromo-color-border);background-color:var(--nostromo-color-card);box-shadow:var(--nostromo-shadow-md);background:linear-gradient(135deg,var(--nostromo-color-card),hsl(var(--nostromo-color-neutral-100)))}[data-theme=lv-426] .input{border-radius:var(--nostromo-radius-md);border:1px solid var(--nostromo-color-input);transition:all var(--nostromo-transition-fast);background:linear-gradient(135deg,var(--nostromo-color-background),hsl(var(--nostromo-color-neutral-100)))}[data-theme=lv-426] .input:focus{border-color:var(--nostromo-color-primary);box-shadow:0 0 0 3px hsl(var(--nostromo-color-primary) / .2);background:var(--nostromo-color-background)}[data-theme=lv-426] .animate-pulse{animation:lv426-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes lv426-pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.02)}}[data-theme=lv-426] .animate-spin{animation:lv426-spin 1s linear infinite}@keyframes lv426-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}[data-theme=lv-426] .btn-primary{background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)));border:1px solid hsl(var(--nostromo-color-brand-700));box-shadow:0 4px 14px hsl(var(--nostromo-color-brand-500) / .3)}[data-theme=lv-426] .btn-primary:hover{background:linear-gradient(135deg,hsl(var(--nostromo-color-brand-600)),hsl(var(--nostromo-color-brand-700)));box-shadow:0 6px 20px hsl(var(--nostromo-color-brand-500) / .4)}[data-theme=lv-426] .card-elevated{background:linear-gradient(135deg,var(--nostromo-color-card),hsl(var(--nostromo-color-neutral-100)));box-shadow:var(--nostromo-shadow-xl);border:1px solid hsl(var(--nostromo-color-brand-200))}[data-theme=lv-426] .text-gradient{background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}[data-theme=lv-426] .text-warm{color:hsl(var(--nostromo-color-brand-600))}[data-theme=lv-426] .text-earth{color:hsl(var(--nostromo-color-neutral-600))}[data-theme=sulaco]{--nostromo-color-brand-50: 210 40% 95%;--nostromo-color-brand-100: 210 40% 90%;--nostromo-color-brand-200: 210 40% 80%;--nostromo-color-brand-300: 210 40% 70%;--nostromo-color-brand-400: 210 40% 60%;--nostromo-color-brand-500: 210 40% 50%;--nostromo-color-brand-600: 210 40% 40%;--nostromo-color-brand-700: 210 40% 30%;--nostromo-color-brand-800: 210 40% 20%;--nostromo-color-brand-900: 210 40% 10%;--nostromo-color-brand-950: 210 40% 5%;--nostromo-color-neutral-50: 0 0% 98%;--nostromo-color-neutral-100: 0 0% 96%;--nostromo-color-neutral-200: 0 0% 90%;--nostromo-color-neutral-300: 0 0% 83%;--nostromo-color-neutral-400: 0 0% 64%;--nostromo-color-neutral-500: 0 0% 45%;--nostromo-color-neutral-600: 0 0% 32%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 9%;--nostromo-color-neutral-950: 0 0% 4%;--nostromo-color-success-50: 142 76% 95%;--nostromo-color-success-100: 142 76% 90%;--nostromo-color-success-200: 142 76% 80%;--nostromo-color-success-300: 142 76% 70%;--nostromo-color-success-400: 142 76% 60%;--nostromo-color-success-500: 142 76% 40%;--nostromo-color-success-600: 142 76% 30%;--nostromo-color-success-700: 142 76% 20%;--nostromo-color-success-800: 142 76% 15%;--nostromo-color-success-900: 142 76% 10%;--nostromo-color-success-950: 142 76% 5%;--nostromo-color-warning-50: 38 92% 95%;--nostromo-color-warning-100: 38 92% 90%;--nostromo-color-warning-200: 38 92% 80%;--nostromo-color-warning-300: 38 92% 70%;--nostromo-color-warning-400: 38 92% 60%;--nostromo-color-warning-500: 38 92% 50%;--nostromo-color-warning-600: 38 92% 40%;--nostromo-color-warning-700: 38 92% 30%;--nostromo-color-warning-800: 38 92% 20%;--nostromo-color-warning-900: 38 92% 10%;--nostromo-color-warning-950: 38 92% 5%;--nostromo-color-error-50: 0 100% 95%;--nostromo-color-error-100: 0 100% 90%;--nostromo-color-error-200: 0 100% 80%;--nostromo-color-error-300: 0 100% 70%;--nostromo-color-error-400: 0 100% 60%;--nostromo-color-error-500: 0 100% 50%;--nostromo-color-error-600: 0 100% 40%;--nostromo-color-error-700: 0 100% 30%;--nostromo-color-error-800: 0 100% 20%;--nostromo-color-error-900: 0 100% 10%;--nostromo-color-error-950: 0 100% 5%;--nostromo-color-info-50: 210 100% 95%;--nostromo-color-info-100: 210 100% 90%;--nostromo-color-info-200: 210 100% 80%;--nostromo-color-info-300: 210 100% 70%;--nostromo-color-info-400: 210 100% 60%;--nostromo-color-info-500: 210 100% 50%;--nostromo-color-info-600: 210 100% 40%;--nostromo-color-info-700: 210 100% 30%;--nostromo-color-info-800: 210 100% 20%;--nostromo-color-info-900: 210 100% 10%;--nostromo-color-info-950: 210 100% 5%;--nostromo-color-background: var(--nostromo-color-neutral-50);--nostromo-color-foreground: var(--nostromo-color-neutral-900);--nostromo-color-muted: var(--nostromo-color-neutral-100);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-600);--nostromo-color-popover: var(--nostromo-color-neutral-50);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-900);--nostromo-color-card: var(--nostromo-color-neutral-50);--nostromo-color-card-foreground: var(--nostromo-color-neutral-900);--nostromo-color-border: var(--nostromo-color-neutral-200);--nostromo-color-input: var(--nostromo-color-neutral-200);--nostromo-color-primary: var(--nostromo-color-brand-600);--nostromo-color-primary-foreground: var( --nostromo-color-neutral-50 );--nostromo-color-secondary: var(--nostromo-color-neutral-100);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-accent: var(--nostromo-color-brand-100);--nostromo-color-accent-foreground: var(--nostromo-color-brand-900);--nostromo-color-destructive: var(--nostromo-color-error-600);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-50);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-500);--nostromo-font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Source Code Pro", monospace;--nostromo-font-heading: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .375rem;--nostromo-radius-lg: .5rem;--nostromo-radius-xl: .75rem;--nostromo-radius-2xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .25s ease-in-out;--nostromo-transition-slow: .35s ease-in-out;--nostromo-z-dropdown: 1000;--nostromo-z-sticky: 1020;--nostromo-z-fixed: 1030;--nostromo-z-modal-backdrop: 1040;--nostromo-z-modal: 1050;--nostromo-z-popover: 1060;--nostromo-z-tooltip: 1070;--nostromo-z-toast: 1080}[data-theme=sulaco][data-color-scheme=dark]{--nostromo-color-background: var(--nostromo-color-neutral-900);--nostromo-color-foreground: var(--nostromo-color-neutral-50);--nostromo-color-muted: var(--nostromo-color-neutral-800);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-400);--nostromo-color-popover: var(--nostromo-color-neutral-800);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-50);--nostromo-color-card: var(--nostromo-color-neutral-800);--nostromo-color-card-foreground: var(--nostromo-color-neutral-50);--nostromo-color-border: var(--nostromo-color-neutral-700);--nostromo-color-input: var(--nostromo-color-neutral-700);--nostromo-color-primary: var(--nostromo-color-brand-400);--nostromo-color-primary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-secondary: var(--nostromo-color-neutral-700);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-50);--nostromo-color-accent: var(--nostromo-color-brand-800);--nostromo-color-accent-foreground: var(--nostromo-color-brand-100);--nostromo-color-destructive: var(--nostromo-color-error-400);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-900);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-400)}[data-theme=sulaco]{font-family:var(--nostromo-font-sans);line-height:1.6;color:var(--nostromo-color-foreground);background-color:var(--nostromo-color-background)}[data-theme=sulaco] .font-mono{font-family:var(--nostromo-font-mono)}[data-theme=sulaco] .font-heading{font-family:var(--nostromo-font-heading);font-weight:600;letter-spacing:-.025em}[data-theme=sulaco] .btn{border-radius:var(--nostromo-radius-md);transition:all var(--nostromo-transition-fast);border:1px solid transparent;font-weight:500}[data-theme=sulaco] .btn:hover{transform:translateY(-1px);box-shadow:var(--nostromo-shadow-md)}[data-theme=sulaco] .btn-primary{background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)));border:1px solid hsl(var(--nostromo-color-brand-700));box-shadow:0 2px 4px hsl(var(--nostromo-color-brand-500) / .2)}[data-theme=sulaco] .btn-primary:hover{background:linear-gradient(135deg,hsl(var(--nostromo-color-brand-600)),hsl(var(--nostromo-color-brand-700)));box-shadow:0 4px 8px hsl(var(--nostromo-color-brand-500) / .3)}[data-theme=sulaco] .card{border-radius:var(--nostromo-radius-lg);border:1px solid var(--nostromo-color-border);background-color:var(--nostromo-color-card);box-shadow:var(--nostromo-shadow-sm)}[data-theme=sulaco] .card-elevated{box-shadow:var(--nostromo-shadow-lg);border:1px solid hsl(var(--nostromo-color-brand-200))}[data-theme=sulaco] .input{border-radius:var(--nostromo-radius-md);border:1px solid var(--nostromo-color-input);transition:all var(--nostromo-transition-fast);font-weight:500}[data-theme=sulaco] .input:focus{border-color:var(--nostromo-color-primary);box-shadow:0 0 0 3px hsl(var(--nostromo-color-primary) / .1)}[data-theme=sulaco] .animate-pulse{animation:sulaco-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes sulaco-pulse{0%,to{opacity:1}50%{opacity:.8}}[data-theme=sulaco] .animate-spin{animation:sulaco-spin 1s linear infinite}@keyframes sulaco-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}[data-theme=sulaco] .btn-military{background:linear-gradient(135deg,var(--nostromo-color-neutral-100),var(--nostromo-color-neutral-200));border:1px solid var(--nostromo-color-neutral-300);color:var(--nostromo-color-neutral-800);font-weight:600;text-transform:uppercase;letter-spacing:.05em}[data-theme=sulaco] .btn-military:hover{background:linear-gradient(135deg,var(--nostromo-color-neutral-200),var(--nostromo-color-neutral-300));border-color:var(--nostromo-color-neutral-400);transform:translateY(-1px);box-shadow:var(--nostromo-shadow-md)}[data-theme=sulaco] .card-military{background:linear-gradient(135deg,var(--nostromo-color-card),hsl(var(--nostromo-color-neutral-100)));border:1px solid var(--nostromo-color-border);box-shadow:var(--nostromo-shadow-md)}[data-theme=sulaco] .text-military{color:var(--nostromo-color-neutral-700);font-weight:500}[data-theme=sulaco] .text-command{color:var(--nostromo-color-primary);font-weight:600}[data-theme=sulaco] .text-status{color:var(--nostromo-color-success-600);font-weight:500}[data-theme=sulaco] .text-alert{color:var(--nostromo-color-warning-600);font-weight:500}[data-theme=sulaco] .text-critical{color:var(--nostromo-color-error-600);font-weight:600}[data-theme=sulaco] .grid-military{display:grid;gap:var(--nostromo-spacing-md);grid-template-columns:repeat(auto-fit,minmax(250px,1fr))}[data-theme=sulaco] .grid-command{display:grid;gap:var(--nostromo-spacing-lg);grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}[data-theme=sulaco] .status-indicator{display:inline-flex;align-items:center;gap:var(--nostromo-spacing-sm);padding:var(--nostromo-spacing-xs) var(--nostromo-spacing-sm);border-radius:var(--nostromo-radius-full);font-size:.875rem;font-weight:500}[data-theme=sulaco] .status-online{background-color:hsl(var(--nostromo-color-success-100));color:hsl(var(--nostromo-color-success-800));border:1px solid hsl(var(--nostromo-color-success-200))}[data-theme=sulaco] .status-warning{background-color:hsl(var(--nostromo-color-warning-100));color:hsl(var(--nostromo-color-warning-800));border:1px solid hsl(var(--nostromo-color-warning-200))}[data-theme=sulaco] .status-critical{background-color:hsl(var(--nostromo-color-error-100));color:hsl(var(--nostromo-color-error-800));border:1px solid hsl(var(--nostromo-color-error-200))}[data-theme=sulaco] .status-offline{background-color:hsl(var(--nostromo-color-neutral-100));color:hsl(var(--nostromo-color-neutral-600));border:1px solid hsl(var(--nostromo-color-neutral-200))}
1
+ [data-theme=nostromo]{--nostromo-color-brand-50: 262 84% 95%;--nostromo-color-brand-100: 262 84% 90%;--nostromo-color-brand-200: 262 84% 80%;--nostromo-color-brand-300: 262 84% 70%;--nostromo-color-brand-400: 262 84% 60%;--nostromo-color-brand-500: 262 84% 52%;--nostromo-color-brand-600: 262 84% 45%;--nostromo-color-brand-700: 262 84% 35%;--nostromo-color-brand-800: 262 84% 25%;--nostromo-color-brand-900: 262 84% 15%;--nostromo-color-brand-950: 262 84% 8%;--nostromo-color-neutral-50: 0 0% 98%;--nostromo-color-neutral-100: 0 0% 96%;--nostromo-color-neutral-200: 0 0% 90%;--nostromo-color-neutral-300: 0 0% 83%;--nostromo-color-neutral-400: 0 0% 64%;--nostromo-color-neutral-500: 0 0% 45%;--nostromo-color-neutral-600: 0 0% 32%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 9%;--nostromo-color-neutral-950: 0 0% 4%;--nostromo-color-success-50: 142 76% 95%;--nostromo-color-success-100: 142 76% 90%;--nostromo-color-success-200: 142 76% 80%;--nostromo-color-success-300: 142 76% 70%;--nostromo-color-success-400: 142 76% 60%;--nostromo-color-success-500: 142 76% 36%;--nostromo-color-success-600: 142 76% 30%;--nostromo-color-success-700: 142 76% 25%;--nostromo-color-success-800: 142 76% 20%;--nostromo-color-success-900: 142 76% 15%;--nostromo-color-success-950: 142 76% 8%;--nostromo-color-warning-50: 38 92% 95%;--nostromo-color-warning-100: 38 92% 90%;--nostromo-color-warning-200: 38 92% 80%;--nostromo-color-warning-300: 38 92% 70%;--nostromo-color-warning-400: 38 92% 60%;--nostromo-color-warning-500: 38 92% 50%;--nostromo-color-warning-600: 38 92% 45%;--nostromo-color-warning-700: 38 92% 35%;--nostromo-color-warning-800: 38 92% 25%;--nostromo-color-warning-900: 38 92% 15%;--nostromo-color-warning-950: 38 92% 8%;--nostromo-color-error-50: 0 84% 95%;--nostromo-color-error-100: 0 84% 90%;--nostromo-color-error-200: 0 84% 80%;--nostromo-color-error-300: 0 84% 70%;--nostromo-color-error-400: 0 84% 60%;--nostromo-color-error-500: 0 84% 60%;--nostromo-color-error-600: 0 84% 48%;--nostromo-color-error-700: 0 84% 40%;--nostromo-color-error-800: 0 84% 30%;--nostromo-color-error-900: 0 84% 20%;--nostromo-color-error-950: 0 84% 10%;--nostromo-color-info-50: 199 89% 95%;--nostromo-color-info-100: 199 89% 90%;--nostromo-color-info-200: 199 89% 80%;--nostromo-color-info-300: 199 89% 70%;--nostromo-color-info-400: 199 89% 60%;--nostromo-color-info-500: 199 89% 48%;--nostromo-color-info-600: 199 89% 40%;--nostromo-color-info-700: 199 89% 30%;--nostromo-color-info-800: 199 89% 20%;--nostromo-color-info-900: 199 89% 15%;--nostromo-color-info-950: 199 89% 8%;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-none: 0px;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .5rem;--nostromo-radius-lg: .75rem;--nostromo-radius-xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-animate-duration: .15s;--nostromo-shadow-xs: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-sm: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / .05);--nostromo-shadow-button: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-button-hover: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-card: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--nostromo-shadow-card-hover: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-input: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-input-focus: 0 0 0 3px rgb(139 92 246 / .1);--nostromo-font-heading: "Inter", system-ui, sans-serif;--nostromo-font-body: "Inter", system-ui, sans-serif;--nostromo-font-mono: "JetBrains Mono", "Fira Code", monospace;--nostromo-text-xs: .75rem;--nostromo-text-sm: .875rem;--nostromo-text-base: 1rem;--nostromo-text-lg: 1.125rem;--nostromo-text-xl: 1.25rem;--nostromo-text-2xl: 1.5rem;--nostromo-text-3xl: 1.875rem;--nostromo-text-4xl: 2.25rem;--nostromo-text-5xl: 3rem;--nostromo-leading-tight: 1.25;--nostromo-leading-normal: 1.5;--nostromo-leading-relaxed: 1.75;--nostromo-font-normal: 400;--nostromo-font-medium: 500;--nostromo-font-semibold: 600;--nostromo-font-bold: 700;--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .2s ease-in-out;--nostromo-transition-slow: .3s ease-in-out;--nostromo-transition-bounce: .2s cubic-bezier(.68, -.55, .265, 1.55);--nostromo-transition-button: all .15s ease-in-out;--nostromo-transition-input: all .2s ease-in-out;--nostromo-transition-card: all .2s ease-in-out;--nostromo-transition-modal: all .3s cubic-bezier(.4, 0, .2, 1);--nostromo-color-background: 0 0% 98%;--nostromo-color-foreground: 0 0% 9%;--nostromo-color-muted: 0 0% 96%;--nostromo-color-muted-foreground: 0 0% 32%;--nostromo-color-popover: 0 0% 98%;--nostromo-color-popover-foreground: 0 0% 9%;--nostromo-color-card: 0 0% 98%;--nostromo-color-card-foreground: 0 0% 9%;--nostromo-color-border: 0 0% 90%;--nostromo-color-input: 0 0% 90%;--nostromo-color-primary: 262 84% 52%;--nostromo-color-primary-foreground: 0 0% 98%;--nostromo-color-secondary: 0 0% 90%;--nostromo-color-secondary-foreground: 0 0% 9%;--nostromo-color-accent: 262 84% 90%;--nostromo-color-accent-foreground: 262 84% 15%;--nostromo-color-destructive: 0 84% 48%;--nostromo-color-destructive-foreground: 0 0% 98%;--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: 262 84% 52%}[data-theme=nostromo][data-color-scheme=light]{--nostromo-color-neutral-50: 0 0% 98%;--nostromo-color-neutral-100: 0 0% 96%;--nostromo-color-neutral-200: 0 0% 90%;--nostromo-color-neutral-300: 0 0% 83%;--nostromo-color-neutral-400: 0 0% 64%;--nostromo-color-neutral-500: 0 0% 45%;--nostromo-color-neutral-600: 0 0% 32%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 9%;--nostromo-color-neutral-950: 0 0% 4%;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1)}[data-theme=nostromo][data-color-scheme=dark]{--nostromo-color-neutral-50: 0 0% 9%;--nostromo-color-neutral-100: 0 0% 15%;--nostromo-color-neutral-200: 0 0% 25%;--nostromo-color-neutral-300: 0 0% 35%;--nostromo-color-neutral-400: 0 0% 45%;--nostromo-color-neutral-500: 0 0% 55%;--nostromo-color-neutral-600: 0 0% 65%;--nostromo-color-neutral-700: 0 0% 75%;--nostromo-color-neutral-800: 0 0% 85%;--nostromo-color-neutral-900: 0 0% 95%;--nostromo-color-neutral-950: 0 0% 98%;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .3);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .4);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .4);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .4);--nostromo-color-background: 0 0% 9%;--nostromo-color-foreground: 0 0% 95%;--nostromo-color-muted: 0 0% 20%;--nostromo-color-muted-foreground: 0 0% 65%;--nostromo-color-popover: 0 0% 15%;--nostromo-color-popover-foreground: 0 0% 95%;--nostromo-color-card: 0 0% 15%;--nostromo-color-card-foreground: 0 0% 95%;--nostromo-color-border: 0 0% 75%;--nostromo-color-input: 0 0% 75%;--nostromo-color-primary: 262 84% 60%;--nostromo-color-primary-foreground: 0 0% 98%;--nostromo-color-secondary: 0 0% 20%;--nostromo-color-secondary-foreground: 0 0% 95%;--nostromo-color-accent: 262 84% 25%;--nostromo-color-accent-foreground: 262 84% 90%;--nostromo-color-destructive: 0 84% 48%;--nostromo-color-destructive-foreground: 0 0% 98%;--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: 262 84% 60%}@media(prefers-color-scheme:dark){[data-theme=nostromo]:not([data-color-scheme]){--nostromo-color-neutral-50: 0 0% 9%;--nostromo-color-neutral-100: 0 0% 15%;--nostromo-color-neutral-200: 0 0% 25%;--nostromo-color-neutral-300: 0 0% 35%;--nostromo-color-neutral-400: 0 0% 45%;--nostromo-color-neutral-500: 0 0% 55%;--nostromo-color-neutral-600: 0 0% 65%;--nostromo-color-neutral-700: 0 0% 75%;--nostromo-color-neutral-800: 0 0% 85%;--nostromo-color-neutral-900: 0 0% 95%;--nostromo-color-neutral-950: 0 0% 98%;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .3);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .4);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .4);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .4);--nostromo-color-background: 0 0% 9%;--nostromo-color-foreground: 0 0% 95%;--nostromo-color-muted: 0 0% 20%;--nostromo-color-muted-foreground: 0 0% 65%;--nostromo-color-popover: 0 0% 15%;--nostromo-color-popover-foreground: 0 0% 95%;--nostromo-color-card: 0 0% 15%;--nostromo-color-card-foreground: 0 0% 95%;--nostromo-color-border: 0 0% 75%;--nostromo-color-input: 0 0% 75%;--nostromo-color-primary: 262 84% 60%;--nostromo-color-primary-foreground: 0 0% 98%;--nostromo-color-secondary: 0 0% 20%;--nostromo-color-secondary-foreground: 0 0% 95%;--nostromo-color-accent: 262 84% 25%;--nostromo-color-accent-foreground: 262 84% 90%;--nostromo-color-destructive: 0 84% 48%;--nostromo-color-destructive-foreground: 0 0% 98%;--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: 262 84% 60%}}[data-theme=mother]{--nostromo-color-brand-50: 195 100% 95%;--nostromo-color-brand-100: 195 100% 90%;--nostromo-color-brand-200: 195 100% 80%;--nostromo-color-brand-300: 195 100% 70%;--nostromo-color-brand-400: 195 100% 60%;--nostromo-color-brand-500: 195 100% 50%;--nostromo-color-brand-600: 195 100% 40%;--nostromo-color-brand-700: 195 100% 30%;--nostromo-color-brand-800: 195 100% 20%;--nostromo-color-brand-900: 195 100% 10%;--nostromo-color-brand-950: 195 100% 5%;--nostromo-color-neutral-50: 0 0% 100%;--nostromo-color-neutral-100: 0 0% 98%;--nostromo-color-neutral-200: 0 0% 95%;--nostromo-color-neutral-300: 0 0% 90%;--nostromo-color-neutral-400: 0 0% 80%;--nostromo-color-neutral-500: 0 0% 60%;--nostromo-color-neutral-600: 0 0% 40%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 8%;--nostromo-color-neutral-950: 0 0% 3%;--nostromo-color-success-50: 120 100% 95%;--nostromo-color-success-100: 120 100% 90%;--nostromo-color-success-200: 120 100% 80%;--nostromo-color-success-300: 120 100% 70%;--nostromo-color-success-400: 120 100% 60%;--nostromo-color-success-500: 120 100% 40%;--nostromo-color-success-600: 120 100% 30%;--nostromo-color-success-700: 120 100% 20%;--nostromo-color-success-800: 120 100% 15%;--nostromo-color-success-900: 120 100% 10%;--nostromo-color-success-950: 120 100% 5%;--nostromo-color-warning-50: 45 100% 95%;--nostromo-color-warning-100: 45 100% 90%;--nostromo-color-warning-200: 45 100% 80%;--nostromo-color-warning-300: 45 100% 70%;--nostromo-color-warning-400: 45 100% 60%;--nostromo-color-warning-500: 45 100% 50%;--nostromo-color-warning-600: 45 100% 40%;--nostromo-color-warning-700: 45 100% 30%;--nostromo-color-warning-800: 45 100% 20%;--nostromo-color-warning-900: 45 100% 10%;--nostromo-color-warning-950: 45 100% 5%;--nostromo-color-error-50: 0 100% 95%;--nostromo-color-error-100: 0 100% 90%;--nostromo-color-error-200: 0 100% 80%;--nostromo-color-error-300: 0 100% 70%;--nostromo-color-error-400: 0 100% 60%;--nostromo-color-error-500: 0 100% 50%;--nostromo-color-error-600: 0 100% 40%;--nostromo-color-error-700: 0 100% 30%;--nostromo-color-error-800: 0 100% 20%;--nostromo-color-error-900: 0 100% 10%;--nostromo-color-error-950: 0 100% 5%;--nostromo-color-info-50: 210 100% 95%;--nostromo-color-info-100: 210 100% 90%;--nostromo-color-info-200: 210 100% 80%;--nostromo-color-info-300: 210 100% 70%;--nostromo-color-info-400: 210 100% 60%;--nostromo-color-info-500: 210 100% 50%;--nostromo-color-info-600: 210 100% 40%;--nostromo-color-info-700: 210 100% 30%;--nostromo-color-info-800: 210 100% 20%;--nostromo-color-info-900: 210 100% 10%;--nostromo-color-info-950: 210 100% 5%;--nostromo-color-background: var(--nostromo-color-neutral-50);--nostromo-color-foreground: var(--nostromo-color-neutral-900);--nostromo-color-muted: var(--nostromo-color-neutral-100);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-600);--nostromo-color-popover: var(--nostromo-color-neutral-50);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-900);--nostromo-color-card: var(--nostromo-color-neutral-50);--nostromo-color-card-foreground: var(--nostromo-color-neutral-900);--nostromo-color-border: var(--nostromo-color-neutral-200);--nostromo-color-input: var(--nostromo-color-neutral-200);--nostromo-color-primary: var(--nostromo-color-brand-500);--nostromo-color-primary-foreground: var( --nostromo-color-neutral-900 );--nostromo-color-secondary: var(--nostromo-color-neutral-100);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-accent: var(--nostromo-color-brand-100);--nostromo-color-accent-foreground: var(--nostromo-color-brand-900);--nostromo-color-destructive: var(--nostromo-color-error-600);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-50);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-500);--nostromo-font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Source Code Pro", monospace;--nostromo-font-heading: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .375rem;--nostromo-radius-lg: .5rem;--nostromo-radius-xl: .75rem;--nostromo-radius-2xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-animate-duration: .15s;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .25s ease-in-out;--nostromo-transition-slow: .35s ease-in-out;--nostromo-z-dropdown: 1000;--nostromo-z-sticky: 1020;--nostromo-z-fixed: 1030;--nostromo-z-modal-backdrop: 1040;--nostromo-z-modal: 1050;--nostromo-z-popover: 1060;--nostromo-z-tooltip: 1070;--nostromo-z-toast: 1080}[data-theme=mother][data-color-scheme=dark]{--nostromo-color-background: var(--nostromo-color-neutral-900);--nostromo-color-foreground: var(--nostromo-color-neutral-50);--nostromo-color-muted: var(--nostromo-color-neutral-800);--nostromo-color-muted-foreground: 0 0% 65%;--nostromo-color-popover: var( --nostromo-color-neutral-900 );--nostromo-color-popover-foreground: var(--nostromo-color-neutral-50);--nostromo-color-card: var( --nostromo-color-neutral-900 );--nostromo-color-card-foreground: var(--nostromo-color-neutral-50);--nostromo-color-border: var(--nostromo-color-neutral-700);--nostromo-color-input: var(--nostromo-color-neutral-700);--nostromo-color-primary: var( --nostromo-color-brand-300 );--nostromo-color-primary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-secondary: var( --nostromo-color-neutral-900 );--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-50);--nostromo-color-accent: var(--nostromo-color-brand-800);--nostromo-color-accent-foreground: var(--nostromo-color-brand-100);--nostromo-color-destructive: var(--nostromo-color-error-400);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-900);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-400)}[data-theme=mother]{font-family:var(--nostromo-font-sans);line-height:1.6;color:var(--nostromo-color-foreground);background-color:var(--nostromo-color-background)}[data-theme=mother] .font-mono{font-family:var(--nostromo-font-mono)}[data-theme=mother] .font-heading{font-family:var(--nostromo-font-heading);font-weight:600;letter-spacing:-.025em}[data-theme=mother] .btn{border-radius:var(--nostromo-radius-md);transition:all var(--nostromo-transition-fast)}[data-theme=mother] .btn:hover{transform:translateY(-1px);box-shadow:var(--nostromo-shadow-md)}[data-theme=mother] .card{border-radius:var(--nostromo-radius-lg);border:1px solid var(--nostromo-color-border);background-color:var(--nostromo-color-card);box-shadow:var(--nostromo-shadow-sm)}[data-theme=mother] .input{border-radius:var(--nostromo-radius-md);border:1px solid var(--nostromo-color-input);transition:all var(--nostromo-transition-fast)}[data-theme=mother] .input:focus{border-color:var(--nostromo-color-primary);box-shadow:0 0 0 3px hsl(var(--nostromo-color-primary) / .1)}[data-theme=mother] .animate-pulse{animation:mother-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes mother-pulse{0%,to{opacity:1}50%{opacity:.7}}[data-theme=mother] .animate-spin{animation:mother-spin 1s linear infinite}@keyframes mother-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}[data-theme=lv-426]{--nostromo-color-brand-50: 25 95% 95%;--nostromo-color-brand-100: 25 95% 90%;--nostromo-color-brand-200: 25 95% 80%;--nostromo-color-brand-300: 25 95% 70%;--nostromo-color-brand-400: 25 95% 60%;--nostromo-color-brand-500: 25 95% 50%;--nostromo-color-brand-600: 25 95% 40%;--nostromo-color-brand-700: 25 95% 30%;--nostromo-color-brand-800: 25 95% 20%;--nostromo-color-brand-900: 25 95% 10%;--nostromo-color-brand-950: 25 95% 5%;--nostromo-color-neutral-50: 30 20% 98%;--nostromo-color-neutral-100: 30 20% 95%;--nostromo-color-neutral-200: 30 20% 90%;--nostromo-color-neutral-300: 30 20% 80%;--nostromo-color-neutral-400: 30 20% 60%;--nostromo-color-neutral-500: 30 20% 40%;--nostromo-color-neutral-600: 30 20% 30%;--nostromo-color-neutral-700: 30 20% 20%;--nostromo-color-neutral-800: 30 20% 15%;--nostromo-color-neutral-900: 30 20% 10%;--nostromo-color-neutral-950: 30 20% 5%;--nostromo-color-success-50: 120 60% 95%;--nostromo-color-success-100: 120 60% 90%;--nostromo-color-success-200: 120 60% 80%;--nostromo-color-success-300: 120 60% 70%;--nostromo-color-success-400: 120 60% 60%;--nostromo-color-success-500: 120 60% 40%;--nostromo-color-success-600: 120 60% 30%;--nostromo-color-success-700: 120 60% 20%;--nostromo-color-success-800: 120 60% 15%;--nostromo-color-success-900: 120 60% 10%;--nostromo-color-success-950: 120 60% 5%;--nostromo-color-warning-50: 45 100% 95%;--nostromo-color-warning-100: 45 100% 90%;--nostromo-color-warning-200: 45 100% 80%;--nostromo-color-warning-300: 45 100% 70%;--nostromo-color-warning-400: 45 100% 60%;--nostromo-color-warning-500: 45 100% 50%;--nostromo-color-warning-600: 45 100% 40%;--nostromo-color-warning-700: 45 100% 30%;--nostromo-color-warning-800: 45 100% 20%;--nostromo-color-warning-900: 45 100% 10%;--nostromo-color-warning-950: 45 100% 5%;--nostromo-color-error-50: 0 80% 95%;--nostromo-color-error-100: 0 80% 90%;--nostromo-color-error-200: 0 80% 80%;--nostromo-color-error-300: 0 80% 70%;--nostromo-color-error-400: 0 80% 60%;--nostromo-color-error-500: 0 80% 50%;--nostromo-color-error-600: 0 80% 40%;--nostromo-color-error-700: 0 80% 30%;--nostromo-color-error-800: 0 80% 20%;--nostromo-color-error-900: 0 80% 10%;--nostromo-color-error-950: 0 80% 5%;--nostromo-color-info-50: 210 80% 95%;--nostromo-color-info-100: 210 80% 90%;--nostromo-color-info-200: 210 80% 80%;--nostromo-color-info-300: 210 80% 70%;--nostromo-color-info-400: 210 80% 60%;--nostromo-color-info-500: 210 80% 51%;--nostromo-color-info-600: 210 80% 40%;--nostromo-color-info-700: 210 80% 30%;--nostromo-color-info-800: 210 80% 20%;--nostromo-color-info-900: 210 80% 10%;--nostromo-color-info-950: 210 80% 5%;--nostromo-color-background: var(--nostromo-color-neutral-50);--nostromo-color-foreground: var(--nostromo-color-neutral-900);--nostromo-color-muted: var(--nostromo-color-neutral-100);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-600);--nostromo-color-popover: var(--nostromo-color-neutral-50);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-900);--nostromo-color-card: var(--nostromo-color-neutral-50);--nostromo-color-card-foreground: var(--nostromo-color-neutral-900);--nostromo-color-border: var(--nostromo-color-neutral-200);--nostromo-color-input: var(--nostromo-color-neutral-200);--nostromo-color-primary: var(--nostromo-color-brand-500);--nostromo-color-primary-foreground: var( --nostromo-color-neutral-900 );--nostromo-color-secondary: var(--nostromo-color-neutral-100);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-accent: var(--nostromo-color-brand-100);--nostromo-color-accent-foreground: var(--nostromo-color-brand-900);--nostromo-color-destructive: var(--nostromo-color-error-600);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-50);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-500);--nostromo-font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Source Code Pro", monospace;--nostromo-font-heading: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .375rem;--nostromo-radius-lg: .5rem;--nostromo-radius-xl: .75rem;--nostromo-radius-2xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-animate-duration: .15s;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .25s ease-in-out;--nostromo-transition-slow: .35s ease-in-out;--nostromo-z-dropdown: 1000;--nostromo-z-sticky: 1020;--nostromo-z-fixed: 1030;--nostromo-z-modal-backdrop: 1040;--nostromo-z-modal: 1050;--nostromo-z-popover: 1060;--nostromo-z-tooltip: 1070;--nostromo-z-toast: 1080}[data-theme=lv-426][data-color-scheme=dark]{--nostromo-color-background: var(--nostromo-color-neutral-900);--nostromo-color-foreground: var(--nostromo-color-neutral-50);--nostromo-color-muted: var(--nostromo-color-neutral-800);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-400);--nostromo-color-popover: var(--nostromo-color-neutral-800);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-50);--nostromo-color-card: var(--nostromo-color-neutral-800);--nostromo-color-card-foreground: var(--nostromo-color-neutral-50);--nostromo-color-border: var(--nostromo-color-neutral-700);--nostromo-color-input: var(--nostromo-color-neutral-700);--nostromo-color-primary: var(--nostromo-color-brand-400);--nostromo-color-primary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-secondary: var(--nostromo-color-neutral-700);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-50);--nostromo-color-accent: var(--nostromo-color-brand-800);--nostromo-color-accent-foreground: var(--nostromo-color-brand-100);--nostromo-color-destructive: var(--nostromo-color-error-400);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-900);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-400)}[data-theme=lv-426]{font-family:var(--nostromo-font-sans);line-height:1.6;color:var(--nostromo-color-foreground);background-color:var(--nostromo-color-background)}[data-theme=lv-426] .font-mono{font-family:var(--nostromo-font-mono)}[data-theme=lv-426] .font-heading{font-family:var(--nostromo-font-heading);font-weight:600;letter-spacing:-.025em}[data-theme=lv-426] .btn{border-radius:var(--nostromo-radius-md);transition:all var(--nostromo-transition-fast);background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)))}[data-theme=lv-426] .btn:hover{transform:translateY(-1px);box-shadow:var(--nostromo-shadow-lg);background:linear-gradient(135deg,hsl(var(--nostromo-color-brand-600)),hsl(var(--nostromo-color-brand-700)))}[data-theme=lv-426] .card{border-radius:var(--nostromo-radius-lg);border:1px solid var(--nostromo-color-border);background-color:var(--nostromo-color-card);box-shadow:var(--nostromo-shadow-md);background:linear-gradient(135deg,var(--nostromo-color-card),hsl(var(--nostromo-color-neutral-100)))}[data-theme=lv-426] .input{border-radius:var(--nostromo-radius-md);border:1px solid var(--nostromo-color-input);transition:all var(--nostromo-transition-fast);background:linear-gradient(135deg,var(--nostromo-color-background),hsl(var(--nostromo-color-neutral-100)))}[data-theme=lv-426] .input:focus{border-color:var(--nostromo-color-primary);box-shadow:0 0 0 3px hsl(var(--nostromo-color-primary) / .2);background:var(--nostromo-color-background)}[data-theme=lv-426] .animate-pulse{animation:lv426-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes lv426-pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.02)}}[data-theme=lv-426] .animate-spin{animation:lv426-spin 1s linear infinite}@keyframes lv426-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}[data-theme=lv-426] .btn-primary{background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)));border:1px solid hsl(var(--nostromo-color-brand-700));box-shadow:0 4px 14px hsl(var(--nostromo-color-brand-500) / .3)}[data-theme=lv-426] .btn-primary:hover{background:linear-gradient(135deg,hsl(var(--nostromo-color-brand-600)),hsl(var(--nostromo-color-brand-700)));box-shadow:0 6px 20px hsl(var(--nostromo-color-brand-500) / .4)}[data-theme=lv-426] .card-elevated{background:linear-gradient(135deg,var(--nostromo-color-card),hsl(var(--nostromo-color-neutral-100)));box-shadow:var(--nostromo-shadow-xl);border:1px solid hsl(var(--nostromo-color-brand-200))}[data-theme=lv-426] .text-gradient{background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}[data-theme=lv-426] .text-warm{color:hsl(var(--nostromo-color-brand-600))}[data-theme=lv-426] .text-earth{color:hsl(var(--nostromo-color-neutral-600))}[data-theme=sulaco]{--nostromo-color-brand-50: 210 40% 95%;--nostromo-color-brand-100: 210 40% 90%;--nostromo-color-brand-200: 210 40% 80%;--nostromo-color-brand-300: 210 40% 70%;--nostromo-color-brand-400: 210 40% 60%;--nostromo-color-brand-500: 210 40% 50%;--nostromo-color-brand-600: 210 40% 40%;--nostromo-color-brand-700: 210 40% 30%;--nostromo-color-brand-800: 210 40% 20%;--nostromo-color-brand-900: 210 40% 10%;--nostromo-color-brand-950: 210 40% 5%;--nostromo-color-neutral-50: 0 0% 98%;--nostromo-color-neutral-100: 0 0% 96%;--nostromo-color-neutral-200: 0 0% 90%;--nostromo-color-neutral-300: 0 0% 83%;--nostromo-color-neutral-400: 0 0% 64%;--nostromo-color-neutral-500: 0 0% 45%;--nostromo-color-neutral-600: 0 0% 32%;--nostromo-color-neutral-700: 0 0% 25%;--nostromo-color-neutral-800: 0 0% 15%;--nostromo-color-neutral-900: 0 0% 9%;--nostromo-color-neutral-950: 0 0% 4%;--nostromo-color-success-50: 142 76% 95%;--nostromo-color-success-100: 142 76% 90%;--nostromo-color-success-200: 142 76% 80%;--nostromo-color-success-300: 142 76% 70%;--nostromo-color-success-400: 142 76% 60%;--nostromo-color-success-500: 142 76% 40%;--nostromo-color-success-600: 142 76% 30%;--nostromo-color-success-700: 142 76% 20%;--nostromo-color-success-800: 142 76% 15%;--nostromo-color-success-900: 142 76% 10%;--nostromo-color-success-950: 142 76% 5%;--nostromo-color-warning-50: 38 92% 95%;--nostromo-color-warning-100: 38 92% 90%;--nostromo-color-warning-200: 38 92% 80%;--nostromo-color-warning-300: 38 92% 70%;--nostromo-color-warning-400: 38 92% 60%;--nostromo-color-warning-500: 38 92% 50%;--nostromo-color-warning-600: 38 92% 40%;--nostromo-color-warning-700: 38 92% 30%;--nostromo-color-warning-800: 38 92% 20%;--nostromo-color-warning-900: 38 92% 10%;--nostromo-color-warning-950: 38 92% 5%;--nostromo-color-error-50: 0 100% 95%;--nostromo-color-error-100: 0 100% 90%;--nostromo-color-error-200: 0 100% 80%;--nostromo-color-error-300: 0 100% 70%;--nostromo-color-error-400: 0 100% 60%;--nostromo-color-error-500: 0 100% 50%;--nostromo-color-error-600: 0 100% 40%;--nostromo-color-error-700: 0 100% 30%;--nostromo-color-error-800: 0 100% 20%;--nostromo-color-error-900: 0 100% 10%;--nostromo-color-error-950: 0 100% 5%;--nostromo-color-info-50: 210 100% 95%;--nostromo-color-info-100: 210 100% 90%;--nostromo-color-info-200: 210 100% 80%;--nostromo-color-info-300: 210 100% 70%;--nostromo-color-info-400: 210 100% 60%;--nostromo-color-info-500: 210 100% 50%;--nostromo-color-info-600: 210 100% 40%;--nostromo-color-info-700: 210 100% 30%;--nostromo-color-info-800: 210 100% 20%;--nostromo-color-info-900: 210 100% 10%;--nostromo-color-info-950: 210 100% 5%;--nostromo-color-background: var(--nostromo-color-neutral-50);--nostromo-color-foreground: var(--nostromo-color-neutral-900);--nostromo-color-muted: var(--nostromo-color-neutral-100);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-600);--nostromo-color-popover: var(--nostromo-color-neutral-50);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-900);--nostromo-color-card: var(--nostromo-color-neutral-50);--nostromo-color-card-foreground: var(--nostromo-color-neutral-900);--nostromo-color-border: var(--nostromo-color-neutral-200);--nostromo-color-input: var(--nostromo-color-neutral-200);--nostromo-color-primary: var(--nostromo-color-brand-600);--nostromo-color-primary-foreground: var( --nostromo-color-neutral-50 );--nostromo-color-secondary: var(--nostromo-color-neutral-100);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-accent: var(--nostromo-color-brand-100);--nostromo-color-accent-foreground: var(--nostromo-color-brand-900);--nostromo-color-destructive: var(--nostromo-color-error-600);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-50);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-500);--nostromo-font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", "Source Code Pro", monospace;--nostromo-font-heading: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--nostromo-spacing-xs: .25rem;--nostromo-spacing-sm: .5rem;--nostromo-spacing-md: 1rem;--nostromo-spacing-lg: 1.5rem;--nostromo-spacing-xl: 2rem;--nostromo-spacing-2xl: 3rem;--nostromo-spacing-3xl: 4rem;--nostromo-radius-sm: .25rem;--nostromo-radius-md: .375rem;--nostromo-radius-lg: .5rem;--nostromo-radius-xl: .75rem;--nostromo-radius-2xl: 1rem;--nostromo-radius-full: 9999px;--nostromo-animate-duration: .15s;--nostromo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--nostromo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--nostromo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--nostromo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--nostromo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--nostromo-transition-fast: .15s ease-in-out;--nostromo-transition-normal: .25s ease-in-out;--nostromo-transition-slow: .35s ease-in-out;--nostromo-z-dropdown: 1000;--nostromo-z-sticky: 1020;--nostromo-z-fixed: 1030;--nostromo-z-modal-backdrop: 1040;--nostromo-z-modal: 1050;--nostromo-z-popover: 1060;--nostromo-z-tooltip: 1070;--nostromo-z-toast: 1080}[data-theme=sulaco][data-color-scheme=dark]{--nostromo-color-background: var(--nostromo-color-neutral-900);--nostromo-color-foreground: var(--nostromo-color-neutral-50);--nostromo-color-muted: var(--nostromo-color-neutral-800);--nostromo-color-muted-foreground: var(--nostromo-color-neutral-400);--nostromo-color-popover: var(--nostromo-color-neutral-800);--nostromo-color-popover-foreground: var(--nostromo-color-neutral-50);--nostromo-color-card: var(--nostromo-color-neutral-800);--nostromo-color-card-foreground: var(--nostromo-color-neutral-50);--nostromo-color-border: var(--nostromo-color-neutral-700);--nostromo-color-input: var(--nostromo-color-neutral-700);--nostromo-color-primary: var(--nostromo-color-brand-400);--nostromo-color-primary-foreground: var(--nostromo-color-neutral-900);--nostromo-color-secondary: var(--nostromo-color-neutral-700);--nostromo-color-secondary-foreground: var(--nostromo-color-neutral-50);--nostromo-color-accent: var(--nostromo-color-brand-800);--nostromo-color-accent-foreground: var(--nostromo-color-brand-100);--nostromo-color-destructive: var(--nostromo-color-error-400);--nostromo-color-destructive-foreground: var(--nostromo-color-neutral-900);--nostromo-color-success-foreground: 0 0% 9%;--nostromo-color-warning-foreground: 0 0% 9%;--nostromo-color-error-foreground: 0 0% 98%;--nostromo-color-info-foreground: 0 0% 9%;--nostromo-color-ring: var(--nostromo-color-brand-400)}[data-theme=sulaco]{font-family:var(--nostromo-font-sans);line-height:1.6;color:var(--nostromo-color-foreground);background-color:var(--nostromo-color-background)}[data-theme=sulaco] .font-mono{font-family:var(--nostromo-font-mono)}[data-theme=sulaco] .font-heading{font-family:var(--nostromo-font-heading);font-weight:600;letter-spacing:-.025em}[data-theme=sulaco] .btn{border-radius:var(--nostromo-radius-md);transition:all var(--nostromo-transition-fast);border:1px solid transparent;font-weight:500}[data-theme=sulaco] .btn:hover{transform:translateY(-1px);box-shadow:var(--nostromo-shadow-md)}[data-theme=sulaco] .btn-primary{background:linear-gradient(135deg,var(--nostromo-color-primary),hsl(var(--nostromo-color-brand-600)));border:1px solid hsl(var(--nostromo-color-brand-700));box-shadow:0 2px 4px hsl(var(--nostromo-color-brand-500) / .2)}[data-theme=sulaco] .btn-primary:hover{background:linear-gradient(135deg,hsl(var(--nostromo-color-brand-600)),hsl(var(--nostromo-color-brand-700)));box-shadow:0 4px 8px hsl(var(--nostromo-color-brand-500) / .3)}[data-theme=sulaco] .card{border-radius:var(--nostromo-radius-lg);border:1px solid var(--nostromo-color-border);background-color:var(--nostromo-color-card);box-shadow:var(--nostromo-shadow-sm)}[data-theme=sulaco] .card-elevated{box-shadow:var(--nostromo-shadow-lg);border:1px solid hsl(var(--nostromo-color-brand-200))}[data-theme=sulaco] .input{border-radius:var(--nostromo-radius-md);border:1px solid var(--nostromo-color-input);transition:all var(--nostromo-transition-fast);font-weight:500}[data-theme=sulaco] .input:focus{border-color:var(--nostromo-color-primary);box-shadow:0 0 0 3px hsl(var(--nostromo-color-primary) / .1)}[data-theme=sulaco] .animate-pulse{animation:sulaco-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes sulaco-pulse{0%,to{opacity:1}50%{opacity:.8}}[data-theme=sulaco] .animate-spin{animation:sulaco-spin 1s linear infinite}@keyframes sulaco-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}[data-theme=sulaco] .btn-military{background:linear-gradient(135deg,var(--nostromo-color-neutral-100),var(--nostromo-color-neutral-200));border:1px solid var(--nostromo-color-neutral-300);color:var(--nostromo-color-neutral-800);font-weight:600;text-transform:uppercase;letter-spacing:.05em}[data-theme=sulaco] .btn-military:hover{background:linear-gradient(135deg,var(--nostromo-color-neutral-200),var(--nostromo-color-neutral-300));border-color:var(--nostromo-color-neutral-400);transform:translateY(-1px);box-shadow:var(--nostromo-shadow-md)}[data-theme=sulaco] .card-military{background:linear-gradient(135deg,var(--nostromo-color-card),hsl(var(--nostromo-color-neutral-100)));border:1px solid var(--nostromo-color-border);box-shadow:var(--nostromo-shadow-md)}[data-theme=sulaco] .text-military{color:var(--nostromo-color-neutral-700);font-weight:500}[data-theme=sulaco] .text-command{color:var(--nostromo-color-primary);font-weight:600}[data-theme=sulaco] .text-status{color:var(--nostromo-color-success-600);font-weight:500}[data-theme=sulaco] .text-alert{color:var(--nostromo-color-warning-600);font-weight:500}[data-theme=sulaco] .text-critical{color:var(--nostromo-color-error-600);font-weight:600}[data-theme=sulaco] .grid-military{display:grid;gap:var(--nostromo-spacing-md);grid-template-columns:repeat(auto-fit,minmax(250px,1fr))}[data-theme=sulaco] .grid-command{display:grid;gap:var(--nostromo-spacing-lg);grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}[data-theme=sulaco] .status-indicator{display:inline-flex;align-items:center;gap:var(--nostromo-spacing-sm);padding:var(--nostromo-spacing-xs) var(--nostromo-spacing-sm);border-radius:var(--nostromo-radius-full);font-size:.875rem;font-weight:500}[data-theme=sulaco] .status-online{background-color:hsl(var(--nostromo-color-success-100));color:hsl(var(--nostromo-color-success-800));border:1px solid hsl(var(--nostromo-color-success-200))}[data-theme=sulaco] .status-warning{background-color:hsl(var(--nostromo-color-warning-100));color:hsl(var(--nostromo-color-warning-800));border:1px solid hsl(var(--nostromo-color-warning-200))}[data-theme=sulaco] .status-critical{background-color:hsl(var(--nostromo-color-error-100));color:hsl(var(--nostromo-color-error-800));border:1px solid hsl(var(--nostromo-color-error-200))}[data-theme=sulaco] .status-offline{background-color:hsl(var(--nostromo-color-neutral-100));color:hsl(var(--nostromo-color-neutral-600));border:1px solid hsl(var(--nostromo-color-neutral-200))}
2
2
  /*# sourceMappingURL=index.css.map */