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">
<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> -->
</div>

View File

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