2026-07-29 13:48:38 -07:00
|
|
|
import {defineSlotRecipe, createSystem, defaultConfig, defineConfig, defineRecipe} from "@chakra-ui/react";
|
2025-07-10 07:49:03 -07:00
|
|
|
|
2025-07-15 12:55:27 -07:00
|
|
|
// RECIPES
|
|
|
|
|
const headerRecipe = defineRecipe({
|
|
|
|
|
base: {
|
2026-07-22 14:58:59 -07:00
|
|
|
bg: "{transparent}",
|
2025-07-15 12:55:27 -07:00
|
|
|
color: "text",
|
|
|
|
|
width: "100%",
|
|
|
|
|
height: "100%",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "row",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "center",
|
2025-07-10 09:58:23 -07:00
|
|
|
}
|
2025-07-10 07:49:03 -07:00
|
|
|
});
|
|
|
|
|
|
2025-07-28 13:32:03 -07:00
|
|
|
const dashboardRecipe = defineRecipe({
|
2025-07-15 18:28:37 -07:00
|
|
|
base: {
|
2026-07-29 13:48:38 -07:00
|
|
|
bg: "{MainBackground}"
|
2025-07-15 18:28:37 -07:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2025-07-28 13:32:03 -07:00
|
|
|
const canvasRecipe = defineRecipe({
|
|
|
|
|
base: {
|
2026-07-22 14:58:59 -07:00
|
|
|
bg: "{transparent}",
|
2025-07-30 08:17:45 -07:00
|
|
|
zIndex: "-1",
|
|
|
|
|
color: "{text}"
|
2025-07-28 13:32:03 -07:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2025-07-15 12:55:27 -07:00
|
|
|
const sidebarRecipe = defineSlotRecipe({
|
|
|
|
|
slots: ["root", "close_button", "buttons", "dark_mode_button"],
|
|
|
|
|
base: {
|
|
|
|
|
root: {
|
2026-07-22 14:58:59 -07:00
|
|
|
// 1. Semi-transparent backgrounds
|
2026-07-29 13:48:38 -07:00
|
|
|
bg: {
|
|
|
|
|
base: "linear-gradient(to bottom right, #99000040 20%, #FF660040 60%, #EEEE0040 100%)",
|
|
|
|
|
_dark: "linear-gradient(to bottom right, #9900003C 20%, #FF66003C 60%, #FFC0003C 100%)"
|
|
|
|
|
},
|
2026-07-22 14:58:59 -07:00
|
|
|
|
|
|
|
|
// 2. The glass blur effect
|
|
|
|
|
backdropFilter: "blur(12px)",
|
2026-07-23 15:47:51 -07:00
|
|
|
WebkitBackdropFilter: "blur(12px)",
|
2026-07-22 14:58:59 -07:00
|
|
|
|
2026-07-23 15:47:51 -07:00
|
|
|
// 3. Subtle semi-transparent borders
|
2026-07-22 14:58:59 -07:00
|
|
|
border: "1px solid",
|
2026-07-29 13:48:38 -07:00
|
|
|
borderColor: {base: "rgba(255, 255, 255, 0.8)", _dark: "rgba(255, 255, 255, 0.1)"},
|
2026-07-23 15:47:51 -07:00
|
|
|
|
|
|
|
|
// CRITICAL: Remove the right border so it doesn't draw a line through your cutout
|
|
|
|
|
borderRight: "none",
|
2026-07-22 14:58:59 -07:00
|
|
|
|
|
|
|
|
borderRadius: "2xl",
|
2026-07-23 15:47:51 -07:00
|
|
|
// boxShadow: "0 4px 30px rgba(0, 0, 0, 0.1)",
|
|
|
|
|
// boxShadow: "-10px 4px 30px rgba(0, 0, 0, 0.1)",
|
2025-07-15 12:55:27 -07:00
|
|
|
width: "100%",
|
2026-07-22 14:58:59 -07:00
|
|
|
height: "calc(100% - 16px)",
|
|
|
|
|
margin: "8px",
|
2025-07-15 12:55:27 -07:00
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2026-07-22 14:58:59 -07:00
|
|
|
justifyContent: "start",
|
2026-07-23 15:47:51 -07:00
|
|
|
alignItems: "stretch",
|
2025-07-28 15:10:57 -07:00
|
|
|
gap: 2,
|
2026-07-23 15:47:51 -07:00
|
|
|
|
|
|
|
|
// CRITICAL: Adjust padding and overflow to allow the button to touch the right edge
|
|
|
|
|
pl: 2, // Keep left padding
|
|
|
|
|
py: 2, // Keep top/bottom padding
|
|
|
|
|
pr: 0, // Remove right padding
|
|
|
|
|
overflow: "visible", // Allows the curved corner patches to render outside the button
|
2026-07-22 14:58:59 -07:00
|
|
|
zIndex: 10,
|
2025-07-15 12:55:27 -07:00
|
|
|
},
|
|
|
|
|
buttons: {
|
2026-07-23 15:47:51 -07:00
|
|
|
position: "relative", // Required to anchor the corner patches
|
2025-07-15 18:28:37 -07:00
|
|
|
bg: "transparent",
|
2026-07-23 15:47:51 -07:00
|
|
|
|
|
|
|
|
transition: "background-color 0.4s ease, color 0.4s ease",
|
|
|
|
|
|
|
|
|
|
"& svg": {
|
|
|
|
|
transition: "stroke-width 0.4s ease"
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_hover: {
|
|
|
|
|
bg: "rgba(255, 255, 255, 0.1)",
|
|
|
|
|
color: "{text}",
|
|
|
|
|
fontWeight: "semibold",
|
|
|
|
|
"& svg": {
|
|
|
|
|
strokeWidth: "3"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
fontSize: "l",
|
2025-07-28 15:10:57 -07:00
|
|
|
color: {base: "{text}"},
|
2025-07-15 18:28:37 -07:00
|
|
|
variant: "ghost",
|
2025-07-16 13:31:05 -07:00
|
|
|
width: "100%",
|
2026-07-23 15:47:51 -07:00
|
|
|
|
|
|
|
|
// Flat on the right, rounded on the left
|
|
|
|
|
borderRightRadius: "0",
|
|
|
|
|
borderLeftRadius: "4xl",
|
|
|
|
|
|
|
|
|
|
"&.active": {
|
2026-07-29 13:48:38 -07:00
|
|
|
bg: "{MainBackground}",
|
2026-07-23 15:47:51 -07:00
|
|
|
color: "{textInverted}",
|
|
|
|
|
|
|
|
|
|
_hover: {
|
2026-07-29 13:48:38 -07:00
|
|
|
bg: "{MainBackground}",
|
2026-07-23 15:47:51 -07:00
|
|
|
color: "{textInverted}",
|
|
|
|
|
fontWeight: "normal",
|
|
|
|
|
"& svg": {
|
|
|
|
|
strokeWidth: "2" // Keeps the active icon at normal thickness on hover
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// The Top Inverted Curve
|
|
|
|
|
_before: {
|
|
|
|
|
content: '""',
|
|
|
|
|
position: "absolute",
|
|
|
|
|
right: "-1px",
|
|
|
|
|
top: "-25px",
|
|
|
|
|
width: "25px",
|
|
|
|
|
height: "25px",
|
2026-07-29 13:48:38 -07:00
|
|
|
bg: "inherit",
|
2026-07-23 15:47:51 -07:00
|
|
|
WebkitMaskImage: "radial-gradient(circle at top left, transparent 25px, black 25.5px)",
|
|
|
|
|
maskImage: "radial-gradient(circle at top left, transparent 25px, black 25.5px)",
|
|
|
|
|
pointerEvents: "none",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// The Bottom Inverted Curve
|
|
|
|
|
_after: {
|
|
|
|
|
content: '""',
|
|
|
|
|
position: "absolute",
|
|
|
|
|
right: "-1px",
|
|
|
|
|
bottom: "-25px",
|
|
|
|
|
width: "25px",
|
|
|
|
|
height: "25px",
|
|
|
|
|
bg: "inherit",
|
|
|
|
|
WebkitMaskImage: "radial-gradient(circle at bottom left, transparent 25px, black 25.5px)",
|
|
|
|
|
maskImage: "radial-gradient(circle at bottom left, transparent 25px, black 25.5px)",
|
|
|
|
|
pointerEvents: "none",
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-07-15 12:55:27 -07:00
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2025-07-22 11:58:10 -07:00
|
|
|
const widgetRecipe = defineSlotRecipe({
|
|
|
|
|
slots: ["root", "header", "canvas"],
|
|
|
|
|
base: {
|
|
|
|
|
root: {
|
2025-07-23 13:44:24 -07:00
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "1",
|
|
|
|
|
position: "relative",
|
2025-07-22 11:58:10 -07:00
|
|
|
bg: "base100",
|
|
|
|
|
borderRadius: "md",
|
2025-07-22 13:41:32 -07:00
|
|
|
p: "1",
|
2025-07-23 13:44:24 -07:00
|
|
|
paddingBottom: "2",
|
2025-07-22 13:41:32 -07:00
|
|
|
border: "1px solid",
|
|
|
|
|
borderColor: "{base300}",
|
|
|
|
|
textAlign: "center",
|
2025-08-05 17:12:59 -07:00
|
|
|
height: "100%",
|
2026-01-30 19:11:11 +00:00
|
|
|
position: "fixed"
|
2025-07-22 11:58:10 -07:00
|
|
|
},
|
|
|
|
|
header: {
|
2025-07-23 14:58:22 -07:00
|
|
|
flexShrink: "0",
|
2025-07-30 08:17:45 -07:00
|
|
|
bg: "{base300}",
|
|
|
|
|
color: "{text}",
|
2025-07-22 11:58:10 -07:00
|
|
|
cursor: "move",
|
2025-07-23 13:44:24 -07:00
|
|
|
borderRadius: "sm",
|
2025-07-28 12:44:17 -07:00
|
|
|
whiteSpace: "nowrap",
|
|
|
|
|
textAlign: "left",
|
|
|
|
|
pl: "2"
|
2025-07-22 11:58:10 -07:00
|
|
|
},
|
|
|
|
|
canvas: {
|
2025-07-23 13:44:24 -07:00
|
|
|
flex: "1 1 auto",
|
2025-07-30 08:17:45 -07:00
|
|
|
bg: "transparent",
|
|
|
|
|
color: "{text}",
|
2025-07-23 13:44:24 -07:00
|
|
|
cursor: "default",
|
|
|
|
|
borderRadius: "md",
|
|
|
|
|
overflow: "auto",
|
2025-07-22 11:58:10 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2026-07-29 13:48:38 -07:00
|
|
|
const glassPanelRecipe = defineSlotRecipe({
|
|
|
|
|
slots: ["root", "header", "body"],
|
|
|
|
|
|
|
|
|
|
// 🧊 THE GLASS MATH (Applies to everything)
|
|
|
|
|
base: {
|
|
|
|
|
root: {
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
position: "relative",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
bg: {base: "rgba(255, 255, 255, 0.4)", _dark: "rgba(255, 255, 255, 0.04)"},
|
|
|
|
|
backdropFilter: "blur(12px)",
|
|
|
|
|
WebkitBackdropFilter: "blur(12px)",
|
|
|
|
|
border: "1px solid",
|
|
|
|
|
borderColor: {base: "gray.200", _dark: "whiteAlpha.200"},
|
|
|
|
|
boxShadow: "sm",
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 📏 THE LAYOUTS (Applies selectively)
|
|
|
|
|
variants: {
|
|
|
|
|
layout: {
|
|
|
|
|
widget: {
|
|
|
|
|
root: {width: "100%", height: "100%", borderRadius: "3xl"},
|
|
|
|
|
header: {display: "flex", justifyContent: "space-between", alignItems: "center", px: 3, pt: 2, pb: 0},
|
|
|
|
|
body: {flex: "1", overflow: "hidden", position: "relative", px: 1, pb: 1, pt: 0}
|
|
|
|
|
},
|
|
|
|
|
dropdown: {
|
|
|
|
|
root: {borderRadius: "xl", p: 1}
|
|
|
|
|
// (Header and body slots are ignored here because dropdowns don't use them)
|
2026-08-04 09:05:30 -07:00
|
|
|
},
|
|
|
|
|
popover: {
|
|
|
|
|
root: {
|
|
|
|
|
borderRadius: "2xl",
|
|
|
|
|
p: 4,
|
|
|
|
|
boxShadow: "xl",
|
|
|
|
|
minW: "240px",
|
|
|
|
|
// OVERRIDES: Make the background 85-90% opaque instead of 40%
|
|
|
|
|
bg: { base: "rgba(255, 255, 255, 0.75)", _dark: "rgba(20, 22, 25, 0.8)" },
|
|
|
|
|
|
|
|
|
|
// OVERRIDES: Increase the blur just to smooth out any stubborn gridlines
|
|
|
|
|
backdropFilter: "blur(20px)",
|
|
|
|
|
WebkitBackdropFilter: "blur(20px)",
|
|
|
|
|
}
|
2026-07-29 13:48:38 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
defaultVariants: {
|
|
|
|
|
layout: "widget"
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
const glassTabRecipe = defineRecipe({
|
|
|
|
|
base: {
|
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
height: "40px",
|
|
|
|
|
|
|
|
|
|
// The Circle State (Inactive)
|
|
|
|
|
maxWidth: "40px",
|
|
|
|
|
minWidth: "40px",
|
|
|
|
|
px: "8px",
|
|
|
|
|
gap: 2,
|
|
|
|
|
|
|
|
|
|
// CRITICAL: Locks the shape to a perfect circle/pill
|
|
|
|
|
borderRadius: "full",
|
|
|
|
|
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
whiteSpace: "nowrap",
|
|
|
|
|
textDecoration: "none",
|
|
|
|
|
fontWeight: "bold",
|
|
|
|
|
color: "fg.muted",
|
|
|
|
|
|
|
|
|
|
// --- THE GLASS EFFECT (Inactive) ---
|
|
|
|
|
// Uses a highly transparent white/black depending on mode
|
|
|
|
|
bg: {base: "rgba(255, 255, 255, 0.4)", _dark: "rgba(255, 255, 255, 0.03)"},
|
|
|
|
|
backdropFilter: "blur(12px)",
|
|
|
|
|
WebkitBackdropFilter: "blur(12px)",
|
|
|
|
|
border: "1px solid",
|
|
|
|
|
borderColor: {base: "rgba(0, 0, 0, 0.05)", _dark: "rgba(255, 255, 255, 0.08)"},
|
|
|
|
|
boxShadow: "0 4px 6px rgba(0, 0, 0, 0.02)", // Tiny shadow to lift it off the canvas
|
|
|
|
|
|
|
|
|
|
transition: "all 0.85s cubic-bezier(0.34, 1.56, 0.64, 1)",
|
|
|
|
|
|
|
|
|
|
"&:hover, &[data-state='open'], &[aria-expanded='true']": {
|
|
|
|
|
maxWidth: "250px",
|
|
|
|
|
pr: "16px",
|
|
|
|
|
// --- THE GLASS EFFECT (Hover) ---
|
|
|
|
|
// Becomes slightly more opaque when you mouse over
|
|
|
|
|
bg: {base: "rgba(255, 255, 255, 0.8)", _dark: "rgba(255, 255, 255, 0.1)"},
|
|
|
|
|
borderColor: {base: "rgba(0, 0, 0, 0.1)", _dark: "rgba(255, 255, 255, 0.15)"},
|
|
|
|
|
color: "fg",
|
|
|
|
|
textDecoration: "none",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"&.active": {
|
|
|
|
|
maxWidth: "250px",
|
|
|
|
|
pr: "16px",
|
|
|
|
|
|
|
|
|
|
bg: "{gooeyButtonBackground}",
|
|
|
|
|
borderColor: "transparent",
|
|
|
|
|
color: "{textInverted}",
|
|
|
|
|
boxShadow: "0 4px 12px rgba(0, 0, 0, 0.1)", // Stronger shadow for the active tab
|
|
|
|
|
|
|
|
|
|
_hover: {
|
|
|
|
|
bg: "{gooeyButtonBackground}",
|
|
|
|
|
cursor: "default",
|
|
|
|
|
textDecoration: "none",
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2025-07-15 12:55:27 -07:00
|
|
|
const config = defineConfig({
|
2025-07-31 08:56:32 -07:00
|
|
|
globalCss: {
|
|
|
|
|
".react-grid-placeholder": {
|
2026-07-29 13:48:38 -07:00
|
|
|
background: "#c0d2e3ff !important",
|
|
|
|
|
borderColor: "#a9b6c2ff !important",
|
|
|
|
|
boxShadow: "0 0 10px #c0d2e3ff !important",
|
2025-07-31 09:23:40 -07:00
|
|
|
opacity: "1 !important",
|
2026-07-29 13:48:38 -07:00
|
|
|
borderRadius: "5px",
|
|
|
|
|
_dark: {
|
|
|
|
|
background: "#393c3fff !important",
|
|
|
|
|
borderColor: "#000000ff !important",
|
|
|
|
|
boxShadow: "0 0 10px #16181bff !important",
|
|
|
|
|
opacity: "1 !important",
|
2025-07-31 09:23:40 -07:00
|
|
|
},
|
2025-07-31 08:56:32 -07:00
|
|
|
},
|
|
|
|
|
".react-resizable-handle-se": {
|
|
|
|
|
zIndex: "1",
|
|
|
|
|
},
|
|
|
|
|
"*": {
|
|
|
|
|
scrollbarWidth: "thin",
|
|
|
|
|
scrollbarColor: "#a0aec0 transparent",
|
2025-07-31 09:23:40 -07:00
|
|
|
_dark: {
|
|
|
|
|
scrollbarColor: "#474747ff transparent",
|
|
|
|
|
}
|
2025-07-31 08:56:32 -07:00
|
|
|
},
|
|
|
|
|
"::-webkit-scrollbar": {
|
|
|
|
|
width: "8px",
|
|
|
|
|
},
|
|
|
|
|
"::-webkit-scrollbar-thumb": {
|
2025-07-31 09:23:40 -07:00
|
|
|
backgroundColor: "rgba(100, 100, 100, 0.4)",
|
2025-07-31 08:56:32 -07:00
|
|
|
borderRadius: "4px",
|
2025-07-31 09:23:40 -07:00
|
|
|
_dark: {
|
|
|
|
|
backgroundColor: "rgba(35, 35, 35, 0.81)",
|
|
|
|
|
}
|
2025-07-31 08:56:32 -07:00
|
|
|
},
|
|
|
|
|
"::-webkit-scrollbar-track": {
|
|
|
|
|
background: "transparent",
|
|
|
|
|
},
|
2026-06-05 11:13:10 -07:00
|
|
|
// '.leaflet-tile': {
|
|
|
|
|
// _dark: {
|
|
|
|
|
// filter: "invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%)",
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
'.leaflet-control-zoom-in, .leaflet-control-zoom-out, .leaflet-control-attribution, .leaflet-container': {
|
2025-07-31 08:56:32 -07:00
|
|
|
_dark: {
|
|
|
|
|
filter: "invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%)",
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
'.leaflet-control-attribution': {
|
|
|
|
|
_dark: {
|
|
|
|
|
filter: "invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%)",
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
'.leaflet-container': {
|
2026-06-05 11:13:10 -07:00
|
|
|
fontFamily: "system-ui, sans-serif !important",
|
2025-07-31 08:56:32 -07:00
|
|
|
_dark: {
|
|
|
|
|
filter: "invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%)",
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-06-05 11:13:10 -07:00
|
|
|
// ".leaflet-popup-content": {
|
|
|
|
|
// fontFamily: "georgia, system-ui, sans-serif !important"
|
|
|
|
|
// },
|
|
|
|
|
// ".leaflet-control a": {
|
|
|
|
|
// fontFamily: "georgia, system-ui, sans-serif !important"
|
|
|
|
|
// },
|
|
|
|
|
// ".leaflet-tooltip": {
|
|
|
|
|
// fontFamily: "georgia, system-ui, sans-serif !important"
|
|
|
|
|
// },
|
2025-08-05 17:12:59 -07:00
|
|
|
".react-grid-item": {
|
|
|
|
|
transition: "none !important"
|
|
|
|
|
},
|
2025-07-31 08:56:32 -07:00
|
|
|
},
|
2025-07-15 12:55:27 -07:00
|
|
|
theme: {
|
|
|
|
|
semanticTokens: {
|
|
|
|
|
colors: {
|
2026-07-29 13:48:38 -07:00
|
|
|
base100: {value: {base: "#f6f9faff", _dark: "#1617199e"}},
|
|
|
|
|
base200: {value: {base: "#e6ecf1ff", _dark: "#242424"}},
|
|
|
|
|
base300: {value: {base: "#d3dae4ff", _dark: "#0a0b0bff"}},
|
|
|
|
|
primary: {value: {base: "#2B98F8", _dark: "#2B98F8"}},
|
|
|
|
|
primaryLt: {value: {base: "#98cdffff", _dark: "#98cdffff"}},
|
|
|
|
|
secondaryBG: {value: {base: "#EDF1F1", _dark: "#121212"}},
|
2025-08-19 16:45:03 -07:00
|
|
|
border: {value: {base: "#000000", _dark: "#cbcbcb84"}},
|
2026-07-24 14:11:17 -07:00
|
|
|
text: {value: {base: "#000000", _dark: "#FFFFFF"}},
|
|
|
|
|
textInverted: {value: {base: "#000000", _dark: "#FFFFFF"}},
|
|
|
|
|
icon: {value: {base: "#000000", _dark: "#FFFFFF"}},
|
2026-07-29 13:48:38 -07:00
|
|
|
gooeyButtonBackground: {value: {base: "rgba(255, 255, 255, 0.1)", _dark: "rgba(255, 255, 255, 0.1)"}},
|
|
|
|
|
MainBackground: {value: {base: "#F9F9F9", _dark: "#141414"}},
|
|
|
|
|
titleColor: {value: {base: "gray.800", _dark: "#FFFFFF"}},
|
|
|
|
|
iconColor: {value: {base: "gray.600", _dark: "#000000"}},
|
|
|
|
|
glassSeperator: {value: {base: "#0000001A", _dark: "#FFFFFF3F"}},
|
2025-07-15 12:55:27 -07:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
tokens: {
|
|
|
|
|
fonts: {
|
2026-07-29 13:48:38 -07:00
|
|
|
body: {value: "system-ui, sans-serif"},
|
2025-07-15 12:55:27 -07:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
recipes: {
|
|
|
|
|
header: headerRecipe,
|
2025-07-28 13:32:03 -07:00
|
|
|
dashboard: dashboardRecipe,
|
2025-07-15 18:28:37 -07:00
|
|
|
canvas: canvasRecipe,
|
2026-07-29 13:48:38 -07:00
|
|
|
glassTab: glassTabRecipe
|
2025-07-15 12:55:27 -07:00
|
|
|
},
|
|
|
|
|
slotRecipes: {
|
|
|
|
|
sidebar: sidebarRecipe,
|
2025-07-22 11:58:10 -07:00
|
|
|
widget: widgetRecipe,
|
2026-07-29 13:48:38 -07:00
|
|
|
glassPanel: glassPanelRecipe,
|
2025-07-22 12:56:44 -07:00
|
|
|
},
|
2025-07-15 12:55:27 -07:00
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2025-07-10 09:58:23 -07:00
|
|
|
export const system = createSystem(defaultConfig, config);
|