diff --git a/assets/App.vue b/assets/App.vue index d7eda8da..65002c51 100644 --- a/assets/App.vue +++ b/assets/App.vue @@ -15,6 +15,7 @@ watchEffect(() => { if (theme === "auto") { theme = mode.value; } + document.querySelector('meta[name="theme-color"]')?.setAttribute("content", theme == "dark" ? "#121212" : "#3FA68F"); document.documentElement.setAttribute("data-theme", theme); }); diff --git a/public/index.html b/public/index.html index a70ed489..048a087e 100644 --- a/public/index.html +++ b/public/index.html @@ -5,6 +5,7 @@ +