svgl/styles/theme.js
2022-01-16 22:27:55 +00:00

18 lines
418 B
JavaScript

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;