kjelsrud.dev/src/pages/colors.astro
SindreKjelsrud 5259d1f126
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run
feat: Add /colors-page
Might need some rework with json-data, but a quick addition so far.

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2026-03-31 17:18:52 +02:00

18 lines
689 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
import SectionContainer from "../components/SectionContainer.astro";
import appearances from "../data/appearances.json";
---
<SectionContainer title="appearances" description="where ive shared insights or participated">
<main class="flex flex-col flex-1 gap-2 mt-4">
<h1 class="text-3xl font-extrabold">[ colors i like ]</h1>
<ul class="blog">
<li>
<svg width="20" height="20" style="display: inline; justify-content: center; align-items: center;">
<rect width="20" height="20" style="fill:#ffffa6;stroke-width:3;stroke:rgb(0,0,0)" />
</svg>
Pastel Yellow - <code>#ffffa6</code>
</li>
</ul>
</main>
</SectionContainer>