API, Backend & Frontend

This commit is contained in:
Ichitux
2026-04-01 01:18:21 +02:00
parent 331c04fbef
commit 0fe8ec9bc0
44 changed files with 10060 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
:root {
/* Brand — teal (trust / health), no purple */
--primary: #0f766e;
--primary-hover: #0d9488;
--primary-light: #ccfbf1;
--primary-faint: rgba(15, 118, 110, 0.08);
--primary-ring: rgba(15, 118, 110, 0.22);
--primary-shadow: rgba(15, 118, 110, 0.18);
/* Warm secondary for emphasis (badges, subtle highlights) */
--accent: #047857;
--accent-warm: #b45309;
/* Neutrals */
--text-main: #1c1917;
--text-muted: #57534e;
--surface: #ffffff;
--surface-muted: #f5f5f4;
--surface-card: #fafaf9;
--border: #e7e5e4;
--border-strong: #d6d3d1;
--glass-bg: rgba(255, 255, 255, 0.92);
--glass-border: rgba(231, 229, 228, 0.9);
--glass-shadow: 0 1px 3px rgba(28, 25, 23, 0.06), 0 8px 24px rgba(28, 25, 23, 0.04);
--radius: 14px;
--radius-sm: 10px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', system-ui, sans-serif;
color: var(--text-main);
background-color: var(--surface-muted);
background-image:
linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
url('./assets/bg.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root {
min-height: 100vh;
}