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 color-surface identity built on three alternating surfaces: vivid red (#cb251b) for hero and navigation panels, deep maroon (#3d0705) for outer frames, and warm cream (#f1eaa4) for editorial content. Typography is uniformly uppercase in a heavy wide grotesque (Archivo Black) at display scale, with a clean humanist grotesque (Barlow) for body copy and Space Mono for technical strings. The system is deliberately flat with no shadows and no white page backgrounds, using hard-edge color transitions between sections in a print-editorial tradition. A golden yellow (#e6cc2c) appears as a scarce high-energy accent.
vermilionarchitecturepanels.com
Vermilion Panels
Supporting copy goes here.
vermilionarchitecturepanels.com
Vermilion Panels
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: "f04383ec-9d45-40cd-aa4c-c566ed036d9b"
version: 0
slug: "vermilion-architecture-panels"
name: "Vermilion Architecture Panels"
colors:
roles_light:
background: "#F1EAA4"
foreground: "#330101"
card: "#FDFDFD"
card-foreground: "#330101"
popover: "#FDFDFD"
popover-foreground: "#330101"
primary: "#CB251B"
primary-foreground: "#FDFDFD"
secondary: "#EDE5B0"
secondary-foreground: "#330101"
muted: "#E8E2A8"
muted-foreground: "#6B3028"
accent: "#E6CC2C"
accent-foreground: "#330101"
destructive: "#940405"
destructive-foreground: "#FDFDFD"
border: "#C4B890"
input: "#D8D1A0"
ring: "#CB251B"
success: "#2D6B1A"
success-foreground: "#FDFDFD"
warning: "#CE8837"
warning-foreground: "#330101"
chart-1: "#CB251B"
chart-2: "#E6CC2C"
chart-3: "#CE8837"
chart-4: "#3D0705"
chart-5: "#4A8A2A"
roles_dark:
background: "#3D0705"Three ways from the same kit: run "npx identityforge@latest apply vermilion-architecture-panels" 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/vermilion-architecture-panels.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.
Vermilion Architecture Panels is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Vermilion Architecture Panels — Identity Forge design kit.
* Kit id: f04383ec-9d45-40cd-aa4c-c566ed036d9b
* Kit slug: vermilion-architecture-panels (a mutable alias; the id is the durable handle)
* Kit version: 0 (no version minted yet)
*/
@import url("https://fonts.googleapis.com/css2?family=Archivo%20Black:wght@400&family=Barlow:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 12px;
--font-heading: 'Archivo Black', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 55 73% 79%;
--foreground: 0 96% 10%;
--card: 0 0% 99%;
--card-foreground: 0 96% 10%;
--popover: 0 0% 99%;
--popover-foreground: 0 96% 10%;
--primary: 3 77% 45%;
--primary-foreground: 0 0% 99%;
--secondary: 52 63% 81%;
--secondary-foreground: 0 96% 10%;
--muted: 54 58% 78%;
--muted-foreground: 7 46% 29%;
--accent: 52 79% 54%;
--accent-foreground: 0 96% 10%;
--destructive: 360 95% 30%;
--destructive-foreground: 0 0% 99%;
--border: 46 31% 67%;
--input: 52 42% 74%;
--ring: 3 77% 45%;
--success: 106 61% 26%;
--success-foreground: 0 0% 99%;
--warning: 32 61% 51%;
--warning-foreground: 0 96% 10%;
--chart-1: 3 77% 45%;
--chart-2: 52 79% 54%;
--chart-3: 32 61% 51%;
--chart-4: 2 85% 13%;
--chart-5: 100 53% 35%;
--shadow-sm: 0 1px 2px rgba(51,1,1,0.15);
--shadow-md: 0 2px 8px rgba(51,1,1,0.20);
--shadow-lg: 0 4px 16px rgba(51,1,1,0.25);
--shadow-xl: 0 8px 32px rgba(51,1,1,0.30);
--gradient-hero: linear-gradient(135deg, #cb251b 0%, #940405 100%);
--gradient-brand: linear-gradient(180deg, #f1eaa4 0%, #e6cc2c 100%);
--gradient-subtle: linear-gradient(180deg, #fdfdfd 0%, #f1eaa4 100%);
--duration: 180ms;
--duration-slow: 400ms;
--ease: cubic-bezier(0.2, 0, 0, 1);
--tracking-tight: -0.02em;
--tracking-normal: 0.08em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 6px;
--card-radius: 12px;
--input-radius: 4px;
--badge-radius: 9999px;
--border-width: 1px;Registry
/r/vermilion-architecture-panels.jsonTailwind v4
/*
* Vermilion Architecture Panels — Identity Forge design kit.
* Kit id: f04383ec-9d45-40cd-aa4c-c566ed036d9b
* Kit slug: vermilion-architecture-panels (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=Archivo%20Black:wght@400&family=Barlow:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 12px;
--font-heading: 'Archivo Black', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 55 73% 79%;
--foreground: 0 96% 10%;
--card: 0 0% 99%;
--card-foreground: 0 96% 10%;
--popover: 0 0% 99%;
--popover-foreground: 0 96% 10%;
--primary: 3 77% 45%;
--primary-foreground: 0 0% 99%;
--secondary: 52 63% 81%;
--secondary-foreground: 0 96% 10%;
--muted: 54 58% 78%;
--muted-foreground: 7 46% 29%;
--accent: 52 79% 54%;
--accent-foreground: 0 96% 10%;
--destructive: 360 95% 30%;
--destructive-foreground: 0 0% 99%;
--border: 46 31% 67%;
--input: 52 42% 74%;
--ring: 3 77% 45%;
--success: 106 61% 26%;
--success-foreground: 0 0% 99%;
--warning: 32 61% 51%;
--warning-foreground: 0 96% 10%;
--chart-1: 3 77% 45%;
--chart-2: 52 79% 54%;
--chart-3: 32 61% 51%;
--chart-4: 2 85% 13%;
--chart-5: 100 53% 35%;
--shadow-sm: 0 1px 2px rgba(51,1,1,0.15);
--shadow-md: 0 2px 8px rgba(51,1,1,0.20);
--shadow-lg: 0 4px 16px rgba(51,1,1,0.25);
--shadow-xl: 0 8px 32px rgba(51,1,1,0.30);
--gradient-hero: linear-gradient(135deg, #cb251b 0%, #940405 100%);
--gradient-brand: linear-gradient(180deg, #f1eaa4 0%, #e6cc2c 100%);
--gradient-subtle: linear-gradient(180deg, #fdfdfd 0%, #f1eaa4 100%);
--duration: 180ms;
--duration-slow: 400ms;
--ease: cubic-bezier(0.2, 0, 0, 1);
--tracking-tight: -0.02em;
--tracking-normal: 0.08em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 6px;
--card-radius: 12px;
--input-radius: 4px;
--badge-radius: 9999px;
--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: "f04383ec-9d45-40cd-aa4c-c566ed036d9b";
--kit-version: 0;
}
.dark {
--radius: 12px;
--font-heading: 'Archivo Black', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 2 85% 13%;
--foreground: 55 73% 79%;
--card: 3 80% 20%;
--card-foreground: 55 73% 79%;
--popover: 3 80% 20%;
--popover-foreground: 55 73% 79%;
--primary: 3 77% 45%;
--primary-foreground: 0 0% 99%;
--secondary: 2 77% 27%;
--secondary-foreground: 55 73% 79%;
--muted: 3 78% 16%;
--muted-foreground: 35 37% 64%;
--accent: 52 79% 54%;
--accent-foreground: 0 96% 10%;
--destructive: 3 75% 52%;
--destructive-foreground: 0 0% 0%;
--border: 6 67% 29%;
--input: 4 62% 22%;
--ring: 3 77% 45%;
--success: 94 58% 32%;
--success-foreground: 0 0% 99%;
--warning: 32 61% 51%;
--warning-foreground: 0 96% 10%;
--chart-1: 2 75% 52%;
--chart-2: 52 79% 54%;
--chart-3: 32 63% 54%;
--chart-4: 55 73% 79%;
--chart-5: 98 47% 47%;
}
@theme inline {
--font-heading: 'Archivo Black', 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: 4px;
--radius-md: 8px;
--radius-lg: 12px;
--radius-xl: 20px;
--radius-button: 6px;
--radius-card: 12px;
--radius-input: 4px;
--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 2px rgba(51,1,1,0.15);
--shadow-md: 0 2px 8px rgba(51,1,1,0.20);
--shadow-lg: 0 4px 16px rgba(51,1,1,0.25);
--shadow-xl: 0 8px 32px rgba(51,1,1,0.30);
--tracking-tight: -0.02em;
--tracking-normal: 0.08em;
--ease-kit: cubic-bezier(0.2, 0, 0, 1);
--duration-kit: 180ms;
--duration-kit-slow: 400ms;
--gradient-hero: linear-gradient(135deg, #cb251b 0%, #940405 100%);
--gradient-brand: linear-gradient(180deg, #f1eaa4 0%, #e6cc2c 100%);
--gradient-subtle: linear-gradient(180deg, #fdfdfd 0%, #f1eaa4 100%);
--font-weight-heading: 900;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "vermilion-architecture-panels",
"type": "registry:theme",
"title": "Vermilion Architecture Panels",
"description": "A retro graphic identity with alternating vivid red, deep maroon, and warm cream full-bleed panels, oversized uppercase display type, and a flat print-editorial aesthetic.",
"categories": [
"retro",
"70s",
"brand-identity",
"editorial",
"bold",
"flat",
"color-surface",
"print"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany