Astro — Design System
The full decoded design system for Astro: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
This is a static, crawlable rendering for search & AI engines. The interactive version — filters, live decode console, copy & export — is at https://mozaika.design/ds/astro.
Tokens
Astro's decoded design system: background #060913, text #ECECEE, accent #61DAFB, link #61DAFB, primary #1F232E; type scale h1 48px / h2 36px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #060913 |
| surface | #131620 |
| border | #282B33 |
| text | #ECECEE |
| text_muted | #94959A |
| primary | #1F232E |
| accent | #61DAFB |
| link | #61DAFB |
| secondary | #183341 |
| button_bg | #FFFFFF |
| button_text | #F2F6FA |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#61DAFB— one role, not several (the action color).- accent
#61DAFB— accent for emphasis — keep it rare on the page. - primary
#1F232E— a brand color — but the call-to-action uses #FFFFFF, not this. - secondary
#183341— optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two.
Typography
- Heading: Obviously
- Body: Inter
- h1: 48px
- h2: 36px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 9999px
Per-section tokens (11)
- Hero — dark · bg #1D146F · text #9180B8 · 2 col · split
- Logo Wall — dark · bg #0C0C31 · text #9B91B7 · 1 col · left
- Feature — dark · bg #060913 · text #4D505A · 1 col · left
- Stats / Metrics — dark · bg #0C0F19 · text #425F6D · 1 col · left
- Integrations — dark · bg #060913 · text #303F4B · 2 col · left
- Bento Grid — dark · bg #0C0F19 · text #363944 · 3 col · split
- Gallery / Showcase — dark · bg #090A17 · text #FEFEFE · 1 col · left
- Logo Wall — dark · bg #060913 · text #ADAABF · 1 col · left
- CTA / Sign-up — dark · bg #060913 · text #518693 · 1 col · left
- Integrations — dark · bg #0C0F19 · text #C1C0B6 · 2 col · split
- Footer — dark · bg #060913 · text #62656C · 2 col · split
Export: DESIGN.md
# Astro — Design System > dark, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#060913` | | surface | `#131620` | | border | `#282B33` | | text | `#ECECEE` | | text_muted | `#94959A` | | primary | `#1F232E` | | accent | `#61DAFB` | | link | `#61DAFB` | | secondary | `#183341` | | button_bg | `#FFFFFF` | | button_text | `#F2F6FA` | **Using these colors** - **Action color** `#FFFFFF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `link` are all `#61DAFB` — one role, not several. - **accent** `#61DAFB` — accent for emphasis — keep it rare on the page. - **primary** `#1F232E` — a brand color — but the call-to-action uses #FFFFFF, not this. - **secondary** `#183341` — optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. ## Typography - Heading: **Obviously** _(free fallback: Newsreader)_ - Body: **Inter** - h1: 48px - h2: 36px - body: 18px > **Fonts —** Obviously may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 9999px ## Primary button - bg `#FFFFFF` · text `#F2F6FA` · radius 9999px ## How to apply Paste the Tailwind `@theme` (or CSS variables) as your base, then build each section to its spec — verify every color, radius, and font against these tokens.
Export: Tailwind v4 (@theme)
@theme {
/* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #060913;
--color-surface: #131620;
--color-border: #282B33;
--color-text: #ECECEE;
--color-text-muted: #94959A;
--color-primary: #1F232E; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--color-accent: #61DAFB; /* accent for emphasis — keep it rare on the page. */
--color-link: #61DAFB; /* inline text links and link-styled controls. */
--color-secondary: #183341; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--color-button-bg: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #F2F6FA;
/* fonts: Obviously may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
--font-heading: "Obviously", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 48px;
--text-h2: 36px;
--text-body: 18px;
--radius-base: 8px;
--radius-button: 9999px;
--spacing-1: 2px;
--spacing-2: 4px;
--spacing-3: 6px;
--spacing-4: 8px;
--spacing-5: 12px;
--spacing-6: 16px;
--spacing-7: 24px;
--spacing-8: 32px;
}Export: CSS variables
:root {
/* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #060913;
--surface: #131620;
--border: #282B33;
--text: #ECECEE;
--text-muted: #94959A;
--primary: #1F232E; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--accent: #61DAFB; /* accent for emphasis — keep it rare on the page. */
--link: #61DAFB; /* inline text links and link-styled controls. */
--secondary: #183341; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--button-bg: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--button-text: #F2F6FA;
--font-heading: "Obviously", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 9999px;
}
/* fonts: Obviously may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */