A minimalist black-and-white design system with generous whitespace for HTML artifacts, dashboards, and websites. Built with Tailwind CSS and Inter UI font.
π View Demo Website
A Claude Skill is a folder containing instructions, scripts, and resources that Claude loads dynamically when needed. Skills teach Claude how to complete specific tasks in a repeatable way, improving consistency and performance.
The Minimal Design System Skill gives Claude precise instructions on how to create professional, minimalist websites and components with consistent styling, generous whitespace, and clear hierarchy.
Claude automatically invokes Skills based on your taskβno manual selection needed. When you describe a task that matches a Skill's description, Claude recognizes it and loads the Skill automatically.
- β¨ Generous Whitespace - Large gaps between sections for breathing room
- π Clear Hierarchy - Typography-driven visual hierarchy
- π¨ Minimal Colors - Black, white, and subtle grays only
- π Readable - Max 65-75 characters per line for text content
- π Dark Mode - Perfect light/dark mode symmetry
- β‘ Tailwind CSS - Fast, consistent development
The complete skill includes:
minimal-design-system/
βββ SKILL.md # Main skill file with instructions
βββ assets/
β βββ base-template.html # Complete working template
β βββ showcase.html # Full showcase with all components
βββ references/
βββ design-tokens.md # Color system, typography, spacing
βββ button-components.md # Button variations and usage
βββ components.md # Complete component library
-
Clone or Download this Repository
git clone https://github.com/holger1411/minimal-design-system-skill.git
Or download as ZIP from GitHub
-
Create the Skill ZIP
cd minimal-design-system-skill zip -r minimal-design-system.zip minimal-design-system/ -
Upload to Claude
- Go to
Settings β Capabilities β Skills - Click "Upload skill"
- Select the
minimal-design-system.zipfile
- Go to
If you just want to try the basic skill without all templates:
- Download SKILL.md
- Create a folder named
minimal-design-systemand place SKILL.md inside - ZIP the folder
- Upload to Claude via
Settings β Capabilities β Skills
Note: The full skill with templates and references provides Claude with more examples and detailed documentation.
-
Clone the Repository
git clone https://github.com/holger1411/minimal-design-system-skill.git
-
Copy to Claude Skills Directory
cp -r minimal-design-system-skill/minimal-design-system ~/.claude/skills/ -
Restart Claude Code
- The Skill will be automatically available in all sessions
ChatGPT:
- Go to Settings β Personalization β Custom Instructions
- Paste the SKILL.md content into the bottom text field
- Enable "Enable for new chats"
Google Gemini:
- Open a new chat
- Paste the SKILL.md content as your first message
- Ask Gemini to follow these instructions
Other LLMs:
- Paste the SKILL.md content as a system prompt or at the beginning of your conversation
- Generous Whitespace: Large gaps between sections for breathing room
- Clear Hierarchy: Typography-driven visual hierarchy (size, weight)
- Minimal Color: Black, white, and subtle grays only
- Readable: Max 65-75 characters per line for text content
- Reversible: Perfect light/dark mode symmetry
- Max width: 1280px (max-w-5xl or max-w-6xl)
- Content width: 672px (max-w-2xl) for reading text
- Padding: 24px on mobile, 32px on desktop
- Section gaps: 64px (space-y-16) between major sections
- Element gaps: 24px (space-y-6) within sections
Headings:
- h1: text-4xl sm:text-5xl (36px/48px)
- h2: text-2xl sm:text-3xl (24px/30px)
- h3: text-xl sm:text-2xl (20px/24px)
Body:
- Default: text-base (16px)
- Large: text-lg (18px)
- Small: text-sm (14px)
- Muted: text-muted (gray-600/gray-400)
The design system includes a comprehensive component library:
- Primary, Secondary, Ghost, Link variants
- Three sizes (small, default, large)
- Disabled and loading states
- Icon integration
- Input fields (text, email, password, textarea)
- Checkboxes and radio buttons
- Complete login form example
- Basic cards with hover states
- Stats cards for metrics
- Image cards with content
- Responsive table layouts
- Hover states and striped rows
- Status badges integration
- Checklists with icons
- Feature lists
- Status badges (success, info, warning, error)
- Tags for categories
- Horizontal bar charts
- Progress indicators
- Data visualization patterns
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--color-bg: #ffffff;
--color-fg: #000000;
--color-muted: #737373;
--color-border: #e5e7eb;
--color-hover: #f5f5f5;
}
@media (prefers-color-scheme: dark) {
:root {
--color-bg: #000000;
--color-fg: #ffffff;
--color-muted: #a3a3a3;
--color-border: #262626;
--color-hover: #171717;
}
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background-color: var(--color-bg);
color: var(--color-fg);
}
</style>
</head>
<body class="antialiased">
<div class="max-w-5xl mx-auto px-6 py-12">
<header class="mb-16">
<h1 class="text-4xl font-bold mb-4">Welcome</h1>
<p class="text-lg text-[var(--color-muted)]">A minimalist design approach</p>
</header>
<main class="space-y-16">
<section>
<h2 class="text-2xl font-semibold mb-4">Section Title</h2>
<p class="text-[var(--color-muted)]">Your content here...</p>
</section>
</main>
</div>
</body>
</html>"Use minimal design system and create a landing page for my SaaS product"
"Use minimal design system and build a dashboard with user statistics"
"Use minimal design system and create a login form"
Claude automatically discovers and uses Skills based on your request:
- Progressive Disclosure: Claude scans skill metadata (name and description) first
- Automatic Invocation: When your task matches a skill's description, Claude loads it
- No Manual Selection: You don't need to explicitly activate skills
- Composable: Multiple skills can work together automatically
- Chrome/Edge (latest)
- Firefox (latest)
- Safari (latest)
- Supports both light and dark mode automatically
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - feel free to use this skill in your projects.
Created by Holger KΓΆnemann