# Frontend UI Design System

> Standardized guidelines and patterns for Frontend Ui Design System.

- Skill: `valec3/frontend-ui-design-system` (Agent Skill)
- Install (CLI): `npx skillmds add valec3/frontend-ui-design-system`
- Raw SKILL.md: https://api.skillmd.com/api/skills/valec3/frontend-ui-design-system/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Design & Media
- Author: valec3 (https://skillmd.com/u/valec3)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/valec3/frontend-ui-design-system

---


# Frontend Ui Design System

## When to use this skill
- Creating a design system
- Maintaining component library
- Ensuring design consistency

## Workflow
- [ ] Define design tokens (colors, spacing, typography)
- [ ] Create base components
- [ ] Document component usage
- [ ] Version design system
- [ ] Establish contribution guidelines

## Instructions

### Design Tokens
```typescript
// tokens/colors.ts
export const colors = {
  primary: {
    50: '#eff6ff',
    500: '#3b82f6',
    900: '#1e3a8a'
  },
  semantic: {
    success: '#10b981',
    error: '#ef4444',
    warning: '#f59e0b'
  }
};
```

### Component Structure
```
design-system/
├── tokens/
│   ├── colors.ts
│   ├── spacing.ts
│   └── typography.ts
├── components/
│   ├── Button/
│   ├── Input/
│   └── Card/
└── docs/
    └── [component].stories.tsx
```

## Resources
- Document all components
- Version with semantic versioning
- Use Storybook for documentation

