32 lines
569 B
TypeScript
32 lines
569 B
TypeScript
import { createSystem, defaultConfig } from "@chakra-ui/react"
|
|
import { buttonRecipe } from "./theme/button.recipe"
|
|
|
|
export const system = createSystem(defaultConfig, {
|
|
globalCss: {
|
|
html: {
|
|
fontSize: "16px",
|
|
},
|
|
body: {
|
|
fontSize: "0.875rem",
|
|
margin: 0,
|
|
padding: 0,
|
|
},
|
|
".main-link": {
|
|
color: "ui.main",
|
|
fontWeight: "bold",
|
|
},
|
|
},
|
|
theme: {
|
|
tokens: {
|
|
colors: {
|
|
ui: {
|
|
main: { value: "#009688" },
|
|
},
|
|
},
|
|
},
|
|
recipes: {
|
|
button: buttonRecipe,
|
|
},
|
|
},
|
|
})
|