feat: intro and some context

This commit is contained in:
lew 2026-03-24 03:18:16 +00:00
parent 38768ca963
commit a87ee38839
5 changed files with 114 additions and 28 deletions

View file

@ -17,6 +17,7 @@
--text-muted: #737373;
--accent: #0066cc;
--accent-hover: #0052a3;
--error: #dc2626;
}
.dark {
@ -28,6 +29,7 @@
--text-muted: #a3a3a3;
--accent: #4da6ff;
--accent-hover: #80bfff;
--error: #f87171;
}
body {
@ -35,3 +37,9 @@ body {
color: var(--text);
font-family: system-ui, -apple-system, sans-serif;
}
.field-error input,
.field-error select,
.field-error textarea {
border-color: var(--error) !important;
}