svgl/styles/theme.js

18 lines
418 B
JavaScript
Raw Normal View History

2022-01-17 06:27:55 +08:00
import { extendTheme } from "@chakra-ui/react";
import { mode } from "@chakra-ui/theme-tools";
const theme = extendTheme({
styles: {
global: (props) => ({
body: {
fontSize: "18px",
fontFamily: "Eina-Regular",
fontWeight: "light",
color: mode("#2b2c34", "whiteAlpha.900")(props),
bg: mode("#fffffe", "#16161a")(props),
},
}),
}
});
export default theme;