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 vintage editorial and letterpress-inspired kit built on warm parchment cream (#eaddc8) as the defining surface, with massive condensed all-caps headlines in burnt rust (#9e4f24 light, #c46040 dark) and 1px hairline rules (#c4a882) as the primary layout separators. The look evokes sun-faded print: aged paper, heavy ink, and a deliberate grid, with typographic ornaments (asterisks, arrows, pipes, barcodes) standing in for decorative illustration. Cards, buttons, badges, and inputs are all 0rem radius.
rusttealpress.com
Rust Teal Press
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: "9a195715-1999-4358-b9db-6a6728ae849b"
version: 0
slug: "rust-teal-press"
name: "Rust Teal Press"
colors:
roles_light:
background: "#EADDC8"
foreground: "#2A1F15"
card: "#DFD0B8"
card-foreground: "#2A1F15"
popover: "#EADDC8"
popover-foreground: "#2A1F15"
primary: "#9E4F24"
primary-foreground: "#FDF6ED"
secondary: "#82B3AD"
secondary-foreground: "#1A3330"
muted: "#D4BC9C"
muted-foreground: "#000000"
accent: "#82B3AD"
accent-foreground: "#0F2E2B"
destructive: "#B83420"
destructive-foreground: "#FDF6ED"
border: "#C4A882"
input: "#C4A882"
ring: "#9E4F24"
success: "#3D6B4A"
success-foreground: "#F0FDF5"
warning: "#D4882A"
warning-foreground: "#1A0E00"
chart-1: "#9E4F24"
chart-2: "#82B3AD"
chart-3: "#D4882A"
chart-4: "#73733C"
chart-5: "#C4A882"
roles_dark:
background: "#1E1410"Three ways from the same kit: run "npx identityforge@latest apply rust-teal-press" 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/rust-teal-press.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.
Rust Teal Press is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Rust Teal Press — Identity Forge design kit.
* Kit id: 9a195715-1999-4358-b9db-6a6728ae849b
* Kit slug: rust-teal-press (a mutable alias; the id is the durable handle)
* Kit version: 0 (no version minted yet)
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow%20Condensed:wght@400;500;600;700&family=DM%20Sans:wght@400;500;700&family=IBM%20Plex%20Mono:wght@400;500;600&display=swap");
:root {
--radius: 0.25rem;
--font-heading: 'Barlow Condensed', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'IBM Plex Mono', monospace;
--background: 37 45% 85%;
--foreground: 29 33% 12%;
--card: 37 38% 80%;
--card-foreground: 29 33% 12%;
--popover: 37 45% 85%;
--popover-foreground: 29 33% 12%;
--primary: 21 63% 38%;
--primary-foreground: 34 80% 96%;
--secondary: 173 24% 61%;
--secondary-foreground: 173 32% 15%;
--muted: 34 39% 72%;
--muted-foreground: 0 0% 0%;
--accent: 173 24% 61%;
--accent-foreground: 174 51% 12%;
--destructive: 8 70% 42%;
--destructive-foreground: 34 80% 96%;
--border: 35 36% 64%;
--input: 35 36% 64%;
--ring: 21 63% 38%;
--success: 137 27% 33%;
--success-foreground: 143 76% 97%;
--warning: 33 67% 50%;
--warning-foreground: 32 100% 5%;
--chart-1: 21 63% 38%;
--chart-2: 173 24% 61%;
--chart-3: 33 67% 50%;
--chart-4: 60 31% 34%;
--chart-5: 35 36% 64%;
--shadow-sm: none;
--shadow-md: 0 1px 4px rgba(30,20,16,0.08);
--shadow-lg: 0 2px 10px rgba(30,20,16,0.12);
--shadow-xl: 0 4px 20px rgba(30,20,16,0.18);
--gradient-hero: linear-gradient(180deg,#eaddc8 0%,#d4bc9c 100%);
--gradient-brand: linear-gradient(135deg,#9e4f24 0%,#c46040 100%);
--gradient-subtle: linear-gradient(180deg,#eaddc8 0%,#dfd0b8 100%);
--duration: 180ms;
--duration-slow: 380ms;
--ease: cubic-bezier(0.25,0.46,0.45,0.94);
--tracking-tight: -0.01em;
--tracking-normal: 0em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 0rem;
--card-radius: 0rem;
--input-radius: 0rem;
--badge-radius: 0rem;
--border-width: 1px;Registry
/r/rust-teal-press.jsonTailwind v4
/*
* Rust Teal Press — Identity Forge design kit.
* Kit id: 9a195715-1999-4358-b9db-6a6728ae849b
* Kit slug: rust-teal-press (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=Barlow%20Condensed:wght@400;500;600;700&family=DM%20Sans:wght@400;500;700&family=IBM%20Plex%20Mono:wght@400;500;600&display=swap");
:root {
--radius: 0.25rem;
--font-heading: 'Barlow Condensed', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'IBM Plex Mono', monospace;
--background: 37 45% 85%;
--foreground: 29 33% 12%;
--card: 37 38% 80%;
--card-foreground: 29 33% 12%;
--popover: 37 45% 85%;
--popover-foreground: 29 33% 12%;
--primary: 21 63% 38%;
--primary-foreground: 34 80% 96%;
--secondary: 173 24% 61%;
--secondary-foreground: 173 32% 15%;
--muted: 34 39% 72%;
--muted-foreground: 0 0% 0%;
--accent: 173 24% 61%;
--accent-foreground: 174 51% 12%;
--destructive: 8 70% 42%;
--destructive-foreground: 34 80% 96%;
--border: 35 36% 64%;
--input: 35 36% 64%;
--ring: 21 63% 38%;
--success: 137 27% 33%;
--success-foreground: 143 76% 97%;
--warning: 33 67% 50%;
--warning-foreground: 32 100% 5%;
--chart-1: 21 63% 38%;
--chart-2: 173 24% 61%;
--chart-3: 33 67% 50%;
--chart-4: 60 31% 34%;
--chart-5: 35 36% 64%;
--shadow-sm: none;
--shadow-md: 0 1px 4px rgba(30,20,16,0.08);
--shadow-lg: 0 2px 10px rgba(30,20,16,0.12);
--shadow-xl: 0 4px 20px rgba(30,20,16,0.18);
--gradient-hero: linear-gradient(180deg,#eaddc8 0%,#d4bc9c 100%);
--gradient-brand: linear-gradient(135deg,#9e4f24 0%,#c46040 100%);
--gradient-subtle: linear-gradient(180deg,#eaddc8 0%,#dfd0b8 100%);
--duration: 180ms;
--duration-slow: 380ms;
--ease: cubic-bezier(0.25,0.46,0.45,0.94);
--tracking-tight: -0.01em;
--tracking-normal: 0em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 0rem;
--card-radius: 0rem;
--input-radius: 0rem;
--badge-radius: 0rem;
--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: "9a195715-1999-4358-b9db-6a6728ae849b";
--kit-version: 0;
}
.dark {
--radius: 0.25rem;
--font-heading: 'Barlow Condensed', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'IBM Plex Mono', monospace;
--background: 17 30% 9%;
--foreground: 34 49% 82%;
--card: 24 33% 12%;
--card-foreground: 34 49% 82%;
--popover: 24 33% 12%;
--popover-foreground: 34 49% 82%;
--primary: 15 53% 51%;
--primary-foreground: 0 0% 0%;
--secondary: 175 26% 39%;
--secondary-foreground: 0 0% 100%;
--muted: 22 27% 18%;
--muted-foreground: 36 25% 58%;
--accent: 173 24% 61%;
--accent-foreground: 174 51% 12%;
--destructive: 9 70% 45%;
--destructive-foreground: 34 80% 96%;
--border: 28 30% 22%;
--input: 28 30% 22%;
--ring: 15 53% 51%;
--success: 137 27% 33%;
--success-foreground: 143 76% 97%;
--warning: 33 67% 50%;
--warning-foreground: 32 100% 5%;
--chart-1: 15 53% 51%;
--chart-2: 173 24% 61%;
--chart-3: 36 64% 53%;
--chart-4: 70 29% 52%;
--chart-5: 34 39% 72%;
}
@theme inline {
--font-heading: 'Barlow Condensed', sans-serif;
--font-sans: 'DM Sans', sans-serif;
--font-mono: 'IBM Plex 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: 0rem;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 0;
--badge-border-width: 1px;
--shadow-sm: none;
--shadow-md: 0 1px 4px rgba(30,20,16,0.08);
--shadow-lg: 0 2px 10px rgba(30,20,16,0.12);
--shadow-xl: 0 4px 20px rgba(30,20,16,0.18);
--tracking-tight: -0.01em;
--tracking-normal: 0em;
--ease-kit: cubic-bezier(0.25,0.46,0.45,0.94);
--duration-kit: 180ms;
--duration-kit-slow: 380ms;
--gradient-hero: linear-gradient(180deg,#eaddc8 0%,#d4bc9c 100%);
--gradient-brand: linear-gradient(135deg,#9e4f24 0%,#c46040 100%);
--gradient-subtle: linear-gradient(180deg,#eaddc8 0%,#dfd0b8 100%);
--font-weight-heading: 900;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "rust-teal-press",
"type": "registry:theme",
"title": "Rust Teal Press",
"description": "An analog-press poster kit on warm parchment cream, with burnt-rust condensed display type, dusty teal accents, hairline rules, and typographic ornaments.",
"categories": [
"retro",
"editorial",
"vintage",
"poster",
"analog",
"warm",
"condensed",
"typography-forward"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany