design-system-patterns
wshobson/agents
Build scalable design systems with tokens, theming, and component architecture patterns.
What is design-system-patterns?
Master design system architecture to create consistent, maintainable UI foundations. Use this skill when creating design tokens, implementing theme switching, building component libraries, or establishing design system foundations across web and mobile applications.
- Create primitive, semantic, and component token hierarchies with consistent naming conventions
- Implement CSS custom properties-based theming with dynamic light/dark mode switching and system preference detection
- Build compound and polymorphic components with variant systems, slot-based composition, and responsive variants
- Set up token pipelines for Figma-to-code synchronization using Style Dictionary and CI/CD integration
- Design headless UI patterns and style props systems for flexible component composition
- Support multi-platform token generation for web, iOS, and Android
How to install design-system-patterns
npx skills add https://github.com/wshobson/agents --skill design-system-patternsHow to use design-system-patterns
- 1.Define primitive tokens for raw values (colors, sizes, fonts) organized by category
- 2.Create semantic tokens that reference primitives with contextual names (text-primary, surface-elevated)
- 3.Set up CSS custom properties architecture or theme context providers for your framework
- 4.Implement theme switching logic with system preference detection and persistent storage
- 5.Build components using tokens instead of hardcoded values, supporting variant and size systems
- 6.Configure token pipeline (Figma sync, Style Dictionary) for multi-platform generation
- 7.Document token usage guidelines and establish versioning practices for token changes
Use cases
- Creating a multi-brand theming system with primitive and semantic tokens that adapt to light/dark modes
- Building a React component library with compound components and polymorphic variants using CSS custom properties
- Synchronizing design tokens from Figma to code automatically via Style Dictionary in CI/CD
- Implementing system preference detection (prefers-color-scheme) with persistent theme storage and reduced motion support
- Establishing design-to-code workflows with semantic token hierarchies and component-level token definitions
- Design system architects and maintainers
- Frontend engineers building component libraries
- Product teams establishing design foundations
- Teams managing multi-brand or multi-platform applications
- Designers and developers collaborating on design-to-code workflows
design-system-patterns FAQ
Primitive tokens are raw values (colors, sizes). Semantic tokens reference primitives with contextual meaning (text-primary, surface-elevated). Component tokens are specific to individual components (button-bg, card-border). This hierarchy prevents sprawl and makes maintenance easier.
Use CSS custom properties with a theme context provider that updates the root element's data-theme attribute. Store the user's preference in localStorage and detect system preference with prefers-color-scheme media queries.
Yes. Create separate semantic token sets for each brand that reference the same primitives, then switch between them dynamically. This allows consistent component architecture while maintaining brand-specific styling.
Use Figma Tokens plugin to export tokens, then configure Style Dictionary to transform and generate platform-specific outputs (CSS, JavaScript, iOS, Android). Integrate into CI/CD for automatic updates.
Gradually migrate to tokens by identifying common values, creating corresponding tokens, and replacing hardcoded values. Provide migration paths and deprecate old approaches incrementally rather than breaking changes.
Full instructions (SKILL.md)
Source of truth, from wshobson/agents.
name: design-system-patterns description: Build scalable design systems with design tokens, theming infrastructure, and component architecture patterns. Use when creating design tokens, implementing theme switching, building component libraries, or establishing design system foundations.
Design System Patterns
Master design system architecture to create consistent, maintainable, and scalable UI foundations across web and mobile applications.
When to Use This Skill
- Creating design tokens for colors, typography, spacing, and shadows
- Implementing light/dark theme switching with CSS custom properties
- Building multi-brand theming systems
- Architecting component libraries with consistent APIs
- Establishing design-to-code workflows with Figma tokens
- Creating semantic token hierarchies (primitive, semantic, component)
- Setting up design system documentation and guidelines
Core Capabilities
1. Design Tokens
- Primitive tokens (raw values: colors, sizes, fonts)
- Semantic tokens (contextual meaning: text-primary, surface-elevated)
- Component tokens (specific usage: button-bg, card-border)
- Token naming conventions and organization
- Multi-platform token generation (CSS, iOS, Android)
2. Theming Infrastructure
- CSS custom properties architecture
- Theme context providers in React
- Dynamic theme switching
- System preference detection (prefers-color-scheme)
- Persistent theme storage
- Reduced motion and high contrast modes
3. Component Architecture
- Compound component patterns
- Polymorphic components (as prop)
- Variant and size systems
- Slot-based composition
- Headless UI patterns
- Style props and responsive variants
4. Token Pipeline
- Figma to code synchronization
- Style Dictionary configuration
- Token transformation and formatting
- CI/CD integration for token updates
Quick Start
// Design tokens with CSS custom properties
const tokens = {
colors: {
// Primitive tokens
gray: {
50: "#fafafa",
100: "#f5f5f5",
900: "#171717",
},
blue: {
500: "#3b82f6",
600: "#2563eb",
},
},
// Semantic tokens (reference primitives)
semantic: {
light: {
"text-primary": "var(--color-gray-900)",
"text-secondary": "var(--color-gray-600)",
"surface-default": "var(--color-white)",
"surface-elevated": "var(--color-gray-50)",
"border-default": "var(--color-gray-200)",
"interactive-primary": "var(--color-blue-500)",
},
dark: {
"text-primary": "var(--color-gray-50)",
"text-secondary": "var(--color-gray-400)",
"surface-default": "var(--color-gray-900)",
"surface-elevated": "var(--color-gray-800)",
"border-default": "var(--color-gray-700)",
"interactive-primary": "var(--color-blue-400)",
},
},
};
Detailed patterns and worked examples
Detailed pattern documentation lives in references/details.md. Read that file when the navigation tier above is insufficient.
Best Practices
- Name Tokens by Purpose: Use semantic names (text-primary) not visual descriptions (dark-gray)
- Maintain Token Hierarchy: Primitives > Semantic > Component tokens
- Document Token Usage: Include usage guidelines with token definitions
- Version Tokens: Treat token changes as API changes with semver
- Test Theme Combinations: Verify all themes work with all components
- Automate Token Pipeline: CI/CD for Figma-to-code synchronization
- Provide Migration Paths: Deprecate tokens gradually with clear alternatives
Common Issues
- Token Sprawl: Too many tokens without clear hierarchy
- Inconsistent Naming: Mixed conventions (camelCase vs kebab-case)
- Missing Dark Mode: Tokens that don't adapt to theme changes
- Hardcoded Values: Using raw values instead of tokens
- Circular References: Tokens referencing each other in loops
- Platform Gaps: Tokens missing for some platforms (web but not mobile)
Related skills
More from wshobson/agents and the wider catalog.
tailwind-design-system
Build production-ready design systems with Tailwind CSS v4, design tokens, and component libraries.
typescript-advanced-types
Master TypeScript's advanced type system: generics, conditional types, mapped types, and utility types for type-safe applications.
nodejs-backend-patterns
Build production-ready Node.js backends with Express/Fastify, middleware patterns, auth, and database integration.
python-performance-optimization
Profile and optimize Python code using cProfile, memory profilers, and performance best practices.
brand-landingpage
Brand-first landing page designer with guided interviews and Stitch-powered iteration.
python-testing-patterns
Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development.