I fixed the lightmode on the sidebar and added

more colour themes. I fixed the settings buttons.
This commit is contained in:
2026-06-22 16:26:45 +02:00
parent 95e87c8429
commit ba947cea87
10 changed files with 652 additions and 51 deletions
+8 -1
View File
@@ -4,5 +4,12 @@ import { ThemeProvider as NextThemesProvider } from "next-themes"
import { type ThemeProviderProps } from "next-themes"
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
return (
<NextThemesProvider
themes={["light", "dark", "system", "ocean", "forest", "sunset", "midnight"]}
{...props}
>
{children}
</NextThemesProvider>
)
}