Complete UI/UX design system for React Native & Next.js with 6 curated design presets. Supports greenfield projects and brownfield refactoring.
git clone https://github.com/apexscaleai/claude-ui-design-system.gitClaude UI Design System is a comprehensive toolkit for establishing or modernizing design systems in React Native and Next.js projects. It provides 10 specialized skills covering foundation setup, component scaffolding, design documentation generation, and UI refactoring workflows. The system includes 6 curated design presets—Minimalist Modern, Bold Brutalist, Soft Neumorphic, Glass Aesthetic, Timeless Classic, and Bleeding Edge Experimental—that can be applied to new projects or used to migrate existing codebases. Teams can install skills globally, per-project, or via the Claude Code plugin marketplace, making it accessible for both individual developers and collaborative environments.
Install via Claude Code plugin marketplace with `/plugin marketplace add apexscaleai/claude-ui-design-system`, or manually clone to `~/.claude/skills` for global access or `.claude/skills` within a project for team sharing. After installation, request specific skills like 'set up design system foundation for my React Native app using glass-aesthetic preset' or 'refactor this component to use minimalist-modern preset.'
Set up design tokens, folder structure, and theme system for new React Native or Next.js projects
Refactor existing UI components to modern design principles with improved accessibility
Generate complete design system documentation including specs, component guides, and token references
Migrate between design presets to update visual direction without rebuilding components
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/apexscaleai/claude-ui-design-systemCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Create a comprehensive UI/UX design system for a [COMPANY] in the [INDUSTRY] sector. The design system should include components for both React Native and Next.js. Include a color palette, typography, spacing, and common UI components like buttons, cards, and navigation elements. The design system should be adaptable for both greenfield and brownfield projects. Provide the code for the design system in a structured format.
## UI/UX Design System for [COMPANY] in the [INDUSTRY] Sector
### Color Palette
- Primary: #2A5C8A
- Secondary: #4A8FAA
- Accent: #FFA07A
- Background: #F5F5F5
- Text: #333333
### Typography
- **Headings**: Montserrat (Bold, Semi-Bold)
- **Body**: Open Sans (Regular, Medium)
- **Font Sizes**:
- Headings: 24px, 20px, 18px
- Body: 16px, 14px
### Spacing
- **Padding**: 16px (Standard), 24px (Large)
- **Margins**: 16px (Standard), 24px (Large)
- **Gutters**: 16px (Standard), 24px (Large)
### Components
#### Buttons
```jsx
const Button = ({ title, onPress }) => (
<TouchableOpacity onPress={onPress} style={styles.button}>
<Text style={styles.buttonText}>{title}</Text>
</TouchableOpacity>
);
const styles = StyleSheet.create({
button: {
backgroundColor: '#2A5C8A',
padding: 16,
borderRadius: 8,
alignItems: 'center',
},
buttonText: {
color: 'white',
fontFamily: 'Montserrat-SemiBold',
fontSize: 16,
},
});
```
#### Cards
```jsx
const Card = ({ title, content }) => (
<View style={styles.card}>
<Text style={styles.cardTitle}>{title}</Text>
<Text style={styles.cardContent}>{content}</Text>
</View>
);
const styles = StyleSheet.create({
card: {
backgroundColor: 'white',
borderRadius: 8,
padding: 16,
marginBottom: 16,
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
elevation: 2,
},
cardTitle: {
fontFamily: 'Montserrat-Bold',
fontSize: 20,
marginBottom: 8,
},
cardContent: {
fontFamily: 'OpenSans-Regular',
fontSize: 16,
},
});
```AI assistant built for thoughtful, nuanced conversation
Create stunning websites effortlessly with customizable templates and e-commerce tools.
Create and collaborate on interactive animations with powerful, user-friendly tools.
Visualize user engagement with heatmaps and optimize designs through A/B testing.
IronCalc is a spreadsheet engine and ecosystem
The new way to create a website
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan