Initial commit

This commit is contained in:
2023-10-19 16:49:05 -04:00
commit d731041378
63 changed files with 10037 additions and 0 deletions

15
theme.ts Normal file
View File

@ -0,0 +1,15 @@
import { extendTheme } from "@chakra-ui/react";
const fontString =
'"Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;';
export default extendTheme({
config: {
initialColorMode: "dark",
useSystemColorMode: true,
},
fonts: {
body: fontString,
heading: fontString,
},
});