From 81a42ae4446f2631959c1973e2ed1c766081280b Mon Sep 17 00:00:00 2001 From: 6foot5 <6foot5@gmail.com> Date: Wed, 5 May 2021 17:33:11 -0400 Subject: [PATCH] initial commit --- .gitignore | 1 + src/App.css | 4 ++-- src/index.css | 15 +++++++++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4d29575..8692cf6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ # misc .DS_Store +.env .env.local .env.development.local .env.test.local diff --git a/src/App.css b/src/App.css index 74b5e05..556b9d3 100644 --- a/src/App.css +++ b/src/App.css @@ -14,7 +14,7 @@ } .App-header { - background-color: #282c34; + background-color: var(--coa-green-dark); min-height: 100vh; display: flex; flex-direction: column; @@ -25,7 +25,7 @@ } .App-link { - color: #61dafb; + color: var(--coa-black); } @keyframes App-logo-spin { diff --git a/src/index.css b/src/index.css index ec2585e..d9375dc 100644 --- a/src/index.css +++ b/src/index.css @@ -1,3 +1,18 @@ +:root { + + --coa-blue-dark: #004987; + --coa-blue-med: #4077a5; + --coa-blue-light: #a6bfd4; + + --coa-green-dark: #aaad00; + --coa-green-med: #bfc240; + --coa-green-light: #e1e2a6; + + --coa-black: rgba(0,0,0,.93); + + --coa-platinum: #E6E8E6; +} + body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',