From cac1699aeb4bd93e4642458bfe8b5ec500560c52 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Mon, 25 Aug 2025 08:34:00 -0500 Subject: [PATCH] fix: Light Mode Using Dark Mode Background Color (#6014) --- frontend/plugins/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/plugins/theme.ts b/frontend/plugins/theme.ts index 6841776b4..097915673 100644 --- a/frontend/plugins/theme.ts +++ b/frontend/plugins/theme.ts @@ -55,7 +55,6 @@ export default defineNuxtPlugin(async (nuxtApp) => { info: theme?.lightInfo ?? "#1976d2", warning: theme?.lightWarning ?? "#FF6D00", error: theme?.lightError ?? "#EF5350", - background: "#1E1E1E", }, }, dark: { @@ -68,6 +67,7 @@ export default defineNuxtPlugin(async (nuxtApp) => { info: theme?.darkInfo ?? "#1976d2", warning: theme?.darkWarning ?? "#FF6D00", error: theme?.darkError ?? "#EF5350", + background: "#1E1E1E", }, }, },