Skip to content
Discussion options

You must be logged in to vote

You need to modify frontend/src/components/ui/provider.tsx:

export function CustomProvider(props: PropsWithChildren) {
  return (
    <ChakraProvider value={system}>
-      <ColorModeProvider defaultTheme="light">
+      <ColorModeProvider
+        attribute="class"
+        defaultTheme="dark"
+        enableSystem={false}
+      >
        {props.children}
      </ColorModeProvider>
      <Toaster />
    </ChakraProvider>
  )
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by YuriiMotov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
2 participants