avoid white flash while loading on dark systems #764

Massimo Melina committed Oct 6, 2024 at 17:34 UTC c8b07b9bfc6f48ea5923a337ef04d6f06dfa0281
2 files changed +2
admin/index.html
+1
@@ -9,6 +9,7 @@
9 <link rel="icon" type="image/svg+xml" href="/hfs-logo-icon.svg" />
10 <link href="../frontend/fontello.css" rel="stylesheet" />
11 <link href="../frontend/fontello.woff2" rel="prefetch" />
12 + <style>@media (prefers-color-scheme: dark) { body { background-color: #000; color: #888; } }</style>
13 </head>
14 <body>
15 <div id="root"></div>
frontend/index.html
+1
@@ -5,6 +5,7 @@
5 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0" />
6 <link href="/fontello.css" rel="stylesheet" />
7 <script type="module" src="/src/index.ts"></script>
8 + <style>@media (prefers-color-scheme: dark) { body { background-color: #000; color: #888; } }</style>
9 </head>
10 <body>
11 <div id="root">Wait for loading or <a href="?get=basic">use basic interface now</a></div>