MozaikaDesign system

Augment — Design System

light · professional · medium · tailwind · confidence 92%

The full decoded design system for Augment: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

Open in Mozaika →

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/augment.

Tokens

Augment's decoded design system: background #FFFFFF, text #737373, accent #1AA049, link #FAAF87, primary #1AA049; type scale h1 115.325px / h2 86px / body 20px; 10px spacing base; 0px base radius. The single interactive/action color is #1AA049 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F6F6F6
border#EAEAEA
text#737373
text_muted#A8A8A8
primary#1AA049
accent#1AA049
link#FAAF87
button_bg#1AA049
button_text#FAFAFA

Using these colors

Typography

Spacing

Radii

Per-section tokens (12)

Export: DESIGN.md

# Augment — Design System

> light, professional, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F6F6F6` |
| border | `#EAEAEA` |
| text | `#737373` |
| text_muted | `#A8A8A8` |
| primary | `#1AA049` |
| accent | `#1AA049` |
| link | `#FAAF87` |
| button_bg | `#1AA049` |
| button_text | `#FAFAFA` |

**Using these colors**

- **Action color** `#1AA049` — 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 `#1AA049` — one role, not several (your action color).
- **accent** `#1AA049` — 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** `#FAAF87` — fails contrast on the background (~1.8:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).

## Typography

- Heading: **Inter Display**
- Body: **Inter Display**
- Mono: **IBM Plex Mono**
- h1: 115.325px
- h2: 86px
- body: 20px

> **Fonts —** Inter Display — free, on Google.

## Spacing
- base unit: 10px
- scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px

## Radius
- base: 0px
- button: 0px

## Primary button
- bg `#1AA049` · text `#FAFAFA` · 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 #1AA049 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F6F6F6;
  --color-border: #EAEAEA;
  --color-text: #737373;
  --color-text-muted: #A8A8A8;
  --color-primary: #1AA049;  /* primary brand / action color. */
  --color-accent: #1AA049;  /* 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: #FAAF87;  /* fails contrast on the background (~1.8:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-button-bg: #1AA049;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FAFAFA;
  /* fonts: Inter Display — free, on Google. */
  --font-heading: "Inter Display", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter Display", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --text-h1: 115.325px;
  --text-h2: 86px;
  --text-body: 20px;
  --radius-base: 0px;
  --radius-button: 0px;
  --spacing-1: 5px;
  --spacing-2: 10px;
  --spacing-3: 15px;
  --spacing-4: 20px;
  --spacing-5: 30px;
  --spacing-6: 40px;
  --spacing-7: 60px;
  --spacing-8: 80px;
}

Export: CSS variables

:root {
  /* action color #1AA049 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F6F6F6;
  --border: #EAEAEA;
  --text: #737373;
  --text-muted: #A8A8A8;
  --primary: #1AA049;  /* primary brand / action color. */
  --accent: #1AA049;  /* 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: #FAAF87;  /* fails contrast on the background (~1.8:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --button-bg: #1AA049;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FAFAFA;
  --font-heading: "Inter Display", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter Display", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 0px;
  --radius-button: 0px;
}
/* fonts: Inter Display — free, on Google. */