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 saturated salmon-coral wash claims every surface while Anton weight-900 type pins the hierarchy at oversized display scale, and a strict 1px hairline grid organizes dense event listings in crisp white cells. The aesthetic is editorial-punk: flat, high-contrast, all-caps labels, stamp badges, black-and-white photography as graphic punctuation, and no decorative softening.
coralvenuegrid.com
Coral Venue 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: "3833edad-98d3-4e5a-a2b4-ed69ccfe1a8e"
version: 0
slug: "coral-venue-grid"
name: "Coral Venue Grid"
colors:
roles_light:
background: "#ED755A"
foreground: "#1C0F0A"
card: "#FFFFFF"
card-foreground: "#1C0F0A"
popover: "#FFFFFF"
popover-foreground: "#1C0F0A"
primary: "#1C0F0A"
primary-foreground: "#F5DDD5"
secondary: "#F5DDD5"
secondary-foreground: "#1C0F0A"
muted: "#E3705A"
muted-foreground: "#1C0F0A"
accent: "#F09880"
accent-foreground: "#1C0F0A"
destructive: "#C0392B"
destructive-foreground: "#FFFFFF"
border: "#2A1510"
input: "#2A1510"
ring: "#1C0F0A"
success: "#2D6A4F"
success-foreground: "#FFFFFF"
warning: "#E07B00"
warning-foreground: "#000000"
chart-1: "#ED755A"
chart-2: "#1C0F0A"
chart-3: "#C8604A"
chart-4: "#F09880"
chart-5: "#F5DDD5"
roles_dark:
background: "#1C0F0A"Three ways from the same kit: run "npx identityforge@latest apply coral-venue-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/coral-venue-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.
Coral Venue Grid is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Coral Venue Grid — Identity Forge design kit.
* Kit id: 3833edad-98d3-4e5a-a2b4-ed69ccfe1a8e
* Kit slug: coral-venue-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=Anton:wght@400&family=Barlow:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.125rem;
--font-heading: 'Anton', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 11 80% 64%;
--foreground: 17 47% 7%;
--card: 0 0% 100%;
--card-foreground: 17 47% 7%;
--popover: 0 0% 100%;
--popover-foreground: 17 47% 7%;
--primary: 17 47% 7%;
--primary-foreground: 15 62% 90%;
--secondary: 15 62% 90%;
--secondary-foreground: 17 47% 7%;
--muted: 10 71% 62%;
--muted-foreground: 17 47% 7%;
--accent: 13 79% 72%;
--accent-foreground: 17 47% 7%;
--destructive: 6 63% 46%;
--destructive-foreground: 0 0% 100%;
--border: 12 45% 11%;
--input: 12 45% 11%;
--ring: 17 47% 7%;
--success: 153 40% 30%;
--success-foreground: 0 0% 100%;
--warning: 33 100% 44%;
--warning-foreground: 0 0% 0%;
--chart-1: 11 80% 64%;
--chart-2: 17 47% 7%;
--chart-3: 10 53% 54%;
--chart-4: 13 79% 72%;
--chart-5: 15 62% 90%;
--shadow-sm: 0 1px 2px rgba(28,15,10,0.12);
--shadow-md: 0 2px 4px rgba(28,15,10,0.16);
--shadow-lg: 0 4px 8px rgba(28,15,10,0.2);
--shadow-xl: 0 8px 16px rgba(28,15,10,0.24);
--gradient-hero: linear-gradient(160deg, #f47459 0%, #ed755a 45%, #cb6752 100%);
--gradient-brand: linear-gradient(90deg, #f47459 0%, #c8604a 100%);
--gradient-subtle: linear-gradient(180deg, #f5ddd5 0%, #ffffff 100%);
--duration: 150ms;
--duration-slow: 280ms;
--ease: cubic-bezier(0.25, 0, 0.35, 1);
--tracking-tight: -0.01em;
--tracking-normal: 0.01em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 0rem;
--card-radius: 0rem;
--input-radius: 0rem;
--badge-radius: 9999px;
--border-width: 1px;Registry
/r/coral-venue-grid.jsonTailwind v4
/*
* Coral Venue Grid — Identity Forge design kit.
* Kit id: 3833edad-98d3-4e5a-a2b4-ed69ccfe1a8e
* Kit slug: coral-venue-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=Anton:wght@400&family=Barlow:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.125rem;
--font-heading: 'Anton', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 11 80% 64%;
--foreground: 17 47% 7%;
--card: 0 0% 100%;
--card-foreground: 17 47% 7%;
--popover: 0 0% 100%;
--popover-foreground: 17 47% 7%;
--primary: 17 47% 7%;
--primary-foreground: 15 62% 90%;
--secondary: 15 62% 90%;
--secondary-foreground: 17 47% 7%;
--muted: 10 71% 62%;
--muted-foreground: 17 47% 7%;
--accent: 13 79% 72%;
--accent-foreground: 17 47% 7%;
--destructive: 6 63% 46%;
--destructive-foreground: 0 0% 100%;
--border: 12 45% 11%;
--input: 12 45% 11%;
--ring: 17 47% 7%;
--success: 153 40% 30%;
--success-foreground: 0 0% 100%;
--warning: 33 100% 44%;
--warning-foreground: 0 0% 0%;
--chart-1: 11 80% 64%;
--chart-2: 17 47% 7%;
--chart-3: 10 53% 54%;
--chart-4: 13 79% 72%;
--chart-5: 15 62% 90%;
--shadow-sm: 0 1px 2px rgba(28,15,10,0.12);
--shadow-md: 0 2px 4px rgba(28,15,10,0.16);
--shadow-lg: 0 4px 8px rgba(28,15,10,0.2);
--shadow-xl: 0 8px 16px rgba(28,15,10,0.24);
--gradient-hero: linear-gradient(160deg, #f47459 0%, #ed755a 45%, #cb6752 100%);
--gradient-brand: linear-gradient(90deg, #f47459 0%, #c8604a 100%);
--gradient-subtle: linear-gradient(180deg, #f5ddd5 0%, #ffffff 100%);
--duration: 150ms;
--duration-slow: 280ms;
--ease: cubic-bezier(0.25, 0, 0.35, 1);
--tracking-tight: -0.01em;
--tracking-normal: 0.01em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 0rem;
--card-radius: 0rem;
--input-radius: 0rem;
--badge-radius: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 0;
--badge-border-width: 1px;
--heading-transform: uppercase;
--label-transform: uppercase;
--kit-id: "3833edad-98d3-4e5a-a2b4-ed69ccfe1a8e";
--kit-version: 0;
}
.dark {
--radius: 0.125rem;
--font-heading: 'Anton', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 17 47% 7%;
--foreground: 15 62% 90%;
--card: 12 45% 11%;
--card-foreground: 15 62% 90%;
--popover: 12 45% 11%;
--popover-foreground: 15 62% 90%;
--primary: 11 80% 64%;
--primary-foreground: 17 47% 7%;
--secondary: 13 44% 17%;
--secondary-foreground: 15 62% 90%;
--muted: 12 45% 11%;
--muted-foreground: 13 34% 58%;
--accent: 10 53% 54%;
--accent-foreground: 0 0% 0%;
--destructive: 5 78% 54%;
--destructive-foreground: 0 0% 0%;
--border: 13 44% 17%;
--input: 13 44% 17%;
--ring: 11 80% 64%;
--success: 152 51% 36%;
--success-foreground: 0 0% 0%;
--warning: 33 100% 44%;
--warning-foreground: 0 0% 0%;
--chart-1: 11 80% 64%;
--chart-2: 15 62% 90%;
--chart-3: 10 53% 54%;
--chart-4: 13 79% 72%;
--chart-5: 13 43% 38%;
}
@theme inline {
--font-heading: 'Anton', sans-serif;
--font-sans: 'Barlow', 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: 0rem;
--radius-lg: 0.125rem;
--radius-xl: 0.25rem;
--radius-button: 0rem;
--radius-card: 0rem;
--radius-input: 0rem;
--radius-badge: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 0;
--badge-border-width: 1px;
--shadow-sm: 0 1px 2px rgba(28,15,10,0.12);
--shadow-md: 0 2px 4px rgba(28,15,10,0.16);
--shadow-lg: 0 4px 8px rgba(28,15,10,0.2);
--shadow-xl: 0 8px 16px rgba(28,15,10,0.24);
--tracking-tight: -0.01em;
--tracking-normal: 0.01em;
--ease-kit: cubic-bezier(0.25, 0, 0.35, 1);
--duration-kit: 150ms;
--duration-kit-slow: 280ms;
--gradient-hero: linear-gradient(160deg, #f47459 0%, #ed755a 45%, #cb6752 100%);
--gradient-brand: linear-gradient(90deg, #f47459 0%, #c8604a 100%);
--gradient-subtle: linear-gradient(180deg, #f5ddd5 0%, #ffffff 100%);
--font-weight-heading: 900;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "coral-venue-grid",
"type": "registry:theme",
"title": "Coral Venue Grid",
"description": "A pervasive vivid coral-salmon poster system for underground music culture: ultra-condensed black display type, 1px hairline grids, zero shadow, and pure typographic hierarchy.",
"categories": [
"music-venue",
"event-calendar",
"editorial-poster",
"color-surface",
"coral",
"condensed-type",
"underground",
"flat"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany