svgl/styles/theme.js
2022-02-18 17:19:05 +00:00

18 lines
419 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: "Inter-Regular",
fontWeight: "light",
color: mode("#2b2c34", "whiteAlpha.900")(props),
bg: mode("#fbfbfb", "#16161a")(props),
},
}),
}
});
export default theme;