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 refined editorial system anchored on warm parchment surfaces (#efe8d6) and dramatic thick-thin serif type. Cream fields carry near-black ink and oversized italic display headings in Fraunces, with painterly full-bleed landscape imagery. Dusty sage teal (#708e83) is the only chromatic accent, used sparingly. Numbered index labels, hanging quotation marks, and '+' spatial markers form the visual grammar. Dark mode inverts to near-black with warm cream text, preserving the ink-on-parchment relationship.
parchmentitaliceditorial.com
Parchment Italic
Supporting copy goes here.
parchmentitaliceditorial.com
Parchment Italic
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: "6bba3eee-1926-4956-86d8-eb753400bf78"
version: 0
slug: "parchment-italic-editorial"
name: "Parchment Italic Editorial"
colors:
roles_light:
background: "#EFE8D6"
foreground: "#141210"
card: "#E6DFC8"
card-foreground: "#141210"
popover: "#F2EBDA"
popover-foreground: "#141210"
primary: "#141210"
primary-foreground: "#EFE8D6"
secondary: "#D6CCA3"
secondary-foreground: "#3A3628"
muted: "#E0D9C4"
muted-foreground: "#5E5948"
accent: "#708E83"
accent-foreground: "#141210"
destructive: "#B83333"
destructive-foreground: "#FFFFFF"
border: "#C8C0A4"
input: "#E8E1CB"
ring: "#141210"
success: "#3E6655"
success-foreground: "#FFFFFF"
warning: "#BC8464"
warning-foreground: "#141210"
chart-1: "#BC8464"
chart-2: "#708E83"
chart-3: "#4C4A1C"
chart-4: "#8BA08B"
chart-5: "#5C442C"
roles_dark:
background: "#101010"Three ways from the same kit: run "npx identityforge@latest apply parchment-italic-editorial" 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/parchment-italic-editorial.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.
Parchment Italic Editorial is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Parchment Italic Editorial — Identity Forge design kit.
* Kit id: 6bba3eee-1926-4956-86d8-eb753400bf78
* Kit slug: parchment-italic-editorial (a mutable alias; the id is the durable handle)
* Kit version: 0 (no version minted yet)
*/
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&family=Plus%20Jakarta%20Sans:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.75rem;
--font-heading: 'Fraunces', serif;
--font-sans: 'Plus Jakarta Sans', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 43 44% 89%;
--foreground: 30 11% 7%;
--card: 46 37% 84%;
--card-foreground: 30 11% 7%;
--popover: 42 48% 90%;
--popover-foreground: 30 11% 7%;
--primary: 30 11% 7%;
--primary-foreground: 43 44% 89%;
--secondary: 48 38% 74%;
--secondary-foreground: 47 18% 19%;
--muted: 45 31% 82%;
--muted-foreground: 46 13% 33%;
--accent: 158 12% 50%;
--accent-foreground: 30 11% 7%;
--destructive: 0 57% 46%;
--destructive-foreground: 0 0% 100%;
--border: 47 25% 71%;
--input: 46 39% 85%;
--ring: 30 11% 7%;
--success: 155 24% 32%;
--success-foreground: 0 0% 100%;
--warning: 22 40% 56%;
--warning-foreground: 30 11% 7%;
--chart-1: 22 40% 56%;
--chart-2: 158 12% 50%;
--chart-3: 58 46% 20%;
--chart-4: 120 10% 59%;
--chart-5: 30 35% 27%;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
--shadow-xl: 0 16px 48px rgba(0,0,0,0.14);
--gradient-hero: linear-gradient(180deg, #efe8d6 0%, #d6cca3 100%);
--gradient-brand: linear-gradient(135deg, #efe8d6 0%, #c8c0a4 100%);
--gradient-subtle: linear-gradient(180deg, #f4eee0 0%, #e6dfc8 100%);
--duration: 250ms;
--duration-slow: 500ms;
--ease: cubic-bezier(0.25, 0.1, 0.25, 1);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--font-weight-heading: 700;
--font-weight-body: 400;
--button-radius: 0.25rem;
--card-radius: 0.75rem;
--input-radius: 0.25rem;
--badge-radius: 9999px;
--border-width: 1px;Registry
/r/parchment-italic-editorial.jsonTailwind v4
/*
* Parchment Italic Editorial — Identity Forge design kit.
* Kit id: 6bba3eee-1926-4956-86d8-eb753400bf78
* Kit slug: parchment-italic-editorial (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=Fraunces:wght@400;500;600;700&family=Plus%20Jakarta%20Sans:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.75rem;
--font-heading: 'Fraunces', serif;
--font-sans: 'Plus Jakarta Sans', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 43 44% 89%;
--foreground: 30 11% 7%;
--card: 46 37% 84%;
--card-foreground: 30 11% 7%;
--popover: 42 48% 90%;
--popover-foreground: 30 11% 7%;
--primary: 30 11% 7%;
--primary-foreground: 43 44% 89%;
--secondary: 48 38% 74%;
--secondary-foreground: 47 18% 19%;
--muted: 45 31% 82%;
--muted-foreground: 46 13% 33%;
--accent: 158 12% 50%;
--accent-foreground: 30 11% 7%;
--destructive: 0 57% 46%;
--destructive-foreground: 0 0% 100%;
--border: 47 25% 71%;
--input: 46 39% 85%;
--ring: 30 11% 7%;
--success: 155 24% 32%;
--success-foreground: 0 0% 100%;
--warning: 22 40% 56%;
--warning-foreground: 30 11% 7%;
--chart-1: 22 40% 56%;
--chart-2: 158 12% 50%;
--chart-3: 58 46% 20%;
--chart-4: 120 10% 59%;
--chart-5: 30 35% 27%;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
--shadow-xl: 0 16px 48px rgba(0,0,0,0.14);
--gradient-hero: linear-gradient(180deg, #efe8d6 0%, #d6cca3 100%);
--gradient-brand: linear-gradient(135deg, #efe8d6 0%, #c8c0a4 100%);
--gradient-subtle: linear-gradient(180deg, #f4eee0 0%, #e6dfc8 100%);
--duration: 250ms;
--duration-slow: 500ms;
--ease: cubic-bezier(0.25, 0.1, 0.25, 1);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--font-weight-heading: 700;
--font-weight-body: 400;
--button-radius: 0.25rem;
--card-radius: 0.75rem;
--input-radius: 0.25rem;
--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: "6bba3eee-1926-4956-86d8-eb753400bf78";
--kit-version: 0;
}
.dark {
--radius: 0.75rem;
--font-heading: 'Fraunces', serif;
--font-sans: 'Plus Jakarta Sans', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 0 0% 6%;
--foreground: 43 44% 89%;
--card: 60 13% 9%;
--card-foreground: 43 44% 89%;
--popover: 51 13% 10%;
--popover-foreground: 43 35% 86%;
--primary: 48 38% 74%;
--primary-foreground: 30 11% 7%;
--secondary: 54 14% 15%;
--secondary-foreground: 48 25% 70%;
--muted: 51 13% 10%;
--muted-foreground: 46 10% 49%;
--accent: 158 12% 50%;
--accent-foreground: 30 11% 7%;
--destructive: 0 63% 54%;
--destructive-foreground: 0 0% 100%;
--border: 54 12% 16%;
--input: 51 13% 10%;
--ring: 48 38% 74%;
--success: 148 27% 49%;
--success-foreground: 158 44% 7%;
--warning: 34 50% 57%;
--warning-foreground: 30 11% 7%;
--chart-1: 48 38% 74%;
--chart-2: 120 10% 59%;
--chart-3: 22 40% 56%;
--chart-4: 158 12% 50%;
--chart-5: 53 26% 52%;
}
@theme inline {
--font-heading: 'Fraunces', serif;
--font-sans: 'Plus Jakarta 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: 0.125rem;
--radius-md: 0.375rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-button: 0.25rem;
--radius-card: 0.75rem;
--radius-input: 0.25rem;
--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(0,0,0,0.06);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
--shadow-xl: 0 16px 48px rgba(0,0,0,0.14);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--ease-kit: cubic-bezier(0.25, 0.1, 0.25, 1);
--duration-kit: 250ms;
--duration-kit-slow: 500ms;
--gradient-hero: linear-gradient(180deg, #efe8d6 0%, #d6cca3 100%);
--gradient-brand: linear-gradient(135deg, #efe8d6 0%, #c8c0a4 100%);
--gradient-subtle: linear-gradient(180deg, #f4eee0 0%, #e6dfc8 100%);
--font-weight-heading: 700;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "parchment-italic-editorial",
"type": "registry:theme",
"title": "Parchment Italic Editorial",
"description": "A warm parchment editorial system with an oversized high-contrast italic serif, near-black ink, and a single dusty sage-teal accent.",
"categories": [
"editorial",
"serif",
"parchment",
"literary",
"warm",
"minimal",
"high-contrast",
"ink"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany