Files
yingqing/core/frontend/index.html
T
Azmat@qq.com 5dbb240b59
Deploy dev / deploy (push) Successful in 1m16s
Dark模式 oss存储
2026-09-24 18:06:00 +08:00

29 lines
984 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="icon" href="/assets/yz/logo.png" />
<title>影擎</title>
<script>
(function () {
try {
var key = "yingqing-appearance";
var raw = localStorage.getItem(key) || "system";
var theme = raw;
if (raw !== "light" && raw !== "dark") {
theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
}
document.documentElement.setAttribute("data-theme", theme);
document.documentElement.style.colorScheme = theme;
} catch (e) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>