Initial commit

This commit is contained in:
2026-07-27 21:32:13 -07:00
parent 0d9d500fd9
commit 2a9e780826
357 changed files with 2269 additions and 14 deletions

21
src/styles/global.css Normal file
View File

@@ -0,0 +1,21 @@
/* src/styles/global.css */
:root {
--color-brand-brown: #7A5228; /* rgb(122, 82, 40) */
--color-warm-gray: #8A8A8A; /* rgb(138, 138, 138) */
--color-soft-sage: #A8B58C; /* rgb(168, 181, 140) */
--color-terracotta: #D68B66; /* rgb(214, 139, 102) */
--color-warm-linen: #EDE8E3; /* rgb(237, 232, 227) */
}
/* Base resets & styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #ffffff; /* Sets main page background to white */
color: var(--color-brand-brown);
font-family: system-ui, -apple-system, sans-serif;
}