An ultra-minimal restraint exercise. Pure white surfaces, every layout snapped to a strict 12-column grid with a 4px baseline, Inter at three sizes for the entire system, sharp 0px corners, and one vermilion accent reserved for exactly one moment per page. Built for product pages, design portfolios, and brand surfaces where the discipline of the grid IS the design.
A complete design system, ready for your AI coding agent. Every primitive, token, and pattern below is generated straight from DESIGN.md — drop the file in your project and ship matching UI in minutes.
Prose-first token file — decisions live next to their reasoning.
Fine micro-scale (1–5px) for pills, editorial scale (12–21px) for the grid.
The system's own radius tokens — sm for chips and inputs, md for buttons, lg for cards, pill for fully-rounded CTAs.
1---2name: "Null Grid"3description: "An ultra-minimal restraint exercise. Pure white surfaces, every layout snapped to a strict 12-column grid with a 4px baseline, Inter at three sizes for the entire system, sharp 0px corners, and one vermilion accent reserved for exactly one moment per page. Built for product pages, design portfolios, and brand surfaces where the discipline of the grid IS the design."4tags: [minimal, modern, premium, grid, saas]5colors:6 primary: "#0a0a0a"7 secondary: "#737373"8 tertiary: "#0a0a0a"9 neutral: "#f0f0f0"10 surface: "#ffffff"11typography:12 display: Inter13 body: Inter14 mono: "JetBrains Mono"15 scale:16 hero: "5.5rem / 1 / 500 / -0.035em"17 h1: "3rem / 1.1 / 500 / -0.025em"18 h2: "1.5rem / 1.25 / 500 / -0.012em"19 body: "0.9375rem / 1.6 / 400 / 0"20radius:21 sm: 0px22 md: 0px23 lg: 0px24 pill: 9999px25shadows:26 card: none27 button: none28borders:29 card: "1px solid rgba(10,10,10,0.10)"30 divider: rgba(10,10,10,0.10)31buttons:32 primary:33 background: #0a0a0a34 color: #ffffff35 border: none36 shape: sharp37 padding: 10px 20px38 font: 500 / 0.8125rem39 secondary:40 background: transparent41 color: #0a0a0a42 border: 1px solid #0a0a0a43 shape: sharp44 padding: 10px 20px45 font: 500 / 0.8125rem46 outline:47 background: transparent48 color: #0a0a0a49 border: 1px solid rgba(10,10,10,0.16)50 shape: sharp51 padding: 10px 20px52 font: 500 / 0.8125rem53 ghost:54 background: transparent55 color: #73737356 border: none57 shape: sharp58 padding: 10px 14px59 font: 500 / 0.8125rem60charts:61 variant: "thin-bars"62 stroke_width: 163 fill_opacity: 064 gridlines: false65 bar_gap: 4px66 highlight: single67 dot_marker: false68fonts_url: "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap"69dependencies: ["lucide-react"]70---71 72# Null Grid73 74## AI Build Instructions75 76> **Read this section before writing any code.** The rules below77> are non-negotiable. Every value used in the UI must come from this78> file's frontmatter — never substitute, approximate, or invent new79> colors, fonts, radii, or shadows. If a value is missing, ask the80> user before adding one.81 82### 1 · Your role83 84You are building UI for a project that has adopted **Null Grid** as its85design system. Treat `DESIGN.md` as the single source of truth.86Your job is to translate the user's product requirements into87components and pages that look like they were designed by the same88person who authored this file.89 90### 2 · Token compliance91 92- Pull every color, font family, radius, shadow, and spacing value93 from the frontmatter at the top of this file.94- Use semantic roles (e.g. `primary`, `accent`, `muted`) — never95 hard-code hex values that bypass the system.96- When a token can be expressed as a CSS variable, declare it once97 in your global stylesheet and reference it everywhere downstream.98- The Google Fonts `<link>` is provided in the Typography section.99 Add it to `<head>` before any component renders.100 101### 3 · Component recipes102 103Use these recipes verbatim when building the corresponding component.104 105#### Buttons106 107Four variants are defined. Pick one — never blend variants or invent a fifth.108 109- **Primary** — sharp shape, bg `#0a0a0a`, text `#ffffff`, padding `10px 20px`, weight `500`.110- **Secondary** — sharp shape, text `#0a0a0a`, border `1px solid #0a0a0a`, padding `10px 20px`, weight `500`.111- **Outline** — sharp shape, text `#0a0a0a`, border `1px solid rgba(10,10,10,0.16)`, padding `10px 20px`, weight `500`.112- **Ghost** — sharp shape, text `#737373`, padding `10px 14px`, weight `500`.113 114Reach for **primary** as the single dominant CTA per screen.115**Secondary** for the supporting action. **Outline** for tertiary116actions in toolbars. **Ghost** for inline links and table actions.117 118#### Cards119 120- Background: `#ffffff`121- Border: `1px solid rgba(10,10,10,0.10)`122- Shadow: `none`123- Radius: `radius.lg` (`0px`)124- Internal padding: `20px` for compact cards, `24–28px` for content cards.125 126#### Tabs127 128Variant: `underline`. Flat row of labels. Active tab gets a 2px underline in the accent color — no fill.129 130#### Charts131 132- Bar/line variant: `thin-bars`133- No gridlines — let the bars/lines carry the data.134- Highlight strategy: `single` — emphasize a single bar/point per chart.135 136#### Typography pairings137 138- **Display (`Inter`)** — h1, h2, hero headlines, brand wordmarks.139- **Body (`Inter`)** — paragraphs, labels, button text, form inputs.140- **Mono (`JetBrains Mono`)** — code, eyebrows, metadata, numerals in tables.141 142### 4 · Hard constraints143 144Never do any of the following without explicit instruction from the user:145 146- Introduce a new color, font, radius, or shadow that isn't declared above.147- Mix this system with another (e.g. don't paste in Material or Bootstrap defaults).148- Use generic gradient defaults (purple→blue, peach→pink) — they break the system's voice.149- Reach for emoji icons. Use a consistent icon library and size icons in line with body type.150- Add motion that exceeds the system's restraint — keep transitions short (≤200ms) and subtle.151 152### 5 · Before you finish — verify153 154Run through this checklist for every screen you produce:155 156- [ ] Every color used appears in the Colors table above.157- [ ] Headlines use the display font; body copy uses the body font.158- [ ] Buttons match one of the declared variants exactly (shape, padding, weight).159- [ ] Border-radius values come from `radius.sm` / `radius.md` / `radius.lg` / `radius.pill`.160- [ ] Cards and dividers use the declared border + shadow tokens.161- [ ] No values were invented; if you needed something missing, you stopped and asked.162 163---164 165## 1. Atmosphere166 167Null Grid is an ultra-minimal restraint exercise. The page surface is pure white `#ffffff` — never off-white, never warm. Every layout is snapped to a strict 12-column grid with a 4px baseline. Inter handles everything: hero at 88px, body at 15px, UI labels at 13px — three sizes, two weights (400/500), one font. Sharp 0px corners on every surface and every button — there are no radii in this system except the badge pill. The single accent is vermilion `#e8482c` that appears exactly once per page — usually as the active step number in a process, the live indicator dot, or the primary CTA.168 169The discipline is absolute: the page must justify every element on the grid. If a piece of UI does not snap to a column boundary, it does not belong. The vermilion is not for decoration — it is for the single moment the page wants the user's eye.170 171**Signature moves**172- Strict 12-column grid with 4px baseline — every element snaps to a column boundary173- Pure white surface `#ffffff` — never off-white, never warm174- Inter only — three sizes (88/24/15), two weights (400/500)175- Vermilion `#e8482c` exactly once per page — the single moment the eye should land176- Sharp 0px corners on every surface and button — Swiss-restraint precision177- 1px hairlines at 10% ink as the only divider treatment178 179## 2. Palette (the entire system)180 181- **Page** `#ffffff` — pure white182- **Page Lift** `#f0f0f0` — secondary tonal step (rare, used only for code blocks)183- **Ink** `#0a0a0a` — text, headings, primary CTA fill (true near-black)184- **Ink 50** `#737373` — secondary text185- **Hairline** `rgba(10,10,10,0.10)` — every divider, every border186- **Vermilion** `#e8482c` — exactly one moment per page187 188Six values, total. That is the entire system.189 190## 3. Typography191 192| Role | Font | Size | Weight | Leading | Tracking |193|------|------|------|--------|---------|----------|194| Hero | Inter | 88px | 500 | 1.0 | -0.035em |195| H1 | Inter | 48px | 500 | 1.1 | -0.025em |196| H2 | Inter | 24px | 500 | 1.25 | -0.012em |197| Body | Inter | 15px | 400 | 1.6 | 0 |198| UI / Button | Inter | 13px | 500 | 1.4 | 0 |199| Caption | JetBrains Mono | 11px | 500 | 1.0 | 0.06em uppercase |200| Number | JetBrains Mono | 13px | 500 | 1.0 | 0 tabular-nums |201 202Three Inter sizes (88/24/15), two weights (400/500). Mono only for captions and figures. There is no italic, no underline, no decoration — emphasis is achieved through column placement and white space.203 204## 4. Buttons205 206### Primary (Ink Sharp)207```css208background: #0a0a0a;209color: #ffffff;210padding: 10px 20px;211border-radius: 0px;212font-weight: 500;213```214 215Sharp 0px corners. The button is a 4×8-grid-aligned ink rectangle.216 217### Secondary (Ink Outline)218- Transparent, 1px solid ink, ink text — same sharp 0px corners219 220### Outline & Ghost221- Outline: transparent, 1px hairline at 16% ink222- Ghost: no border, ink-50, hover lifts to ink223 224## 5. Cards (rare)225 226The system prefers grid-divided sections over cards. When a card is needed, it is sharp 0px corners with a 1px hairline at 10% ink — never lifted, never shadowed.227 228## 6. Charts229 230Thin precise bars (3px wide, 4px gap). One bar in vermilion (only if vermilion has not yet been used on the page), others in 22% ink. NO gridlines. Y-axis labels in JetBrains Mono uppercase 11px.231 232## 7. Tabs233 234Underline 1.5px in ink for the active state. Inactive tabs are ink-50 in Inter 500. Tabs sit on a 1px hairline baseline.235 236## 8. Spacing237 238- Base 4px (every dimension is a multiple of 4)239- Scale: `4, 8, 12, 16, 20, 24, 32, 48, 64, 96, 128`240- 12-column grid with 24px gutters (desktop), 16px gutters (mobile)241- Section padding: 96px desktop, 48px mobile242 243## 9. Do's & don'ts244 245✅ **Do**246- Snap every element to the 12-column grid — if it doesn't fit, redesign the layout247- Use Inter only — three sizes, two weights, one font, no exceptions248- Reserve vermilion for exactly one moment per page — the eye lands there once249- Use 4px multiples for every dimension — padding, margin, gap, height250- Hold pure white — off-white belongs to a different system251 252❌ **Don't**253- Use vermilion more than once per page — the discipline IS the design254- Use any radius beyond 0px (or the badge pill) — sharp Swiss precision throughout255- Add a second accent or status color — six total values, that is all256- Use any font besides Inter (and Mono for figures) — restraint is the whole premise257 258---259 260## Tokens261 262> Generated from the same source the live preview renders from.263> Treat the values below as the contract — never substitute approximations.264 265### Colors266 267| Role | Value |268|-----------|-------|269| primary | `#0a0a0a` |270| secondary | `#737373` |271| tertiary | `#0a0a0a` |272| neutral | `#f0f0f0` |273| surface | `#ffffff` |274 275### Typography276 277- **Display:** Inter278- **Body:** Inter279- **Mono:** JetBrains Mono280 281| Role | size / leading / weight / tracking |282|------|------------------------------------|283| Hero | 5.5rem / 1 / 500 / -0.035em |284| H1 | 3rem / 1.1 / 500 / -0.025em |285| H2 | 1.5rem / 1.25 / 500 / -0.012em |286| Body | 0.9375rem / 1.6 / 400 / 0 |287 288### Radius289 290- sm: `0px`291- md: `0px`292- lg: `0px`293- pill: `9999px`294 295### Shadows296 297- **card:** `none`298- **button:** `none`299 300### Borders301 302- **card:** `1px solid rgba(10,10,10,0.10)`303- **divider:** `rgba(10,10,10,0.10)`304 305### Buttons306 307Four variants, each fully tokenized. The preview renders from these exact values.308 309#### Primary310 311| Property | Value |312|----------|-------|313| shape | `sharp` |314| background | `#0a0a0a` |315| color | `#ffffff` |316| border | `none` |317| padding | `10px 20px` |318| fontWeight | `500` |319| fontSize | `0.8125rem` |320 321#### Secondary322 323| Property | Value |324|----------|-------|325| shape | `sharp` |326| background | `transparent` |327| color | `#0a0a0a` |328| border | `1px solid #0a0a0a` |329| padding | `10px 20px` |330| fontWeight | `500` |331| fontSize | `0.8125rem` |332 333#### Outline334 335| Property | Value |336|----------|-------|337| shape | `sharp` |338| background | `transparent` |339| color | `#0a0a0a` |340| border | `1px solid rgba(10,10,10,0.16)` |341| padding | `10px 20px` |342| fontWeight | `500` |343| fontSize | `0.8125rem` |344 345#### Ghost346 347| Property | Value |348|----------|-------|349| shape | `sharp` |350| background | `transparent` |351| color | `#737373` |352| border | `none` |353| padding | `10px 14px` |354| fontWeight | `500` |355| fontSize | `0.8125rem` |356 357### Charts358 359| Property | Value |360|----------|-------|361| variant | `thin-bars` |362| strokeWidth | `1` |363| fillOpacity | `0` |364| gridlines | `false` |365| barGap | `4px` |366| highlight | `single` |367| dotMarker | `false` |368 # CLAUDE.md Reference @DESIGN.md for all styling decisions. Apply tokens strictly — do not introduce colors, fonts, or radii outside the system. When in doubt, prefer the values declared in DESIGN.md frontmatter.<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" />npm install lucide-react// tailwind.config.jsexport default { theme: { extend: { fontFamily: { display: ['"Inter"', 'serif'], sans: ['"Inter"', 'sans-serif'], mono: ['"JetBrains Mono"', 'monospace'], }, colors: { primary: '#0a0a0a', secondary: '#737373', accent: '#0a0a0a', neutral: '#f0f0f0', surface: '#ffffff', }, borderRadius: { sm: '0px', md: '0px', lg: '0px', }, }, },};Ultra-minimal modern serif. Pure off-white canvas, Fraunces variable serif tuned for warmth and optical size, one slate-blue accent. No shadows, no gradients — the serif itself is the system.
A complete design system, ready for your AI coding agent. Every primitive, token, and pattern below is generated straight from DESIGN.md — drop the file in your project and ship matching UI in minutes.
tonal-surface with a slate-blue seed — cool tonal surfaces, full-rounded tonal buttons, Roboto Flex throughout. The trustworthy B2B tonal-surface dialect.
A complete design system, ready for your AI coding agent. Every primitive, token, and pattern below is generated straight from DESIGN.md — drop the file in your project and ship matching UI in minutes.