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 @@
\ 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); } }