mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-13 22:06:14 +01:00
28 lines
588 B
HTML
28 lines
588 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Yaak Proxy</title>
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
background-color: white;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html,
|
|
body {
|
|
background-color: #1b1a29;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="text-base">
|
|
<div id="root"></div>
|
|
<script type="module" src="/lib/theme.ts"></script>
|
|
<script type="module" src="/main.tsx"></script>
|
|
</body>
|
|
</html>
|