Skill detail
ui-design-system
Useful for PM collaboration with design, but primarily a UI design skill.
Inspect before use
Automated review checks relevance, not safety or endorsement. Read the source instructions before using this skill.
SKILL.md
The saved excerpt is a snapshot from review. The external source remains the complete and most current version.
--- name: "ui-design-system" description: UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use when creating design systems, generating design tokens, maintaining visual consistency, or facilitating design-dev collaboration and developer handoff. --- # UI Design System Generate design tokens, create color palettes, calculate typography scales, build component systems, and prepare developer handoff documentation. --- ## Table of Contents - [Trigger Terms](#trigger-terms) - [Workflows](#workflows) - [Workflow 1: Generate Design Tokens](#workflow-1-generate-design-tokens) - [Workflow 2: Create Component System](#workflow-2-create-component-system) - [Workflow 3: Responsive Design](#workflow-3-responsive-design) - [Workflow 4: Developer Handoff](#workflow-4-developer-handoff) - [Tool Reference](#tool-reference) - [Quick Reference Tables](#quick-reference-tables) - [Knowledge Base](#knowledge-base) --- ## Trigger Terms Use this skill when you need to: - "generate design tokens" - "create color palette" - "build typography scale" - "calculate spacing system" - "create design system" - "generate CSS variables" - "export SCSS tokens" - "set up component architecture" - "document component library" - "calculate responsive breakpoints" - "prepare developer handoff" - "convert brand color to palette" - "check WCAG contrast" - "build 8pt grid system" --- ## Workflows ### Workflow 1: Generate Design Tokens **Situation:** You have a brand color and need a complete design token system. **Steps:** 1. **Identify brand color and style** - Brand primary color (hex format) - Style preference: `modern` | `classic` | `playful` 2. **Generate tokens using script** ```bash python scripts/design_token_generator.py "#0066CC" modern json ``` 3. **Review generated categories** - Colors: primary, secondary, neutral, semantic, surface - Typography: fontFamily, fontSize, fontWeight, lineHeight - Spacing: 8pt grid-based scale (0-64) - Borders: radius, width - Shadows: none through 2xl - Animation: duration, easing - Breakpoints: xs through 2xl 4. **Export in target format** ```bash # CSS custom properties python scripts/design_token_generator.py "#0066CC" modern css > design-tokens.css # SCSS variables python scripts/design_token_generator.py "#0066CC" modern scss > _design-tokens.scss # JSON for Figma/tooling python scripts/design_token_generator.py "#0066CC" modern json > design-tokens.json ``` 5. **Validate accessibility** - Check color contrast meets WCAG AA (4.5:1 normal, 3:1 large text) - Verify semantic colors have contrast colors defined --- ### Workflow 2: Create Component System **Situation:** You need to structure a component library using design tokens. **Steps:** 1. **Define component hierarchy** - Atoms: Button, Input, Icon, Label, Badge - Molecules: FormField, SearchBar, Card, ListItem - Organisms: Header, Footer, DataTable, Modal - Templates: DashboardLayout, AuthLayout 2. **Map tokens to components** | Component | Tokens Used | |-----------|-------------| | Button | colors, sizing, borders, shadows, typography | | Input | colors, sizing, borders, spacing | | Card | colors, borders, shadows, spacing | | Modal | colors, shadows, spacing, z-index, animation | 3. **Define variant patterns** Size variants: ``` sm: height 32px, paddingX 12px, fontSize 14px md: height 40px, paddingX 16px, fontSize 16px lg: height 48px, paddingX 20px, fontSize 18px ``` Color variants: ``` primary: background primary-500, text white secondary: background neutral-100, text neutral-900 ghost: background transparent, text neutral-700 ``` 4. **Document component API** - Props interface with types - Variant options - State handling (hover, active, focus, disabled) - AccessibRead the full source on GitHub (opens external page)