feat(frontend): rework ui

This commit is contained in:
Alois 2026-08-30 11:34:49 +02:00
commit 4d9567db9e
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
13 changed files with 5870 additions and 856 deletions

View file

@ -1,10 +1,34 @@
<!doctype html>
<html lang="en">
<html lang="en" class="dark" data-theme="methanium">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#f2f5ef" />
<title>Vibe Proxy Accounts</title>
<meta name="theme-color" content="#171e26" />
<title>Vibe Proxy</title>
<style>
html.dark,
html.dark body {
background-color: #171e26;
color: #d2e0f0;
color-scheme: dark;
}
html.light,
html.light body {
background-color: #edf1f4;
color: #10161d;
color-scheme: light;
}
</style>
<script>
const savedTheme = localStorage.getItem('theme');
const theme =
savedTheme === 'light' ||
(savedTheme === 'system' && matchMedia('(prefers-color-scheme: light)').matches)
? 'light'
: 'dark';
document.documentElement.classList.replace('dark', theme);
</script>
</head>
<body>
<div id="root"></div>