{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
Best Practice Beginner 1 min read 250 words

Design Token Management: Bridging Design and Development

Design tokens are the single source of truth for colors, spacing, typography, and other visual properties. Managing them well eliminates design-development inconsistencies.

Key Takeaways

  • Design tokens are named values that represent design decisions: `color-primary-500`, `spacing-lg`, `font-size-heading-1`.
  • Raw values with no semantic meaning: `blue-500`, `gray-100`, `4px`.
  • Store tokens in a platform-agnostic format (JSON or YAML) and transform them into platform-specific outputs: CSS custom properties for web, Swift/Kotlin constants for mobile, XML for Android.
  • Treat your token file like a library with semantic versioning.

What Are Design Tokens

Design tokens are named values that represent design decisions: color-primary-500, spacing-lg, font-size-heading-1. They abstract raw values (like #3B82F6 or 24px) behind semantic names, making it easy to update an entire design system by changing a single token.

Token Categories

Category Examples
Color primary, secondary, neutral, semantic (error, success, warning)
Spacing xs, sm, md, lg, xl, 2xl
Typography font-family, font-size, line-height, font-weight
Border radius, width, color
Shadow sm, md, lg, xl
Motion duration, easing

Three-Tier Token Architecture

Global Tokens

Raw values with no semantic meaning: blue-500, gray-100, 4px. These form the palette from which all other tokens draw.

Alias Tokens

Semantic references to global tokens: color-primary points to blue-500, color-surface points to gray-100. Alias tokens encode design intent.

Component Tokens

Scoped to specific components: button-bg-primary points to color-primary. These provide granular control without changing the global system.

Storage Formats

Store tokens in a platform-agnostic format (JSON or YAML) and transform them into platform-specific outputs: CSS custom properties for web, Swift/Kotlin constants for mobile, XML for Android. Style Dictionary and Tokens Studio are popular tools for this transformation.

Versioning Tokens

Treat your token file like a library with semantic versioning. Breaking changes (renaming or removing tokens) require a major version bump. Adding new tokens is a minor bump. This discipline prevents downstream breakage when teams consume your tokens.