mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 00:04:23 -04:00
fix: theme dark/light are swapped (#6001)
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
@@ -45,8 +45,8 @@ export default defineNuxtPlugin(async (nuxtApp) => {
|
||||
darken: 3,
|
||||
},
|
||||
themes: {
|
||||
dark: {
|
||||
dark: true,
|
||||
light: {
|
||||
dark: false,
|
||||
colors: {
|
||||
primary: theme?.lightPrimary ?? "#E58325",
|
||||
accent: theme?.lightAccent ?? "#007A99",
|
||||
@@ -58,8 +58,8 @@ export default defineNuxtPlugin(async (nuxtApp) => {
|
||||
background: "#1E1E1E",
|
||||
},
|
||||
},
|
||||
light: {
|
||||
dark: false,
|
||||
dark: {
|
||||
dark: true,
|
||||
colors: {
|
||||
primary: theme?.darkPrimary ?? "#E58325",
|
||||
accent: theme?.darkAccent ?? "#007A99",
|
||||
|
||||
Reference in New Issue
Block a user