summaryrefslogtreecommitdiff
path: root/chakra.theme.js
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-09-27 14:05:15 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-09-27 14:05:15 +0700
commit616e9292cd1db6bbc0cd28208e5403dd667152b9 (patch)
treeb212eb9bccb43bcc9070c0a93059034ec1cf998c /chakra.theme.js
parent81787db3eddc401e40304286e4d01cf60a7ea3d0 (diff)
Update with chakra UI theme
Diffstat (limited to 'chakra.theme.js')
-rw-r--r--chakra.theme.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/chakra.theme.js b/chakra.theme.js
new file mode 100644
index 00000000..f379db20
--- /dev/null
+++ b/chakra.theme.js
@@ -0,0 +1,10 @@
+import { extendTheme } from '@chakra-ui/react'
+
+const theme = extendTheme({
+ fonts: {
+ heading: `'Inter', sans-serif`,
+ body: `'Inter', sans-serif`
+ }
+})
+
+export default theme