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

18 lines
458 B
JavaScript
Raw Normal View History

2025-07-10 09:58:23 -07:00
import { createSystem, defaultConfig, defineConfig } from "@chakra-ui/react";
2025-07-10 07:49:03 -07:00
2025-07-10 09:58:23 -07:00
const config = defineConfig({
theme: {
tokens: {
colors: {
primaryBG: { value: {base: "#FFFFF", _dark: "AAB8C5"} },
secondaryBG: { value: "#EDF1F1" },
border: {value: "#000000"}
2025-07-10 07:49:03 -07:00
},
2025-07-10 09:58:23 -07:00
fonts: {
body: { value: "georgia, system-ui, sans-serif" },
},
}
}
2025-07-10 07:49:03 -07:00
});
2025-07-10 09:58:23 -07:00
export const system = createSystem(defaultConfig, config);