added lovely lil yellow accents

This commit is contained in:
2025-11-13 19:20:15 +13:00
parent 322e0c63b9
commit c1aa77a35a
2 changed files with 12 additions and 6 deletions

View File

@@ -1,6 +1,12 @@
<div class="text-2xl"> <div class="text-2xl">
<a href="/now">now</a> <a href="/now">now</a>
• <a href="/posts">posts</a>
• <a href="/photos">photos</a> <span class="text-(--accent)">•</span>
<a href="/posts">posts</a>
<span class="text-(--accent)">•</span>
<a href="/photos">photos</a>
<!-- • <a href="/software">software</a> --> <!-- • <a href="/software">software</a> -->
</div> </div>

View File

@@ -10,19 +10,19 @@
} }
:root { :root {
--bg-light: "#f4f4f9"; --bg-light: #f4f4f9;
--accent: "#F9DC5C"; --accent: #F9DC5C;
} }
html body { html body {
@apply font-[Barnum]; @apply font-[Barnum];
@apply w-[68%] mx-auto mt-14 h-full; @apply w-[68%] mx-auto mt-14 h-full;
@apply bg-(--bg2-light); @apply bg-(--bg-light);
} }
a { a {
@apply hover:underline; @apply hover:underline;
text-decoration-color: #F9DC5C; text-decoration-color: var(--accent);
} }
} }