feat(fend): skeleton implementation of the form from XML

This commit is contained in:
Lewis Wynne 2026-03-23 18:36:31 +00:00
parent ebc522f568
commit 3c6a31f86b
20 changed files with 563 additions and 2 deletions

View file

@ -1 +1,31 @@
@import 'tailwindcss';
@custom-variant dark (&:where(.dark, .dark *));
:root {
--bg: #fafafa;
--bg-card: #ffffff;
--bg-input: #ffffff;
--border: #d4d4d4;
--text: #171717;
--text-muted: #737373;
--accent: #0066cc;
--accent-hover: #0052a3;
}
.dark {
--bg: #0a0a0a;
--bg-card: #171717;
--bg-input: #0a0a0a;
--border: #2e2e2e;
--text: #e5e5e5;
--text-muted: #a3a3a3;
--accent: #4da6ff;
--accent-hover: #80bfff;
}
body {
background-color: var(--bg);
color: var(--text);
font-family: system-ui, -apple-system, sans-serif;
}