Visual kits for agents that need to design well
Pick what you're building, preview every kit on that surface, and hand your agent a complete visual system — fonts, colors, tokens, and component rules.
Pick what you're building, preview every kit on that surface, and hand your agent a complete visual system — fonts, colors, tokens, and component rules.
A wellness and mindfulness system whose language lives in three alternating full-bleed surfaces: warm cream for hero sections, candy pink for community sections, and intimate editorial photography for narrative sections. Dark-brown ink sits directly on each colored surface, with no white backgrounds and no floating card panels. The sole electric accent is acid yellow, used only for CTAs on dark or photo surfaces and for the brand wordmark. Display headings mix Fraunces roman and italic within a single line.
rosecapsulewellness.com
Rose Capsule
Every kit is judged per use case against concrete criteria — chart-series distinctness, text contrast, information density — not keyword matching.
---
# Machine-readable tokens (the WHAT). The prose body gives the WHY + the rules.
# contract is THIS DOCUMENT'S shape and has nothing to do with the kit's
# revision below. It moves when a section is added, renamed or removed; a kit
# that never changed can arrive under a new one, and a kit that changed every
# token arrives under the same one. Read them independently.
#
# FIRST key on purpose. `name` is caller-supplied and yamlQuote escapes only the
# double quote, so a crafted kit name can inject lines into this block — every
# reader of this front matter honours the FIRST occurrence of a key, which puts
# an injected duplicate too late to matter.
contract: "1.0"
kit:
# The id is the durable handle; name and slug are both mutable.
# version is this record's monotonic revision: 0 = never versioned,
# null = the server did not report one. Diff against it; don't hash the file.
id: "e85c7e7c-ddde-456a-8ac0-2137a9443de8"
version: 0
slug: "rose-capsule-wellness"
name: "Rose Capsule Wellness"
colors:
roles_light:
background: "#FEF6D6"
foreground: "#3A2C2C"
card: "#FBBBC3"
card-foreground: "#3A2C2C"
popover: "#FEF6D6"
popover-foreground: "#3A2C2C"
primary: "#E7EA23"
primary-foreground: "#1E1818"
secondary: "#FBBBC3"
secondary-foreground: "#3A2C2C"
muted: "#F0E4BC"
muted-foreground: "#5A4848"
accent: "#FBBBC3"
accent-foreground: "#3A2C2C"
destructive: "#C83030"
destructive-foreground: "#FFFFFF"
border: "#D8C8A0"
input: "#EDE4C4"
ring: "#E7EA23"
success: "#4A9E5C"
success-foreground: "#000000"
warning: "#D4742A"
warning-foreground: "#000000"
chart-1: "#E7EA23"
chart-2: "#FBBBC3"
chart-3: "#C4A383"
chart-4: "#7AAD90"
chart-5: "#A888B8"
roles_dark:
background: "#2C2020"Three ways from the same kit: run "npx identityforge@latest apply rose-capsule-wellness" with the CLI to write the tokens and DESIGN.md into your project, fetch it through the Identity Forge MCP server inside Claude Code, Cursor, or OpenCode, or install from the shadcn registry at /r/rose-capsule-wellness.json with "npx shadcn add".
A complete brand system: a font pairing, 28 semantic color tokens in light and dark, a typography scale, spacing and elevation, per-element treatments, distinctive motifs, do's and don'ts, and a DESIGN.md a coding agent builds from. Exports cover shadcn registry items, Tailwind v3 and v4 themes, DTCG tokens JSON, and plain CSS variables.
Rose Capsule Wellness is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Rose Capsule Wellness — Identity Forge design kit.
* Kit id: e85c7e7c-ddde-456a-8ac0-2137a9443de8
* Kit slug: rose-capsule-wellness (a mutable alias; the id is the durable handle)
* Kit version: 0 (no version minted yet)
*/
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&family=DM%20Sans:wght@400;500;700&family=JetBrains%20Mono:wght@400;500;700&display=swap");
:root {
--radius: 1rem;
--font-heading: 'Fraunces', serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 48 95% 92%;
--foreground: 0 14% 20%;
--card: 353 89% 86%;
--card-foreground: 0 14% 20%;
--popover: 48 95% 92%;
--popover-foreground: 0 14% 20%;
--primary: 61 83% 53%;
--primary-foreground: 0 11% 11%;
--secondary: 353 89% 86%;
--secondary-foreground: 0 14% 20%;
--muted: 46 63% 84%;
--muted-foreground: 0 11% 32%;
--accent: 353 89% 86%;
--accent-foreground: 0 14% 20%;
--destructive: 0 61% 49%;
--destructive-foreground: 0 0% 100%;
--border: 43 42% 74%;
--input: 47 53% 85%;
--ring: 61 83% 53%;
--success: 133 36% 45%;
--success-foreground: 0 0% 0%;
--warning: 26 67% 50%;
--warning-foreground: 0 0% 0%;
--chart-1: 61 83% 53%;
--chart-2: 353 89% 86%;
--chart-3: 30 36% 64%;
--chart-4: 146 24% 58%;
--chart-5: 280 25% 63%;
--shadow-sm: 0 1px 3px rgba(58,44,44,0.06);
--shadow-md: 0 4px 12px rgba(58,44,44,0.08);
--shadow-lg: 0 8px 24px rgba(58,44,44,0.10);
--shadow-xl: 0 16px 48px rgba(58,44,44,0.12);
--gradient-hero: linear-gradient(180deg,#fef6d6 0%,#fbbbc3 100%);
--gradient-brand: linear-gradient(135deg,#e7ea23 0%,#fbbbc3 60%,#fef6d6 100%);
--gradient-subtle: linear-gradient(180deg,#fef6d6 0%,#f0e4bc 100%);
--duration: 220ms;
--duration-slow: 520ms;
--ease: cubic-bezier(0.25,0.46,0.45,0.94);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--font-weight-heading: 700;
--font-weight-body: 400;
--button-radius: 9999px;
--card-radius: 0.75rem;
--input-radius: 9999px;
--badge-radius: 9999px;
--border-width: 1px;Registry
/r/rose-capsule-wellness.jsonTailwind v4
/*
* Rose Capsule Wellness — Identity Forge design kit.
* Kit id: e85c7e7c-ddde-456a-8ac0-2137a9443de8
* Kit slug: rose-capsule-wellness (a mutable alias; the id is the durable handle)
* Kit version: 0 (no version minted yet)
*
* Drop-in Tailwind v4 theme: font import, the custom properties the theme
* aliases, and the @theme block. Expects `@import "tailwindcss";` above it,
* and the @import lines must stay at the top of the stylesheet.
*/
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&family=DM%20Sans:wght@400;500;700&family=JetBrains%20Mono:wght@400;500;700&display=swap");
:root {
--radius: 1rem;
--font-heading: 'Fraunces', serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 48 95% 92%;
--foreground: 0 14% 20%;
--card: 353 89% 86%;
--card-foreground: 0 14% 20%;
--popover: 48 95% 92%;
--popover-foreground: 0 14% 20%;
--primary: 61 83% 53%;
--primary-foreground: 0 11% 11%;
--secondary: 353 89% 86%;
--secondary-foreground: 0 14% 20%;
--muted: 46 63% 84%;
--muted-foreground: 0 11% 32%;
--accent: 353 89% 86%;
--accent-foreground: 0 14% 20%;
--destructive: 0 61% 49%;
--destructive-foreground: 0 0% 100%;
--border: 43 42% 74%;
--input: 47 53% 85%;
--ring: 61 83% 53%;
--success: 133 36% 45%;
--success-foreground: 0 0% 0%;
--warning: 26 67% 50%;
--warning-foreground: 0 0% 0%;
--chart-1: 61 83% 53%;
--chart-2: 353 89% 86%;
--chart-3: 30 36% 64%;
--chart-4: 146 24% 58%;
--chart-5: 280 25% 63%;
--shadow-sm: 0 1px 3px rgba(58,44,44,0.06);
--shadow-md: 0 4px 12px rgba(58,44,44,0.08);
--shadow-lg: 0 8px 24px rgba(58,44,44,0.10);
--shadow-xl: 0 16px 48px rgba(58,44,44,0.12);
--gradient-hero: linear-gradient(180deg,#fef6d6 0%,#fbbbc3 100%);
--gradient-brand: linear-gradient(135deg,#e7ea23 0%,#fbbbc3 60%,#fef6d6 100%);
--gradient-subtle: linear-gradient(180deg,#fef6d6 0%,#f0e4bc 100%);
--duration: 220ms;
--duration-slow: 520ms;
--ease: cubic-bezier(0.25,0.46,0.45,0.94);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--font-weight-heading: 700;
--font-weight-body: 400;
--button-radius: 9999px;
--card-radius: 0.75rem;
--input-radius: 9999px;
--badge-radius: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 1px;
--badge-border-width: 1px;
--heading-transform: none;
--label-transform: none;
--kit-id: "e85c7e7c-ddde-456a-8ac0-2137a9443de8";
--kit-version: 0;
}
.dark {
--radius: 1rem;
--font-heading: 'Fraunces', serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 0 16% 15%;
--foreground: 48 95% 92%;
--card: 0 16% 21%;
--card-foreground: 48 95% 92%;
--popover: 0 16% 21%;
--popover-foreground: 48 95% 92%;
--primary: 61 83% 53%;
--primary-foreground: 0 11% 11%;
--secondary: 0 18% 25%;
--secondary-foreground: 353 89% 86%;
--muted: 0 17% 19%;
--muted-foreground: 0 13% 64%;
--accent: 353 89% 86%;
--accent-foreground: 0 16% 15%;
--destructive: 0 72% 56%;
--destructive-foreground: 0 0% 0%;
--border: 0 14% 25%;
--input: 0 14% 25%;
--ring: 61 83% 53%;
--success: 134 40% 54%;
--success-foreground: 0 0% 0%;
--warning: 25 74% 53%;
--warning-foreground: 0 0% 0%;
--chart-1: 61 83% 53%;
--chart-2: 353 89% 86%;
--chart-3: 30 36% 64%;
--chart-4: 146 24% 58%;
--chart-5: 280 25% 63%;
}
@theme inline {
--font-heading: 'Fraunces', serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--color-background: hsl(var(--background));
--color-foreground: hsl(var(--foreground));
--color-card: hsl(var(--card));
--color-card-foreground: hsl(var(--card-foreground));
--color-popover: hsl(var(--popover));
--color-popover-foreground: hsl(var(--popover-foreground));
--color-primary: hsl(var(--primary));
--color-primary-foreground: hsl(var(--primary-foreground));
--color-secondary: hsl(var(--secondary));
--color-secondary-foreground: hsl(var(--secondary-foreground));
--color-muted: hsl(var(--muted));
--color-muted-foreground: hsl(var(--muted-foreground));
--color-accent: hsl(var(--accent));
--color-accent-foreground: hsl(var(--accent-foreground));
--color-destructive: hsl(var(--destructive));
--color-destructive-foreground: hsl(var(--destructive-foreground));
--color-border: hsl(var(--border));
--color-input: hsl(var(--input));
--color-ring: hsl(var(--ring));
--color-success: hsl(var(--success));
--color-success-foreground: hsl(var(--success-foreground));
--color-warning: hsl(var(--warning));
--color-warning-foreground: hsl(var(--warning-foreground));
--color-chart-1: hsl(var(--chart-1));
--color-chart-2: hsl(var(--chart-2));
--color-chart-3: hsl(var(--chart-3));
--color-chart-4: hsl(var(--chart-4));
--color-chart-5: hsl(var(--chart-5));
--radius-sm: 0.25rem;
--radius-md: 0.5rem;
--radius-lg: 1rem;
--radius-xl: 1.5rem;
--radius-button: 9999px;
--radius-card: 0.75rem;
--radius-input: 9999px;
--radius-badge: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 1px;
--badge-border-width: 1px;
--shadow-sm: 0 1px 3px rgba(58,44,44,0.06);
--shadow-md: 0 4px 12px rgba(58,44,44,0.08);
--shadow-lg: 0 8px 24px rgba(58,44,44,0.10);
--shadow-xl: 0 16px 48px rgba(58,44,44,0.12);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--ease-kit: cubic-bezier(0.25,0.46,0.45,0.94);
--duration-kit: 220ms;
--duration-kit-slow: 520ms;
--gradient-hero: linear-gradient(180deg,#fef6d6 0%,#fbbbc3 100%);
--gradient-brand: linear-gradient(135deg,#e7ea23 0%,#fbbbc3 60%,#fef6d6 100%);
--gradient-subtle: linear-gradient(180deg,#fef6d6 0%,#f0e4bc 100%);
--font-weight-heading: 700;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "rose-capsule-wellness",
"type": "registry:theme",
"title": "Rose Capsule Wellness",
"description": "An editorial wellness kit on alternating cream, candy-pink, and full-bleed photo surfaces with a high-contrast Fraunces serif, acid-yellow CTAs, and a floating pill-capsule navigation.",
"categories": [
"wellness",
"editorial",
"serif",
"alternating-surfaces",
"warm-palette",
"mindfulness",
"candy-pink",
"serif-display"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany