Explorar el Código

switch to light theme

Gustavo Zanatta hace 2 semanas
padre
commit
d77de59298
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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,