From 194255b21d763903f9a3957cd3f8a66f720a6e81 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Thu, 19 Mar 2026 03:49:19 +0000 Subject: [PATCH] =?UTF-8?q?fix(qt6):=20soften=20light=20theme=20=E2=80=94?= =?UTF-8?q?=20muted=20gray=20palette=20instead=20of=20bright=20white?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Light mode background #d8d8e0, paper #c8c8d2, surface #bfbfc9. Enough contrast to read, not enough to need sunglasses. Co-Authored-By: Claude Opus 4.6 (1M context) --- qml/components/theming/Theme.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/components/theming/Theme.qml b/qml/components/theming/Theme.qml index 726af85fb..377979652 100644 --- a/qml/components/theming/Theme.qml +++ b/qml/components/theming/Theme.qml @@ -32,7 +32,7 @@ QtObject { readonly property var themes: ({ system: { name: "System", mode: "dark", primary: "#6366f1", background: "#0d0d0d", paper: "#1a1a1a", surface: "#242424", text: "#ffffff", textSecondary: "#a0a0a0", border: "#333333", error: "#ef4444", warning: "#f59e0b", success: "#22c55e", info: "#3b82f6" }, dark: { name: "Dark", mode: "dark", primary: "#6366f1", background: "#0d0d0d", paper: "#1a1a1a", surface: "#242424", text: "#ffffff", textSecondary: "#a0a0a0", border: "#333333", error: "#ef4444", warning: "#f59e0b", success: "#22c55e", info: "#3b82f6" }, - light: { name: "Light", mode: "light", primary: "#4f46e5", background: "#f0f0f3", paper: "#e8e8ec", surface: "#dddde2", text: "#1a1a2e", textSecondary: "#5a5a72", border: "#c8c8d4", error: "#d32f2f", warning: "#ed6c02", success: "#2e7d32", info: "#0288d1" }, + light: { name: "Light", mode: "light", primary: "#4f46e5", background: "#d8d8e0", paper: "#c8c8d2", surface: "#bfbfc9", text: "#1a1a2e", textSecondary: "#4a4a62", border: "#a8a8b8", error: "#d32f2f", warning: "#ed6c02", success: "#2e7d32", info: "#0288d1" }, midnight: { name: "Midnight", mode: "dark", primary: "#6366f1", background: "#0f172a", paper: "#1e293b", surface: "#334155", text: "#f1f5f9", textSecondary: "#94a3b8", border: "#334155", error: "#ef4444", warning: "#f59e0b", success: "#22c55e", info: "#3b82f6" }, forest: { name: "Forest", mode: "dark", primary: "#22c55e", background: "#0a1f0a", paper: "#14331a", surface: "#1a4d23", text: "#ecfdf5", textSecondary: "#a7f3d0", border: "#166534", error: "#ef4444", warning: "#f59e0b", success: "#22c55e", info: "#3b82f6" }, ocean: { name: "Ocean", mode: "dark", primary: "#0ea5e9", background: "#0c1929", paper: "#132f4c", surface: "#1e4976", text: "#e0f2fe", textSecondary: "#7dd3fc", border: "#0369a1", error: "#ef4444", warning: "#f59e0b", success: "#22c55e", info: "#0ea5e9" },