We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4318f75 commit 388d990Copy full SHA for 388d990
1 file changed
app/routes/__root.tsx
@@ -99,7 +99,19 @@ export const queryClient = new QueryClient({
99
function RootDocument({ children }: Readonly<{ children: ReactNode }>) {
100
return (
101
<QueryClientProvider client={queryClient}>
102
- <ClerkProvider>
+ <ClerkProvider
103
+ appearance={{
104
+ elements: {
105
+ logoImage: "rounded-lg",
106
+ providerIcon__github: {
107
+ filter: "brightness(0) invert(1)",
108
+ },
109
+ socialButtonsIconButton: "bg-zinc-800",
110
+ profileSectionPrimaryButton: "text-primary",
111
+ navbarMobileMenuRow: "bg-zinc-800",
112
113
+ }}
114
+ >
115
<html lang="en" className="dark">
116
<head>
117
<HeadContent />
0 commit comments