From bfe61c220ac9a1a1484e7fe140d674eea5b2332b Mon Sep 17 00:00:00 2001 From: jules Date: Sat, 2 May 2026 18:41:54 +1000 Subject: [PATCH] Default to dark mode and small text on first load MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bootstrap script previously fell back to the OS color-scheme preference and left font-scale unset until the user picked one. For admin work — dense tables, lots of small text, monitoring dashboards — dark + sm is the better starting point and matches what most operators end up choosing anyway. Users who've already picked a theme/font keep their stored preference; this only affects fresh sessions where localStorage has no value yet. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/root.tsx b/app/root.tsx index 3d1a0eb..8e7c096 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -28,7 +28,7 @@ export function Layout({ children }: { children: React.ReactNode }) {