Skip to content

Commit

Permalink
colour
Browse files Browse the repository at this point in the history
  • Loading branch information
NinjaBreadLord committed Sep 10, 2021
1 parent e43b70a commit d217dd2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
19 changes: 17 additions & 2 deletions templates/cssFiles/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
body {
background-color: lightgreen;
:root{
--yellow: #f1d483;
--green: #718b5a;
--purple: #a59aaf;
--lblue: #6084a3;
--dblue: #2b425b;
--gray: #363d47;
--white: whitesmoke;
--black: black;
--grey: grey;
}

html, body{
margin: 0;
height: 100%;
background-color: var(--green);
color: var(--green);


h1 {
font-family: Georgia, serif;
font-size: 5em;
Expand Down
4 changes: 2 additions & 2 deletions templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<style>
:root{
--yellow: #f1d483;
--green: #9daf9b;
--purple: #a59aaf;
--green: #3bb22e;
--purple: #70ec23;
--lblue: #6084a3;
--dblue: #2b425b;
--gray: #363d47;
Expand Down

0 comments on commit d217dd2

Please sign in to comment.