From 974069a46600fe1923ff1f2b942fb7fbed61ba06 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Thu, 12 Jun 2025 00:57:29 -0400 Subject: [PATCH] fix: set default theme to 'yuu' --- client/app/root.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/app/root.tsx b/client/app/root.tsx index 7a62099..94d7132 100644 --- a/client/app/root.tsx +++ b/client/app/root.tsx @@ -58,7 +58,7 @@ export function Layout({ children }: { children: React.ReactNode }) { } export default function App() { - let theme = localStorage.getItem('theme') ?? 'midnight' + let theme = localStorage.getItem('theme') ?? 'yuu' return ( <> @@ -99,7 +99,7 @@ export function ErrorBoundary() { stack = error.stack; } - let theme = 'midnight' + let theme = 'yuu' try { theme = localStorage.getItem('theme') ?? theme } catch(err) {