Graza — Design System
The full decoded design system for Graza: 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/graza.
Tokens
Graza's decoded design system: background #F6E6D9, text #3C422E, accent #D1E030, link #D1E030, primary #3C422E; type scale h1 72px / h2 16px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #D1E030 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F6E6D9 |
| surface | #EADCCE |
| border | #DACDBF |
| text | #3C422E |
| text_muted | #82806E |
| primary | #3C422E |
| accent | #D1E030 |
| link | #D1E030 |
| secondary | #F6E6D9 |
| button_bg | #D1E030 |
| button_text | #3C422E |
Using these colors
- Action color
#D1E030— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#D1E030— one role, not several (the action color).- accent
#D1E030— 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. - primary
#3C422E— ≈ the text color — a foreground/text color, not an action color (action = #D1E030). - secondary
#F6E6D9— 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: ITC Garamond Condensed
- Body: Apercu
- Mono: GT Alpina Typewriter
- h1: 72px
- h2: 16px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 0px
Per-section tokens (11)
- Hero
- Feature
- Feature
- Steps / How-it-works
- Banner
- Gallery / Showcase
- Feature
- Feature
- CTA / Sign-up
- Gallery / Showcase
- Footer
Export: DESIGN.md
# Graza — Design System > light, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#F6E6D9` | | surface | `#EADCCE` | | border | `#DACDBF` | | text | `#3C422E` | | text_muted | `#82806E` | | primary | `#3C422E` | | accent | `#D1E030` | | link | `#D1E030` | | secondary | `#F6E6D9` | | button_bg | `#D1E030` | | button_text | `#3C422E` | **Using these colors** - **Action color** `#D1E030` — 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`, `button_bg` are all `#D1E030` — one role, not several (your action color). - **accent** `#D1E030` — 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. - **primary** `#3C422E` — ≈ the text color — a foreground/text color, not an action color (action = #D1E030). - **secondary** `#F6E6D9` — 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: **ITC Garamond Condensed** _(free fallback: Newsreader)_ - Body: **Apercu** _(free fallback: Newsreader)_ - Mono: **GT Alpina Typewriter** - h1: 72px - h2: 16px - body: 16px > **Fonts —** ITC Garamond Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Apercu may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 0px ## Primary button - bg `#D1E030` · text `#3C422E` · radius 0px ## 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 #D1E030 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F6E6D9;
--color-surface: #EADCCE;
--color-border: #DACDBF;
--color-text: #3C422E;
--color-text-muted: #82806E;
--color-primary: #3C422E; /* ≈ the text color — a foreground/text color, not an action color (action = #D1E030). */
--color-accent: #D1E030; /* 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: #D1E030; /* inline text links — shares the action color. */
--color-secondary: #F6E6D9; /* 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: #D1E030; /* primary-button fill — the main call-to-action color. */
--color-button-text: #3C422E;
/* fonts: ITC Garamond Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Apercu may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "ITC Garamond Condensed", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Apercu", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "GT Alpina Typewriter", ui-monospace, monospace;
--text-h1: 72px;
--text-h2: 16px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 0px;
--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 #D1E030 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F6E6D9;
--surface: #EADCCE;
--border: #DACDBF;
--text: #3C422E;
--text-muted: #82806E;
--primary: #3C422E; /* ≈ the text color — a foreground/text color, not an action color (action = #D1E030). */
--accent: #D1E030; /* 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: #D1E030; /* inline text links — shares the action color. */
--secondary: #F6E6D9; /* 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: #D1E030; /* primary-button fill — the main call-to-action color. */
--button-text: #3C422E;
--font-heading: "ITC Garamond Condensed", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Apercu", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "GT Alpina Typewriter", ui-monospace, monospace;
--radius: 8px;
--radius-button: 0px;
}
/* fonts: ITC Garamond Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Apercu may be proprietary — safe free fallback: Newsreader (Google Fonts). */