Files
fast_api_template/frontend/src/theme.tsx
T

32 lines
569 B
TypeScript
Raw Normal View History

2025-02-17 19:33:00 +00:00
import { createSystem, defaultConfig } from "@chakra-ui/react"
import { buttonRecipe } from "./theme/button.recipe"
2025-02-17 19:33:00 +00:00
export const system = createSystem(defaultConfig, {
globalCss: {
html: {
fontSize: "16px",
},
body: {
fontSize: "0.875rem",
margin: 0,
padding: 0,
},
".main-link": {
color: "ui.main",
fontWeight: "bold",
},
2024-03-08 14:58:36 +01:00
},
2025-02-17 19:33:00 +00:00
theme: {
tokens: {
colors: {
ui: {
main: { value: "#009688" },
2024-03-11 16:50:46 +01:00
},
},
},
2025-02-17 19:33:00 +00:00
recipes: {
button: buttonRecipe,
},
2024-03-08 14:58:36 +01:00
},
})