mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
fix: theme dark/light are swapped (#6001)
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Build Containers / publish (push) Waiting to run
Release Drafter / ✏️ Draft release (push) Waiting to run
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Build Containers / publish (push) Waiting to run
Release Drafter / ✏️ Draft release (push) Waiting to run
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
parent
3f52c66f02
commit
01d3d5d325
2 changed files with 6 additions and 6 deletions
|
@ -92,8 +92,8 @@ export default defineNuxtConfig({
|
|||
light: {
|
||||
primary: process.env.THEME_LIGHT_PRIMARY || "#E58325",
|
||||
accent: process.env.THEME_LIGHT_ACCENT || "#007A99",
|
||||
secondary: process.env.THEME_DARK_SECONDARY || "#973542",
|
||||
success: process.env.THEME_DARK_SUCCESS || "#43A047",
|
||||
secondary: process.env.THEME_LIGHT_SECONDARY || "#973542",
|
||||
success: process.env.THEME_LIGHT_SUCCESS || "#43A047",
|
||||
info: process.env.THEME_LIGHT_INFO || "#1976d2",
|
||||
warning: process.env.THEME_LIGHT_WARNING || "#FF6D00",
|
||||
error: process.env.THEME_LIGHT_ERROR || "#EF5350",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue