D.
Dutchy
Foundation

Typography

The Dutchy type system uses three carefully selected font families: Space Grotesk for bold display text, Inter for readable body copy, and JetBrains Mono for code.

Font Families

Display

Space Grotesk

Used for headlines, titles, and any text that needs to make an impact. Bold weights only.

font-family: 'Space Grotesk'
Body

Inter

The workhorse font for body text, UI elements, and anything that needs to be highly readable.

font-family: 'Inter'
Mono

JetBrains Mono

For code blocks, technical content, labels, and anywhere monospace adds clarity.

font-family: 'JetBrains Mono'

Type Scale

A carefully crafted scale that provides clear visual hierarchy. Display sizes use Space Grotesk, body sizes use Inter.

8xl / 96px Display
7xl / 72px Headline
6xl / 60px Title Large
5xl / 48px Title
4xl / 36px Section
3xl / 30px Heading
2xl / 24px Subheading
xl / 20px Lead paragraph text for introductions
base / 16px Body text for paragraphs and general content
sm / 14px Small text for captions and secondary content
xs / 12px Labels, tags, and micro text

Text Styles

Display Style

Bold Uppercase
Tight Tracking

Used for hero headlines and major section titles. Always uppercase with tight letter-spacing.

Heading Style

Section Headers

For section titles and card headers. Bold weight with wider tracking.

Body Style

Body text uses Inter at regular weight with relaxed line height for optimal readability. This creates comfortable reading for longer content blocks.

Default for paragraphs and general content.

Label Style

Monospace • Uppercase • Wide Tracking

For tags, badges, metadata, and technical labels.

Sample Article

Design Philosophy

The Dutch Approach to Design

Dutch design is characterized by its bold simplicity, structural clarity, and functional beauty. It rejects unnecessary ornamentation in favor of honest expression.

Core Principles

The foundation of Dutch design lies in its commitment to clarity and purpose. Every element must justify its existence. This philosophy extends from architecture to graphic design, creating a cohesive visual language that speaks through structure rather than decoration.

Sharp corners and clean edges define the aesthetic. The deliberate absence of rounded corners creates a bold, architectural feel that demands attention without shouting. It's confident design that knows its worth.

Color as Structure

Colors in Dutch design serve structural purposes. The warm orange primary creates focal points, while the neutral palette provides a stable foundation. Each color has a role, a purpose, a place in the hierarchy.

"Good design is as little design as possible. Less, but better."

— Dieter Rams

This philosophy permeates every aspect of the Dutchy Design System. From typography choices to spacing scales, each decision reinforces the core values of bold simplicity and structural integrity.

Implementation

/* Tailwind Config */
fontFamily: {
  display: ['Space Grotesk', 'sans-serif'],
  sans: ['Inter', 'sans-serif'],
  mono: ['JetBrains Mono', 'monospace'],
}

/* Usage */
<h1 class="font-display text-6xl font-bold uppercase tracking-tighter">
  Display Heading
</h1>

<p class="font-sans text-base leading-relaxed">
  Body paragraph text
</p>

<code class="font-mono text-sm">
  Code snippet
</code>