Rows — Design System
The full decoded design system for Rows: 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/rows.
Tokens
Rows's decoded design system: background #FBF9F0, text #0A0A0B, accent #FFC800, link #3A032D, primary #FFC800; type scale h1 64px / h2 18px / body 17px; 4px spacing base; 5px base radius. The single interactive/action color is #FFC800 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FBF9F0 |
| surface | #ECEAE2 |
| border | #D6D5CD |
| text | #0A0A0B |
| text_muted | #656462 |
| primary | #FFC800 |
| accent | #FFC800 |
| link | #3A032D |
| secondary | #FFFAE5 |
| button_bg | #FFC800 |
| button_text | #3A032D |
Using these colors
- Action color
#FFC800— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#FFC800— one role, not several (the action color).- accent
#FFC800— THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. - link
#3A032D— inline text links and link-styled controls. - secondary
#FFFAE5— 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: GT Flexa
- Body: Output Sans
- h1: 64px
- h2: 18px
- body: 17px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 5px
- button: 2px
Per-section tokens (9)
Export: DESIGN.md
# Rows — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FBF9F0` | | surface | `#ECEAE2` | | border | `#D6D5CD` | | text | `#0A0A0B` | | text_muted | `#656462` | | primary | `#FFC800` | | accent | `#FFC800` | | link | `#3A032D` | | secondary | `#FFFAE5` | | button_bg | `#FFC800` | | button_text | `#3A032D` | **Using these colors** - **Action color** `#FFC800` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `accent`, `button_bg` are all `#FFC800` — one role, not several (your action color). - **accent** `#FFC800` — THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. - **link** `#3A032D` — inline text links and link-styled controls. - **secondary** `#FFFAE5` — 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: **GT Flexa** _(free fallback: Newsreader)_ - Body: **Output Sans** _(free fallback: Newsreader)_ - h1: 64px - h2: 18px - body: 17px > **Fonts —** GT Flexa may be proprietary — safe free fallback: Newsreader (Google Fonts). Output Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 5px - button: 2px ## Primary button - bg `#FFC800` · text `#3A032D` · radius 2px ## 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 #FFC800 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FBF9F0;
--color-surface: #ECEAE2;
--color-border: #D6D5CD;
--color-text: #0A0A0B;
--color-text-muted: #656462;
--color-primary: #FFC800; /* primary brand / action color. */
--color-accent: #FFC800; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--color-link: #3A032D; /* inline text links and link-styled controls. */
--color-secondary: #FFFAE5; /* 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: #FFC800; /* primary-button fill — the main call-to-action color. */
--color-button-text: #3A032D;
/* fonts: GT Flexa may be proprietary — safe free fallback: Newsreader (Google Fonts). Output Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "GT Flexa", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Output Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 64px;
--text-h2: 18px;
--text-body: 17px;
--radius-base: 5px;
--radius-button: 2px;
--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 #FFC800 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FBF9F0;
--surface: #ECEAE2;
--border: #D6D5CD;
--text: #0A0A0B;
--text-muted: #656462;
--primary: #FFC800; /* primary brand / action color. */
--accent: #FFC800; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--link: #3A032D; /* inline text links and link-styled controls. */
--secondary: #FFFAE5; /* 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: #FFC800; /* primary-button fill — the main call-to-action color. */
--button-text: #3A032D;
--font-heading: "GT Flexa", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Output Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 5px;
--radius-button: 2px;
}
/* fonts: GT Flexa may be proprietary — safe free fallback: Newsreader (Google Fonts). Output Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */