+-----------------------+
| design language |
+-----------------------+
this site follows "the archive" design language — brutalist minimalism with a tactile, paper-like feel.
token value usage
─────────────────────────────────────────────────
paper #f1e9d2 page background
card rgba(255,255,255,0.4) card background
card hover #ffffff card on hover
ink #333333 text, borders, shadows
muted #555555 secondary text
link #0044cc hyperlinks
<pre class="naked"> #333. never light gray. .card:hover {
background: #ffffff;
box-shadow: 5px 5px 0px #333;
transform: translate(-1px, -1px);
transition: all 0.1s;
}
\ : /
'. : .'
> art <
'. : '.
/ : \
src/, then rendered to static htmlstyles.css shared across all pages zayd.wtf/
├── src/
│ ├── pages/**/*.astro
│ ├── layouts/SiteLayout.astro
│ ├── components/*.astro
│ └── lib/site.mjs
├── public/
│ ├── assets/css/styles.css
│ ├── assets/js/scripts.js
│ ├── assets/js/effects.js
│ ├── manifest.json, sw.js
│ ├── sitemap.xml, robots.txt
│ ├── llms.txt, CNAME
│ └── favicon.ico
├── dist/ (build output)
├── tools/
└── _docs/ (not served)