]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - src/components/DynamicTheme.vue
Initial Emby service commit
[github/bastienwirtz/homer.git] / src / components / DynamicTheme.vue
index 2ccb47b2d5afc243e6ddaec3cc8d8544f3868469..2d37fcbbf611594141dbf409a0f907326e3cad1e 100644 (file)
@@ -1,17 +1,15 @@
 <template>
   <DynamicStyle>
-    /* light / dark theme switch based on system pref if available */ body #app
-    {
+    :root, body #app.is-light {
     {{ getVars(themes.light) }}
     } @media (prefers-color-scheme: light), (prefers-color-scheme:
-    no-preference) { body #app {
+    no-preference) { :root, body #app {
     {{ getVars(themes.light) }}
-    } } @media (prefers-color-scheme: dark) { body #app { } } /* light / dark
-    theme override base on user choice. */ body #app.is-dark {
+    } } body #app.is-dark {
     {{ getVars(themes.dark) }}
-    } body #app.is-light {
-    {{ getVars(themes.light) }}
-    }
+    } @media (prefers-color-scheme: dark) { :root, body #app {
+    {{ getVars(themes.dark) }}
+    } }
   </DynamicStyle>
 </template>
 
@@ -27,7 +25,7 @@ export default {
       for (const themeVars in theme) {
         let value = `${theme[themeVars]}`;
         if (!value) {
-          value = "inital";
+          value = "initial";
         } else if (themeVars == "background-image") {
           value = `url(${theme[themeVars]})`;
         }