mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-26 00:05:10 -07:00
fix: Light Mode Using Dark Mode Background Color (#6014)
This commit is contained in:
parent
d577966bfb
commit
cac1699aeb
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue