Files
Web-Frontend/client/src/theme.js
T

132 lines
3.2 KiB
JavaScript
Raw Normal View History

2025-07-15 12:55:27 -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: {
2025-07-15 18:28:37 -07:00
bg: "{base200}",
2025-07-15 12:55:27 -07:00
color: "text",
width: "100%",
height: "100%",
2025-07-16 07:21:26 -07:00
borderBottom: "1px solid",
2025-07-15 12:55:27 -07:00
borderBottomColor:"{border}",
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: {
bg: "{base200}"
}
});
2025-07-28 13:32:03 -07:00
const canvasRecipe = defineRecipe({
base: {
bg: "{base200}",
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: {
2025-07-16 07:21:26 -07:00
bg: "{base200}",
borderRight: "1px solid",
2025-07-15 12:55:27 -07:00
borderColor: "{border}",
width: "100%",
height: "100%",
display: "flex",
flexDirection: "column",
justifyContent: "start",
alignItems: "start",
2025-07-28 15:10:57 -07:00
gap: 2,
2025-07-15 12:55:27 -07:00
p: 2,
},
buttons: {
2025-07-15 18:28:37 -07:00
bg: "transparent",
2025-07-28 15:10:57 -07:00
_hover: {bg: "{primaryLt}", color: "{textInverted}"},
2025-07-15 12:55:27 -07:00
fontSize: "xl",
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%",
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-07-23 13:44:24 -07:00
height: "100%"
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
}
}
});
2025-07-15 12:55:27 -07:00
const config = defineConfig({
theme: {
semanticTokens: {
colors: {
2025-07-30 08:17:45 -07:00
base100: { value: {base: "#f6f9faff", _dark: "#1617199e"}},
2025-07-22 13:41:32 -07:00
base200: { value: {base: "#e6ecf1ff", _dark: "#242424"}},
2025-07-30 08:17:45 -07:00
base300: { value: {base: "#d3dae4ff", _dark: "#0a0b0bff"}},
// primary: { value: {base: "#9cd855", _dark: "#629631"}},
primary: { value: {base: "#2B98F8", _dark: "#2B98F8"}},
// primaryLt: { value: {base: "#c9e9a0", _dark: "#92948e"}},
2025-07-22 09:26:40 -07:00
primaryLt: { value: {base: "#98cdffff", _dark: "#98cdffff"}},
2025-07-15 12:55:27 -07:00
secondaryBG: { value: {base: "#EDF1F1", _dark: "#121212"}},
border: {value: {base: "#000000", _dark: "#CBCBCB"}},
2025-07-28 15:10:57 -07:00
text: {value: {base: "#000000", _dark: "lightgrey"}},
textInverted: {value: "white"},
icon: {value: {base: "#000000", _dark: "lightgrey"}},
2025-07-15 12:55:27 -07:00
},
},
tokens: {
fonts: {
body: { value: "georgia, system-ui, sans-serif" },
},
},
recipes: {
header: headerRecipe,
2025-07-28 13:32:03 -07:00
dashboard: dashboardRecipe,
2025-07-15 18:28:37 -07:00
canvas: canvasRecipe,
2025-07-15 12:55:27 -07:00
},
slotRecipes: {
sidebar: sidebarRecipe,
2025-07-22 11:58:10 -07:00
widget: widgetRecipe,
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);