Forráskód Böngészése

switch to light theme

Gustavo Zanatta 2 hete
szülő
commit
d77de59298
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      src/App.vue

+ 1 - 1
src/App.vue

@@ -21,7 +21,7 @@ const systemTheme = window.matchMedia("(prefers-color-scheme: dark)").matches
 const theme = $q.cookies.get("theme") || systemTheme;
 const localeCookie = Cookies.get("locale") || window.navigator.language;
 console.log(theme, localeCookie);
-$q.dark.set(theme == "dark");
+$q.dark.set(theme == "light");
 
 watch(
   () => $q.dark.isActive,