Initial commit
This commit is contained in:
21
src/styles/global.css
Normal file
21
src/styles/global.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user