Explorar o código

switch to light theme

Gustavo Zanatta hai 2 semanas
pai
achega
d77de59298
Modificáronse 1 ficheiros con 1 adicións e 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,