fix: Light Mode Using Dark Mode Background Color (#6014)
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run

This commit is contained in:
Michael Genson 2025-08-25 08:34:00 -05:00 committed by GitHub
commit cac1699aeb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,6 @@ export default defineNuxtPlugin(async (nuxtApp) => {
info: theme?.lightInfo ?? "#1976d2", info: theme?.lightInfo ?? "#1976d2",
warning: theme?.lightWarning ?? "#FF6D00", warning: theme?.lightWarning ?? "#FF6D00",
error: theme?.lightError ?? "#EF5350", error: theme?.lightError ?? "#EF5350",
background: "#1E1E1E",
}, },
}, },
dark: { dark: {
@ -68,6 +67,7 @@ export default defineNuxtPlugin(async (nuxtApp) => {
info: theme?.darkInfo ?? "#1976d2", info: theme?.darkInfo ?? "#1976d2",
warning: theme?.darkWarning ?? "#FF6D00", warning: theme?.darkWarning ?? "#FF6D00",
error: theme?.darkError ?? "#EF5350", error: theme?.darkError ?? "#EF5350",
background: "#1E1E1E",
}, },
}, },
}, },