Frec — Design System
The full decoded design system for Frec: 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/frec.
Tokens
Frec's decoded design system: background #FBFAF5, text #1D1D1D, accent #000AFF, link #000AFF, primary #000AFF; type scale h1 64px / h2 64px / body 16px; 8px spacing base; 0px base radius. The single interactive/action color is #000AFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FBFAF5 |
| surface | #EDECE8 |
| border | #D9D8D4 |
| text | #1D1D1D |
| text_muted | #71706F |
| primary | #000AFF |
| accent | #000AFF |
| link | #000AFF |
| button_bg | #000AFF |
| button_text | #1D1D1D |
Using these colors
- Action color
#000AFF— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#000AFF— one role, not several (the action color).- accent
#000AFF— 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.
Typography
- Heading: Geist
- Body: Geist
- h1: 64px
- h2: 64px
- body: 16px
Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px
Radii
- base: 0px
- button: 9999px
Per-section tokens (9)
- Hero
- Feature
- Gallery / Showcase
- Feature
- Testimonial / Social Proof
- Stats / Metrics
- Stats / Metrics
- FAQ
- CTA / Sign-up
Export: DESIGN.md
# Frec — Design System > light, professional, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FBFAF5` | | surface | `#EDECE8` | | border | `#D9D8D4` | | text | `#1D1D1D` | | text_muted | `#71706F` | | primary | `#000AFF` | | accent | `#000AFF` | | link | `#000AFF` | | button_bg | `#000AFF` | | button_text | `#1D1D1D` | **Using these colors** - **Action color** `#000AFF` — 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`, `link`, `button_bg` are all `#000AFF` — one role, not several (your action color). - **accent** `#000AFF` — 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. ## Typography - Heading: **Geist** - Body: **Geist** | Role | Size / weight · line-height · tracking | |------|------------------------------------------| | hero | 140px / 400 · lh 150px · tracking -3.36px | | h2 | 64px / 400 · lh 67px · tracking -1.92px | | h3 | 48px / 400 · lh 50px · tracking -1.44px | | body | 24px / 400 · lh 29px · tracking -0.72px | | small | 18px / 400 · lh 24px · tracking -0.54px | - Weight ladder: 400 · 500 — use these exact measured weights, not the 400/600 defaults. > **Fonts —** Geist — free, on Google. ## Spacing - base unit: 8px - scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px - section rhythm: 120px top/bottom padding per section (measured) ## Radius - base: 0px - button: 9999px - card: 24px - pill: 9999px ## Primary button - bg `#000AFF` · text `#1D1D1D` · 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 #000AFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FBFAF5;
--color-surface: #EDECE8;
--color-border: #D9D8D4;
--color-text: #1D1D1D;
--color-text-muted: #71706F;
--color-primary: #000AFF; /* primary brand / action color. */
--color-accent: #000AFF; /* 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: #000AFF; /* inline text links — shares the action color. */
--color-button-bg: #000AFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #1D1D1D;
/* fonts: Geist — free, on Google. */
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
/* measured weights: 400, 500 — use these, not 400/600 */
--text-hero: 140px; --font-weight-hero: 400; --leading-hero: 150px; --tracking-hero: -3.36px;
--text-h2: 64px; --font-weight-h2: 400; --leading-h2: 67px; --tracking-h2: -1.92px;
--text-h3: 48px; --font-weight-h3: 400; --leading-h3: 50px; --tracking-h3: -1.44px;
--text-body: 24px; --font-weight-body: 400; --leading-body: 29px; --tracking-body: -0.72px;
--text-small: 18px; --font-weight-small: 400; --leading-small: 24px; --tracking-small: -0.54px;
--radius-base: 0px;
--radius-button: 9999px;
--radius-card: 24px;
--radius-pill: 9999px;
--section-y: 120px; /* per-section vertical padding (measured) */
--spacing-1: 4px;
--spacing-2: 8px;
--spacing-3: 12px;
--spacing-4: 16px;
--spacing-5: 24px;
--spacing-6: 32px;
--spacing-7: 48px;
--spacing-8: 64px;
}Export: CSS variables
:root {
/* action color #000AFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FBFAF5;
--surface: #EDECE8;
--border: #D9D8D4;
--text: #1D1D1D;
--text-muted: #71706F;
--primary: #000AFF; /* primary brand / action color. */
--accent: #000AFF; /* 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: #000AFF; /* inline text links — shares the action color. */
--button-bg: #000AFF; /* primary-button fill — the main call-to-action color. */
--button-text: #1D1D1D;
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-hero: 140px; --weight-hero: 400; --leading-hero: 150px; --tracking-hero: -3.36px;
--text-h2: 64px; --weight-h2: 400; --leading-h2: 67px; --tracking-h2: -1.92px;
--text-h3: 48px; --weight-h3: 400; --leading-h3: 50px; --tracking-h3: -1.44px;
--text-body: 24px; --weight-body: 400; --leading-body: 29px; --tracking-body: -0.72px;
--text-small: 18px; --weight-small: 400; --leading-small: 24px; --tracking-small: -0.54px;
--radius: 0px;
--radius-button: 9999px;
--radius-card: 24px;
--radius-pill: 9999px;
--section-y: 120px;
}
/* fonts: Geist — free, on Google. */