import { extendTheme, withDefaultColorScheme } from "@chakra-ui/react"; export const theme = extendTheme( { direction: "rtl", styles: { global: { html: { fontSize: "14px", }, body: { bg: "white", }, }, }, fonts: { heading: "Estedad", body: "Estedad", }, }, withDefaultColorScheme({ colorScheme: "facebook" }), );