mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-13 08:46:56 +08:00
18 lines
419 B
JavaScript
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; |