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.
Every surface uses warm greige-putty as the full-bleed ground. Vivid orange (#DE5F2C) appears in only two roles: oversized display letterforms that bleed off the screen edges, and small sharp-cornered inline date-chip badges. Body content is set in a clean grotesque with 1px hairline rules structuring the grid. A single handwritten script annotation sits as one decorative gesture over the structural column. Zero elevation, zero shadows, zero gradients.
puttytourgrid.com
Putty Grid
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: "658c9f8d-54cd-4eb1-b64b-7b6161d8e0f3"
version: 0
slug: "putty-tour-grid"
name: "Putty Tour Grid"
colors:
roles_light:
background: "#C3C2B0"
foreground: "#0F0F0D"
card: "#CACBB7"
card-foreground: "#0F0F0D"
popover: "#D1D0BE"
popover-foreground: "#0F0F0D"
primary: "#DE5F2C"
primary-foreground: "#0F0F0D"
secondary: "#A8A895"
secondary-foreground: "#0F0F0D"
muted: "#B8B7A5"
muted-foreground: "#3C3B34"
accent: "#A7492D"
accent-foreground: "#FFFFFF"
destructive: "#C0392B"
destructive-foreground: "#FFFFFF"
border: "#A6A594"
input: "#B4B3A1"
ring: "#DE5F2C"
success: "#4A7C59"
success-foreground: "#FFFFFF"
warning: "#C4870C"
warning-foreground: "#0F0F0D"
chart-1: "#DE5F2C"
chart-2: "#A7492D"
chart-3: "#5A8C70"
chart-4: "#4278A8"
chart-5: "#8C7A5A"
roles_dark:
background: "#141310"Three ways from the same kit: run "npx identityforge@latest apply putty-tour-grid" 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/putty-tour-grid.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.
Putty Tour Grid is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Putty Tour Grid — Identity Forge design kit.
* Kit id: 658c9f8d-54cd-4eb1-b64b-7b6161d8e0f3
* Kit slug: putty-tour-grid (a mutable alias; the id is the durable handle)
* Kit version: 0 (no version minted yet)
*/
@import url("https://fonts.googleapis.com/css2?family=Bebas%20Neue:wght@400&family=DM%20Sans:wght@400;500;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.25rem;
--font-heading: 'Bebas Neue', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 57 14% 73%;
--foreground: 60 7% 5%;
--card: 63 16% 76%;
--card-foreground: 60 7% 5%;
--popover: 57 17% 78%;
--popover-foreground: 60 7% 5%;
--primary: 17 73% 52%;
--primary-foreground: 60 7% 5%;
--secondary: 60 10% 62%;
--secondary-foreground: 60 7% 5%;
--muted: 57 12% 68%;
--muted-foreground: 53 7% 22%;
--accent: 14 58% 42%;
--accent-foreground: 0 0% 100%;
--destructive: 6 63% 46%;
--destructive-foreground: 0 0% 100%;
--border: 57 9% 62%;
--input: 57 11% 67%;
--ring: 17 73% 52%;
--success: 138 25% 39%;
--success-foreground: 0 0% 100%;
--warning: 40 88% 41%;
--warning-foreground: 60 7% 5%;
--chart-1: 17 73% 52%;
--chart-2: 14 58% 42%;
--chart-3: 146 22% 45%;
--chart-4: 208 44% 46%;
--chart-5: 38 22% 45%;
--shadow-sm: 0 1px 0 rgba(15,15,13,0.10);
--shadow-md: 0 2px 4px rgba(15,15,13,0.07);
--shadow-lg: 0 4px 8px rgba(15,15,13,0.06);
--shadow-xl: 0 8px 16px rgba(15,15,13,0.06);
--gradient-hero: linear-gradient(180deg, #C3C2B0 0%, #B8B7A4 100%);
--gradient-brand: linear-gradient(135deg, #DE5F2C 0%, #A7492D 100%);
--gradient-subtle: linear-gradient(180deg, #CECDB9 0%, #C3C2B0 100%);
--duration: 150ms;
--duration-slow: 300ms;
--ease: cubic-bezier(0.4, 0, 0.2, 1);
--tracking-tight: -0.01em;
--tracking-normal: 0.05em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 0rem;
--card-radius: 0rem;
--input-radius: 0rem;
--badge-radius: 0.125rem;
--border-width: 1px;Registry
/r/putty-tour-grid.jsonTailwind v4
/*
* Putty Tour Grid — Identity Forge design kit.
* Kit id: 658c9f8d-54cd-4eb1-b64b-7b6161d8e0f3
* Kit slug: putty-tour-grid (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=Bebas%20Neue:wght@400&family=DM%20Sans:wght@400;500;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.25rem;
--font-heading: 'Bebas Neue', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 57 14% 73%;
--foreground: 60 7% 5%;
--card: 63 16% 76%;
--card-foreground: 60 7% 5%;
--popover: 57 17% 78%;
--popover-foreground: 60 7% 5%;
--primary: 17 73% 52%;
--primary-foreground: 60 7% 5%;
--secondary: 60 10% 62%;
--secondary-foreground: 60 7% 5%;
--muted: 57 12% 68%;
--muted-foreground: 53 7% 22%;
--accent: 14 58% 42%;
--accent-foreground: 0 0% 100%;
--destructive: 6 63% 46%;
--destructive-foreground: 0 0% 100%;
--border: 57 9% 62%;
--input: 57 11% 67%;
--ring: 17 73% 52%;
--success: 138 25% 39%;
--success-foreground: 0 0% 100%;
--warning: 40 88% 41%;
--warning-foreground: 60 7% 5%;
--chart-1: 17 73% 52%;
--chart-2: 14 58% 42%;
--chart-3: 146 22% 45%;
--chart-4: 208 44% 46%;
--chart-5: 38 22% 45%;
--shadow-sm: 0 1px 0 rgba(15,15,13,0.10);
--shadow-md: 0 2px 4px rgba(15,15,13,0.07);
--shadow-lg: 0 4px 8px rgba(15,15,13,0.06);
--shadow-xl: 0 8px 16px rgba(15,15,13,0.06);
--gradient-hero: linear-gradient(180deg, #C3C2B0 0%, #B8B7A4 100%);
--gradient-brand: linear-gradient(135deg, #DE5F2C 0%, #A7492D 100%);
--gradient-subtle: linear-gradient(180deg, #CECDB9 0%, #C3C2B0 100%);
--duration: 150ms;
--duration-slow: 300ms;
--ease: cubic-bezier(0.4, 0, 0.2, 1);
--tracking-tight: -0.01em;
--tracking-normal: 0.05em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 0rem;
--card-radius: 0rem;
--input-radius: 0rem;
--badge-radius: 0.125rem;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 1px;
--badge-border-width: 1px;
--heading-transform: uppercase;
--label-transform: uppercase;
--kit-id: "658c9f8d-54cd-4eb1-b64b-7b6161d8e0f3";
--kit-version: 0;
}
.dark {
--radius: 0.25rem;
--font-heading: 'Bebas Neue', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 45 11% 7%;
--foreground: 51 31% 87%;
--card: 36 9% 10%;
--card-foreground: 51 31% 87%;
--popover: 45 20% 12%;
--popover-foreground: 51 31% 87%;
--primary: 17 79% 56%;
--primary-foreground: 60 7% 5%;
--secondary: 48 13% 15%;
--secondary-foreground: 54 14% 73%;
--muted: 45 14% 11%;
--muted-foreground: 0 0% 100%;
--accent: 20 75% 44%;
--accent-foreground: 0 0% 0%;
--destructive: 0 71% 58%;
--destructive-foreground: 0 0% 0%;
--border: 48 12% 16%;
--input: 48 14% 14%;
--ring: 17 79% 56%;
--success: 138 27% 49%;
--success-foreground: 60 7% 5%;
--warning: 41 81% 53%;
--warning-foreground: 60 7% 5%;
--chart-1: 17 79% 56%;
--chart-2: 27 59% 59%;
--chart-3: 139 24% 55%;
--chart-4: 210 50% 56%;
--chart-5: 36 29% 52%;
}
@theme inline {
--font-heading: 'Bebas Neue', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'Space 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: 0rem;
--radius-md: 0.125rem;
--radius-lg: 0.25rem;
--radius-xl: 0.375rem;
--radius-button: 0rem;
--radius-card: 0rem;
--radius-input: 0rem;
--radius-badge: 0.125rem;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 1px;
--badge-border-width: 1px;
--shadow-sm: 0 1px 0 rgba(15,15,13,0.10);
--shadow-md: 0 2px 4px rgba(15,15,13,0.07);
--shadow-lg: 0 4px 8px rgba(15,15,13,0.06);
--shadow-xl: 0 8px 16px rgba(15,15,13,0.06);
--tracking-tight: -0.01em;
--tracking-normal: 0.05em;
--ease-kit: cubic-bezier(0.4, 0, 0.2, 1);
--duration-kit: 150ms;
--duration-kit-slow: 300ms;
--gradient-hero: linear-gradient(180deg, #C3C2B0 0%, #B8B7A4 100%);
--gradient-brand: linear-gradient(135deg, #DE5F2C 0%, #A7492D 100%);
--gradient-subtle: linear-gradient(180deg, #CECDB9 0%, #C3C2B0 100%);
--font-weight-heading: 900;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "putty-tour-grid",
"type": "registry:theme",
"title": "Putty Tour Grid",
"description": "A gig-poster editorial kit on a pervasive warm putty canvas with vivid orange display type and a hairline-rule grid, distilled from silkscreen event-handbill language.",
"categories": [
"event",
"editorial",
"poster",
"music",
"concert",
"orange",
"warm-neutral",
"flat"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany