nothing-design-skill
```markdown
What this skill does
```markdown
---
name: nothing-design-skill
description: Generate UI in the Nothing design language — monochrome, typographic, industrial — using Space Grotesk/Mono/Doto fonts, OLED blacks, segmented components, and strict three-layer visual hierarchy.
triggers:
- nothing design
- nothing style UI
- generate nothing phone UI
- monochrome industrial design
- swiss typography UI
- OLED dark mode components
- segmented progress bar nothing
- nothing design system
---
# Nothing Design Skill
> Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection.
A Claude Code skill that encodes Nothing's visual language into reusable design rules. When activated, generate UI that is monochrome, typographic, and industrial — no gradients, no decoration, no noise.
## What this skill does
- Enforces three-layer visual hierarchy: **display → body → metadata**
- Applies the canonical Nothing font stack: Space Grotesk + Space Mono + Doto
- Outputs full dark/light mode token systems
- Generates segmented progress bars, mechanical toggles, instrument-style widgets
- Targets HTML/CSS, SwiftUI, or React/Tailwind output
## Install
```sh
git clone https://github.com/dominikmartn/nothing-design-skill.git
cp -r nothing-design-skill/nothing-design ~/.claude/skills/
```
Restart Claude Code. The skill loads automatically on next session.
## Activation
Say any of:
- "Nothing style"
- `/nothing-design`
- "Generate this in the Nothing design language"
- "Make this monochrome industrial"
Claude will apply the full system without further prompting.
---
## Design Principles
### Visual Hierarchy (strict — never add layers)
| Layer | Role | Font | Weight | Size |
|-------|------|------|--------|------|
| Display | Hero numbers, key metric | Doto / Space Mono | 100–300 | 48–96px |
| Body | Primary readable content | Space Grotesk | 400 | 14–16px |
| Metadata | Labels, timestamps, units | Space Mono | 400 | 10–12px |
### Core Rules
1. **Black is black** — `#0A0A0A` on dark, never `#000000` (OLED bleed)
2. **One accent** — white on dark, black on light. No color except system alerts
3. **No gradients** — flat fills only
4. **Borders over shadows** — `1px solid` beats `box-shadow`
5. **Segmentation over continuity** — progress is ticked, not smooth
6. **Numbers are display elements** — treat metrics like type, not data
---
## Token System
### Color Tokens
```css
/* Dark mode (default) */
:root[data-theme="dark"] {
--bg-primary: #0A0A0A;
--bg-secondary: #111111;
--bg-elevated: #1A1A1A;
--bg-overlay: #222222;
--border-default: #2A2A2A;
--border-subtle: #1E1E1E;
--border-strong: #3A3A3A;
--text-primary: #F5F5F5;
--text-secondary: #999999;
--text-disabled: #444444;
--text-inverse: #0A0A0A;
--accent: #F5F5F5;
--accent-inverse: #0A0A0A;
--signal-error: #FF3B30;
--signal-warn: #FF9500;
--signal-ok: #30D158;
}
/* Light mode */
:root[data-theme="light"] {
--bg-primary: #F5F5F5;
--bg-secondary: #EBEBEB;
--bg-elevated: #FFFFFF;
--bg-overlay: #E0E0E0;
--border-default: #D0D0D0;
--border-subtle: #DEDEDE;
--border-strong: #BEBEBE;
--text-primary: #0A0A0A;
--text-secondary: #666666;
--text-disabled: #BBBBBB;
--text-inverse: #F5F5F5;
--accent: #0A0A0A;
--accent-inverse: #F5F5F5;
}
```
### Typography Tokens
```css
/* Import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&family=Doto:wght@100;200;300;400&display=swap');
:root {
/* Display — Doto for numerics, Space Mono fallback */
--font-display: 'Doto', 'Space Mono', monospace;
--font-body: 'Space Grotesk', system-ui, sans-serif;
--font-meta: 'Space Mono', monospace;
/* Scale */
--text-display-xl: 96px;
--text-display-lg: 64px;
--text-display-md: 48px;
--text-display-sm: 32px;
--text-body-lg: 18px;
--text-body-md: 16px;
--text-body-sm: 14px;
--text-meta-md: 12px;
--text-meta-sm: 10px;
/* Tracking — tight for display, wide for meta */
--tracking-display: -0.04em;
--tracking-body: -0.01em;
--tracking-meta: 0.08em;
/* Line height */
--leading-display: 0.95;
--leading-body: 1.5;
--leading-meta: 1.4;
}
```
### Spacing & Radius
```css
:root {
/* 4px base grid */
--space-1: 4px;
--space-2: 8px;
--space-3: 12px;
--space-4: 16px;
--space-5: 20px;
--space-6: 24px;
--space-8: 32px;
--space-10: 40px;
--space-12: 48px;
--space-16: 64px;
/* Radius — sharp by default */
--radius-none: 0px;
--radius-sm: 2px;
--radius-md: 4px;
--radius-lg: 8px;
--radius-pill: 999px;
}
```
### Motion Tokens
```css
:root {
--duration-instant: 80ms;
--duration-fast: 150ms;
--duration-normal: 250ms;
--duration-slow: 400ms;
/* Mechanical — ease-out only, no bounce */
--ease-mechanical: cubic-bezier(0.4, 0, 0.2, 1);
--ease-snap: cubic-bezier(0.0, 0, 0.2, 1);
}
```
---
## Components
### Button
```html
<!-- Primary -->
<button class="btn-primary">
<span class="btn-label">CONFIRM</span>
</button>
<!-- Ghost -->
<button class="btn-ghost">
<span class="btn-label">CANCEL</span>
</button>
```
```css
.btn-primary,
.btn-ghost {
font-family: var(--font-meta);
font-size: var(--text-meta-md);
letter-spacing: var(--tracking-meta);
text-transform: uppercase;
padding: var(--space-3) var(--space-6);
border-radius: var(--radius-sm);
cursor: pointer;
transition: opacity var(--duration-fast) var(--ease-mechanical);
}
.btn-primary {
background: var(--accent);
color: var(--accent-inverse);
border: 1px solid var(--accent);
}
.btn-ghost {
background: transparent;
color: var(--text-primary);
border: 1px solid var(--border-strong);
}
.btn-primary:hover,
.btn-ghost:hover { opacity: 0.7; }
.btn-primary:active,
.btn-ghost:active { opacity: 0.5; }
```
---
### Segmented Progress Bar
The Nothing signature — ticked, not smooth.
```html
<div class="seg-progress" data-segments="12" data-filled="8" aria-valuenow="67">
<!-- generated by JS below -->
</div>
<span class="seg-label">08 / 12</span>
```
```css
.seg-progress {
display: flex;
gap: 3px;
align-items: center;
height: 16px;
}
.seg-tick {
flex: 1;
height: 100%;
border-radius: var(--radius-none);
transition: background var(--duration-instant) var(--ease-snap);
}
.seg-tick.filled { background: var(--accent); }
.seg-tick.empty { background: var(--border-default); }
.seg-label {
font-family: var(--font-meta);
font-size: var(--text-meta-sm);
color: var(--text-secondary);
letter-spacing: var(--tracking-meta);
margin-top: var(--space-1);
display: block;
}
```
```js
function renderSegProgress(el) {
const total = parseInt(el.dataset.segments, 10);
const filled = parseInt(el.dataset.filled, 10);
el.innerHTML = Array.from({ length: total }, (_, i) =>
`<div class="seg-tick ${i < filled ? 'filled' : 'empty'}"></div>`
).join('');
}
document.querySelectorAll('.seg-progress').forEach(renderSegProgress);
```
---
### Card
```html
<article class="card">
<header class="card-header">
<span class="card-label">BATTERY</span>
<span class="card-tag">LIVE</span>
</header>
<div class="card-display">87</div>
<div class="card-unit">PERCENT</div>
</article>
```
```css
.card {
background: var(--bg-secondary);
border: 1px solid var(--border-default);
border-radius: var(--radius-md);
padding: var(--space-6);
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--space-4);
}
.card-label {
font-family: var(--font-meta);
font-size: var(--text-meta-sm);
letter-spacing: var(--tracking-meta);
color: var(--text-secondary);
text-transform: uppercase;
}
.card-tag {
font-family: var(--font-meta);
font-size: var(--text-meta-sm);
letter-spacing: var(--tracking-meta);
color: var(--signal-ok);
text-transform: uppercase;
}
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.