Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
6foot5 committed May 5, 2021
1 parent 846cc81 commit 81a42ae
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
Expand Down
4 changes: 2 additions & 2 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

.App-header {
background-color: #282c34;
background-color: var(--coa-green-dark);
min-height: 100vh;
display: flex;
flex-direction: column;
Expand All @@ -25,7 +25,7 @@
}

.App-link {
color: #61dafb;
color: var(--coa-black);
}

@keyframes App-logo-spin {
Expand Down
15 changes: 15 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit 81a42ae

Please sign in to comment.