From c1aa77a35ae13a53efc1b607bc859cb3da08b613 Mon Sep 17 00:00:00 2001 From: June Date: Thu, 13 Nov 2025 19:20:15 +1300 Subject: [PATCH] added lovely lil yellow accents --- web/src/components/index/navbar.astro | 10 ++++++++-- web/src/styles/global.css | 8 ++++---- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/web/src/components/index/navbar.astro b/web/src/components/index/navbar.astro index 900bff5..c41dcee 100644 --- a/web/src/components/index/navbar.astro +++ b/web/src/components/index/navbar.astro @@ -1,6 +1,12 @@
now - • posts - • photos + + + + posts + + + + photos
\ No newline at end of file diff --git a/web/src/styles/global.css b/web/src/styles/global.css index 87a9f88..b485907 100644 --- a/web/src/styles/global.css +++ b/web/src/styles/global.css @@ -10,19 +10,19 @@ } :root { - --bg-light: "#f4f4f9"; - --accent: "#F9DC5C"; + --bg-light: #f4f4f9; + --accent: #F9DC5C; } html body { @apply font-[Barnum]; @apply w-[68%] mx-auto mt-14 h-full; - @apply bg-(--bg2-light); + @apply bg-(--bg-light); } a { @apply hover:underline; - text-decoration-color: #F9DC5C; + text-decoration-color: var(--accent); } }