mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 16:24:31 -04:00
fix: Light Mode Using Dark Mode Background Color (#6014)
This commit is contained in:
@@ -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",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user