mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-02 10:45:57 +00:00
46 lines
No EOL
911 B
HTML
46 lines
No EOL
911 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>VibeTunnel Preferences</title>
|
|
<style>
|
|
/* Base styles needed before component loads */
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Theme detection */
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
background: #000;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
html {
|
|
background: #fff;
|
|
}
|
|
}
|
|
|
|
html.dark {
|
|
background: #000;
|
|
}
|
|
|
|
html.light {
|
|
background: #fff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<settings-app></settings-app>
|
|
<script type="module" src="./components/settings-app.js"></script>
|
|
</body>
|
|
</html> |