{# 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
Design

Design Token

A named value representing a design decision (color, spacing, typography) shared across design and code systems.

Teknik Detay

Design Token is a foundational concept in visual design theory. It influences how users perceive and interact with interfaces, affecting readability, hierarchy, and aesthetic appeal. The design principles behind design token are codified in systems like Material Design 3, Apple's Human Interface Guidelines, and the W3C's Web Content Accessibility Guidelines. Implementing design token correctly requires balancing aesthetic intent with accessibility requirements and cross-platform consistency.

Ornek

```json
{
  "color": {
    "primary": { "value": "#2563eb", "type": "color" },
    "text":    { "value": "#1a1a1a", "type": "color" }
  },
  "spacing": {
    "sm": { "value": "0.5rem", "type": "dimension" },
    "md": { "value": "1rem",   "type": "dimension" },
    "lg": { "value": "2rem",   "type": "dimension" }
  },
  "font": {
    "body": { "value": "Inter, system-ui, sans-serif", "type": "fontFamily" }
  }
}
```

Ilgili Araclar

Ilgili Terimler