From a7f5e2eedc9058e721d89b05451463495e4c92c9 Mon Sep 17 00:00:00 2001 From: Angela Quinton Date: Mon, 13 Mar 2023 23:00:23 -0400 Subject: [PATCH] ham-fisted svg effort --- src/app.css | 7 ++++++- src/svg/moon.svg | 3 +++ src/views/partials/header.handlebars | 7 ++++++- 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 src/svg/moon.svg diff --git a/src/app.css b/src/app.css index e6c443a..3ef7334 100644 --- a/src/app.css +++ b/src/app.css @@ -3,11 +3,12 @@ @tailwind utilities; :root { - --background: #F8FAF9; /* Sage/Light/2 */ + --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 */ + --icon-dark: #236E4A; /* Green/Dark/8 */ } body { @@ -47,6 +48,10 @@ footer { background-color: var(--callout); } +.svg-dark-stroke { + stroke: var(--icon-dark); +} + @media (min-width: 1024px) { .t-row:not(:last-child) { diff --git a/src/svg/moon.svg b/src/svg/moon.svg new file mode 100644 index 0000000..c21e67f --- /dev/null +++ b/src/svg/moon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/views/partials/header.handlebars b/src/views/partials/header.handlebars index 8ebf1a8..cdef5e7 100644 --- a/src/views/partials/header.handlebars +++ b/src/views/partials/header.handlebars @@ -1,3 +1,8 @@ -
+

{{{siteName}}}

+
\ No newline at end of file