From 154f301a23a1c0c9f4e4afd87ebe9a89e29011de Mon Sep 17 00:00:00 2001 From: Angela Quinton Date: Sun, 12 Mar 2023 00:14:14 -0500 Subject: [PATCH] basic theme colours and font faces --- src/app.css | 27 +++++++++++++++++++++++++++ src/views/layouts/main.handlebars | 4 ++++ src/views/partials/footer.handlebars | 2 +- 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/src/app.css b/src/app.css index b5c61c9..f1d05c4 100644 --- a/src/app.css +++ b/src/app.css @@ -1,3 +1,30 @@ @tailwind base; @tailwind components; @tailwind utilities; + +:root { + --background: #F8FAF9; /* Sage/Light/2 */ + --callout: ##ECEFED; /* Sage/Light/4 */ + --stroke: ##D7DCDA; /* Sage/Light/7 */ + --text-shout: ##164430; /* Green/Dark/6 */ + --text-murmur: ##113123; /* Green/Dark/4 */ +} + +body { + background-color: var(--background); + color: var(--text-murmur); + font-family: Manrope, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; + font-weight: 500; +} + +h1, h2, h3, h4 { + font-weight: 700; +} + +h1 { + font-family: "Redaction", Georgia, 'Times New Roman', Times, serif; +} + +h2, h3, h4 { + font-family: "Redaction 10", Georgia, 'Times New Roman', Times, serif; +} \ No newline at end of file diff --git a/src/views/layouts/main.handlebars b/src/views/layouts/main.handlebars index eda6a0f..acb8ab4 100644 --- a/src/views/layouts/main.handlebars +++ b/src/views/layouts/main.handlebars @@ -3,6 +3,10 @@ {{{pageTitle}}} + + + + diff --git a/src/views/partials/footer.handlebars b/src/views/partials/footer.handlebars index cd5b54f..5dc4920 100644 --- a/src/views/partials/footer.handlebars +++ b/src/views/partials/footer.handlebars @@ -1,7 +1,7 @@

Made by monsters