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 bold, warm-toned system built on three alternating surface bands: a deep dark-olive photographic hero, a muted khaki-olive information band, and a clean warm-white content section. The vivid yellow-lime accent appears exclusively as headline text on dark surfaces and as filled pill CTA buttons, never as a whole-section background. Bracket-notation wayfinding labels, oversized display headings in Space Grotesk, and left-aligned editorial DM Sans copy define the visual grammar.
thesocialclub.com
Social Club
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: "11071705-fecd-4e6a-bb8a-24d12516dd1b"
version: 0
slug: "the-social-club"
name: "The Social Club"
colors:
roles_light:
background: "#FAFAF4"
foreground: "#1C1A0E"
card: "#FFFFFF"
card-foreground: "#1C1A0E"
popover: "#FFFFFF"
popover-foreground: "#1C1A0E"
primary: "#C8CA30"
primary-foreground: "#1A1800"
secondary: "#736E4E"
secondary-foreground: "#FFFFFF"
muted: "#E8E4D5"
muted-foreground: "#5D5840"
accent: "#2E2C1F"
accent-foreground: "#FAFAF4"
destructive: "#9C3C2C"
destructive-foreground: "#FFFFFF"
border: "#D3CFBC"
input: "#D3CFBC"
ring: "#C8CA30"
success: "#2D702C"
success-foreground: "#FFFFFF"
warning: "#8A5206"
warning-foreground: "#FFFFFF"
chart-1: "#C8CA30"
chart-2: "#9C3C2C"
chart-3: "#426063"
chart-4: "#2D702C"
chart-5: "#945C37"
roles_dark:
background: "#2E2C1F"Three ways from the same kit: run "npx identityforge@latest apply the-social-club" 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/the-social-club.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.
The Social Club is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* The Social Club — Identity Forge design kit.
* Kit id: 11071705-fecd-4e6a-bb8a-24d12516dd1b
* Kit slug: the-social-club (a mutable alias; the id is the durable handle)
* Kit version: 0 (no version minted yet)
*/
@import url("https://fonts.googleapis.com/css2?family=Space%20Grotesk:wght@400;500;700&family=DM%20Sans:wght@400;500;700&family=JetBrains%20Mono:wght@400;500;700&display=swap");
:root {
--radius: 0.875rem;
--font-heading: 'Space Grotesk', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 60 37% 97%;
--foreground: 51 33% 8%;
--card: 0 0% 100%;
--card-foreground: 51 33% 8%;
--popover: 0 0% 100%;
--popover-foreground: 51 33% 8%;
--primary: 61 62% 49%;
--primary-foreground: 55 100% 5%;
--secondary: 52 19% 38%;
--secondary-foreground: 0 0% 100%;
--muted: 47 29% 87%;
--muted-foreground: 50 18% 31%;
--accent: 52 19% 15%;
--accent-foreground: 60 37% 97%;
--destructive: 9 56% 39%;
--destructive-foreground: 0 0% 100%;
--border: 50 21% 78%;
--input: 50 21% 78%;
--ring: 61 62% 49%;
--success: 119 44% 31%;
--success-foreground: 0 0% 100%;
--warning: 35 92% 28%;
--warning-foreground: 0 0% 100%;
--chart-1: 61 62% 49%;
--chart-2: 9 56% 39%;
--chart-3: 185 20% 32%;
--chart-4: 119 44% 31%;
--chart-5: 24 46% 40%;
--shadow-sm: 0 1px 3px rgba(30,28,16,0.10);
--shadow-md: 0 4px 12px rgba(30,28,16,0.12);
--shadow-lg: 0 8px 24px rgba(30,28,16,0.14);
--shadow-xl: 0 16px 48px rgba(30,28,16,0.18);
--gradient-hero: linear-gradient(to bottom, rgba(46,44,31,0.28) 0%, rgba(46,44,31,0.88) 100%);
--gradient-brand: linear-gradient(135deg, #2e2c1f 0%, #736e4e 100%);
--gradient-subtle: linear-gradient(180deg, #fafaf4 0%, #e8e4d5 100%);
--duration: 220ms;
--duration-slow: 420ms;
--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: 0.5rem;
--badge-radius: 9999px;
--border-width: 1px;Registry
/r/the-social-club.jsonTailwind v4
/*
* The Social Club — Identity Forge design kit.
* Kit id: 11071705-fecd-4e6a-bb8a-24d12516dd1b
* Kit slug: the-social-club (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=Space%20Grotesk:wght@400;500;700&family=DM%20Sans:wght@400;500;700&family=JetBrains%20Mono:wght@400;500;700&display=swap");
:root {
--radius: 0.875rem;
--font-heading: 'Space Grotesk', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 60 37% 97%;
--foreground: 51 33% 8%;
--card: 0 0% 100%;
--card-foreground: 51 33% 8%;
--popover: 0 0% 100%;
--popover-foreground: 51 33% 8%;
--primary: 61 62% 49%;
--primary-foreground: 55 100% 5%;
--secondary: 52 19% 38%;
--secondary-foreground: 0 0% 100%;
--muted: 47 29% 87%;
--muted-foreground: 50 18% 31%;
--accent: 52 19% 15%;
--accent-foreground: 60 37% 97%;
--destructive: 9 56% 39%;
--destructive-foreground: 0 0% 100%;
--border: 50 21% 78%;
--input: 50 21% 78%;
--ring: 61 62% 49%;
--success: 119 44% 31%;
--success-foreground: 0 0% 100%;
--warning: 35 92% 28%;
--warning-foreground: 0 0% 100%;
--chart-1: 61 62% 49%;
--chart-2: 9 56% 39%;
--chart-3: 185 20% 32%;
--chart-4: 119 44% 31%;
--chart-5: 24 46% 40%;
--shadow-sm: 0 1px 3px rgba(30,28,16,0.10);
--shadow-md: 0 4px 12px rgba(30,28,16,0.12);
--shadow-lg: 0 8px 24px rgba(30,28,16,0.14);
--shadow-xl: 0 16px 48px rgba(30,28,16,0.18);
--gradient-hero: linear-gradient(to bottom, rgba(46,44,31,0.28) 0%, rgba(46,44,31,0.88) 100%);
--gradient-brand: linear-gradient(135deg, #2e2c1f 0%, #736e4e 100%);
--gradient-subtle: linear-gradient(180deg, #fafaf4 0%, #e8e4d5 100%);
--duration: 220ms;
--duration-slow: 420ms;
--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: 0.5rem;
--badge-radius: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 0;
--badge-border-width: 0;
--heading-transform: none;
--label-transform: uppercase;
--kit-id: "11071705-fecd-4e6a-bb8a-24d12516dd1b";
--kit-version: 0;
}
.dark {
--radius: 0.875rem;
--font-heading: 'Space Grotesk', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 52 19% 15%;
--foreground: 45 42% 93%;
--card: 54 19% 20%;
--card-foreground: 45 42% 93%;
--popover: 54 19% 20%;
--popover-foreground: 45 42% 93%;
--primary: 61 65% 57%;
--primary-foreground: 55 100% 5%;
--secondary: 52 19% 38%;
--secondary-foreground: 45 42% 93%;
--muted: 54 19% 20%;
--muted-foreground: 52 16% 73%;
--accent: 61 65% 57%;
--accent-foreground: 55 100% 5%;
--destructive: 9 56% 39%;
--destructive-foreground: 0 0% 100%;
--border: 65 16% 27%;
--input: 65 16% 27%;
--ring: 61 65% 57%;
--success: 119 44% 31%;
--success-foreground: 0 0% 100%;
--warning: 35 81% 43%;
--warning-foreground: 55 100% 5%;
--chart-1: 61 65% 57%;
--chart-2: 9 56% 39%;
--chart-3: 185 20% 32%;
--chart-4: 119 44% 31%;
--chart-5: 24 46% 40%;
}
@theme inline {
--font-heading: 'Space Grotesk', sans-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.375rem;
--radius-md: 0.625rem;
--radius-lg: 0.875rem;
--radius-xl: 1.25rem;
--radius-button: 9999px;
--radius-card: 0.75rem;
--radius-input: 0.5rem;
--radius-badge: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 0;
--badge-border-width: 0;
--shadow-sm: 0 1px 3px rgba(30,28,16,0.10);
--shadow-md: 0 4px 12px rgba(30,28,16,0.12);
--shadow-lg: 0 8px 24px rgba(30,28,16,0.14);
--shadow-xl: 0 16px 48px rgba(30,28,16,0.18);
--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: 420ms;
--gradient-hero: linear-gradient(to bottom, rgba(46,44,31,0.28) 0%, rgba(46,44,31,0.88) 100%);
--gradient-brand: linear-gradient(135deg, #2e2c1f 0%, #736e4e 100%);
--gradient-subtle: linear-gradient(180deg, #fafaf4 0%, #e8e4d5 100%);
--font-weight-heading: 700;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "the-social-club",
"type": "registry:theme",
"title": "The Social Club",
"description": "Dark-olive and vivid yellow editorial identity with alternating surface bands, oversized display typography, and pill-shaped CTA buttons.",
"categories": [
"dark",
"olive",
"yellow",
"editorial",
"bold",
"geometric",
"community",
"alternating-surface"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany