feat: adapt Exile-ui for linux

This commit is contained in:
2026-06-01 08:22:29 +02:00
parent f7bc80c86b
commit 166ce7816d
426 changed files with 13082 additions and 8 deletions

24
src/app.css Normal file
View File

@ -0,0 +1,24 @@
:root {
color-scheme: dark;
--bg: #14110d;
--panel: #1d1812;
--border: #3a2f22;
--text: #d8cdbb;
--muted: #8c8170;
--accent: #c8a24a;
--accent2: #66b2ff;
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
background: transparent;
color: var(--text);
font-family: "Fontin SmallCaps", "Segoe UI", system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
}