Better BG color

This commit is contained in:
Gregory Schier
2024-01-28 14:43:04 -08:00
parent 6104a8b3c2
commit a54fff93a6

View File

@@ -4,7 +4,21 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Yaak App</title>
<!-- <script src="http://localhost:8097"></script>-->
<!-- <script src="http://localhost:8097"></script>-->
<!-- Certain elements like webview (and maybe <select>?) will use background
color depending on document background color-->
<style>
html, body {
background-color: white;
}
@media (prefers-color-scheme: dark) {
html, body {
background-color: black;
}
}
</style>
</head>
<body>