A

Airbnb

E-Commerce & Marketplaces · Warm coral — belonging and travel with a human, community-first brand voice.

Color Palette

Primary

#FF5A5F

Secondary

#484848

Accent 1

#FFFFFF

Typography

Cereal

The quick brown fox

jumps over the lazy dog

ABCDEFGHIJKLMNOPQRSTUVWXYZ

Component Preview

Navigation Bar

Airbnb · Features · Pricing

#FFFFFF — accent

Spacing Scale (4px base)

4

8

16

24

32

48

.cursorrules
# Airbnb Design System — .cursorrules
# Generated by StyleExtract · styleextract.com/vault/airbnb

You are a senior frontend developer building UI that matches the Airbnb design system exactly.
Read this entire file before writing any component.

## Brand Identity
Company    : Airbnb
Primary    : #FF5A5F
Secondary  : #484848
Accent     : #FFFFFF
Font       : Cereal, system-ui
Radius     : 6px
Voice      : Warm coral — belonging and travel with a human, community-first brand voice.

## CSS Custom Properties
```css
:root {
  --color-primary:   #FF5A5F;
  --color-secondary: #484848;
  --color-accent:    #FFFFFF;
  --color-text:      #FFFFFF;
  --color-surface:   #1C1C1E;
  --color-border:    #2C2C2E;
  --font-sans:       "Cereal", system-ui, -apple-system, sans-serif;
  --radius:          6px;
}
```

## Tailwind Config
```js
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        primary:   "#FF5A5F",
        secondary: "#484848",
        accent:    "#FFFFFF",
      },
      fontFamily: {
        sans: ["Cereal", "system-ui", "sans-serif"],
      },
      borderRadius: {
        brand: "6px",
      },
    },
  },
};
```

## Typography
```
heading-font:    Cereal, system-ui
heading-weight:  700
heading-tracking: -0.02em
body-font:       Cereal, system-ui
body-size:       16px
body-line-height: 1.6
```

## Spacing Scale
Base: 4px  |  Scale: 4 · 8 · 12 · 16 · 24 · 32 · 48 · 64 · 96px
Never use arbitrary values like 13px, 22px, or 50px.

## Component Rules

### Primary Button
background-color: #FF5A5F
color: #FFFFFF
border-radius: 6px
padding: 12px 24px
font-weight: 600
font-size: 14px
transition: opacity 0.15s
&:hover { opacity: 0.88 }

### Secondary Button
background-color: transparent
border: 1.5px solid #FF5A5F
color: #FF5A5F
border-radius: 6px
padding: 11px 23px

### Card
background: #1C1C1E
border: 1px solid #2C2C2E
border-radius: 16px
padding: 24px
box-shadow: 0 1px 3px rgba(0,0,0,0.08)

### Navigation
background: #484848
color: #FFFFFF
height: 60px
padding: 0 24px
```

## Rules
DO:
- Use the exact hex values defined in CSS Custom Properties
- Maintain Airbnb's aesthetic: Warm coral — belonging and travel with a human, community-first brand voice.
- Apply 4px base-unit spacing throughout
- Use Cereal for all text elements
- Meet WCAG AA contrast (4.5:1 minimum for body text)

DON'T:
- Invent colors outside the defined palette
- Use system-default blue (#0000EE) for links — use var(--color-primary)
- Apply border-radius values not on the brand scale
- Use font-weight below 400 or above 900

2,568 characters

STYLE.mdAI Agent File
---
brand:
  name: "Airbnb"
  category: "E-Commerce & Marketplaces"
  primary: "#FF5A5F"
  secondary: "#484848"
  accent: "#FFFFFF"
typography:
  heading: "Cereal, system-ui"
  headingWeight: 700
  headingTracking: "-0.02em"
  body: "Cereal, system-ui"
  bodySize: "16px"
  lineHeight: 1.6
spacing:
  base: 4
  scale: [4, 8, 12, 16, 24, 32, 48, 64, 96]
shape:
  radiusSm: "4px"
  radiusMd: "6px"
  radiusLg: "16px"
  radiusXl: "24px"
---

# Airbnb Design System
> AI Agent Context — read this entire file before generating any UI for Airbnb
> Source: StyleExtract Vault · styleextract.com/vault/airbnb

## Brand Overview
Warm coral — belonging and travel with a human, community-first brand voice.

## Color System

| Role      | Hex       | Usage                          |
|-----------|-----------|-------------------------------|
| Primary   | `#FF5A5F` | CTAs, links, key accents  |
| Secondary | `#484848` | Backgrounds, headings    |
| Accent    | `#FFFFFF` | Highlights, badges, icons |
| Surface   | `#1C1C1E` | Card backgrounds |
| Border    | `#2C2C2E` | Dividers, outlines |

ALWAYS use `#FF5A5F` for primary interactive elements and CTAs.
NEVER invent colors outside the palette above.

## Typography

- **Heading font**: Cereal, system-ui
- **Heading weight**: 700 / letter-spacing −0.02em
- **Body font**: Cereal, system-ui
- **Body size**: 16px / line-height 1.6

## Spacing System

Base unit is **4px**. Allowed values: 4, 8, 12, 16, 24, 32, 48, 64, 96px.
Never use arbitrary values.

## Component Patterns

### Buttons
```
Primary:   bg #FF5A5F  · text #FFFFFF  · rounded-[6px]  · px-6 py-3  · font-semibold
Secondary: transparent    · border-[#FF5A5F]       · text-[#FF5A5F]      · px-6 py-3
```

### Cards
```
bg white (dark: #1C1C1E) · border #E5E5E7 (dark: #2C2C2E) · rounded-2xl · p-6 · shadow-sm
```

### Navigation
```
bg #484848 · text #FFFFFF · h-[60px] · px-6 · logo-left · links-right
```

## Accessibility
- All text WCAG AA (4.5:1 minimum)
- Interactive targets: 44×44px minimum
- Never convey state via color alone

## Brand Voice
Warm coral — belonging and travel with a human, community-first brand voice.

2,139 characters

How to use these files

  1. 1.Copy .cursorrules and paste it as a new file named .cursorrules in your project root.
  2. 2.Copy STYLE.md as STYLE.md in your repo root for Claude, Bolt.new, or any agent that reads Markdown context.
  3. 3.All subsequent AI-generated components will automatically match the Airbnb design system.

Need a custom brand?

Extract any live website in 30 seconds.

Get a custom .cursorrules, STYLE.md, 17-page PDF brand book, CSS variables, Tailwind config, Figma tokens, and AI brand voice — all generated from the live site.

Extract a brand →