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 shippable token system pairing an elegant high-contrast Playfair Display serif for display type with a clean Inter body face. It is grounded in a golden-amber primary, burnt terracotta accents, and warm neutral surfaces. The dark theme reads as a deep espresso-brown gallery wall while keeping the same brand warmth. Layouts favor spacious, asymmetric composition, flat color blocking, and strong typographic hierarchy.
ambercoastaleditorial.com
Amber Coastal
Supporting copy goes here.
ambercoastaleditorial.com
Amber Coastal
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: "1a627a87-ac32-40a7-b02a-9b6cf648a838"
version: 0
slug: "amber-coastal-editorial"
name: "Amber Coastal Editorial"
colors:
roles_light:
background: "#FDF6EC"
foreground: "#241A12"
card: "#FFFBF4"
card-foreground: "#241A12"
popover: "#FFFBF4"
popover-foreground: "#241A12"
primary: "#C97A1D"
primary-foreground: "#000000"
secondary: "#EFE1D2"
secondary-foreground: "#4A3826"
muted: "#F1E6D8"
muted-foreground: "#6F5E4C"
accent: "#9B361B"
accent-foreground: "#FDF1EA"
destructive: "#BA1A1A"
destructive-foreground: "#FFFFFF"
border: "#E4D3BF"
input: "#E4D3BF"
ring: "#C97A1D"
success: "#4F6A32"
success-foreground: "#F6FAE9"
warning: "#DB8C34"
warning-foreground: "#2C1600"
chart-1: "#C97A1D"
chart-2: "#9B361B"
chart-3: "#DB8C34"
chart-4: "#57633A"
chart-5: "#273D52"
roles_dark:
background: "#1C1611"Three ways from the same kit: run "npx identityforge@latest apply amber-coastal-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/amber-coastal-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.
Amber Coastal Editorial is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Amber Coastal Editorial — Identity Forge design kit.
* Kit id: 1a627a87-ac32-40a7-b02a-9b6cf648a838
* Kit slug: amber-coastal-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=Playfair%20Display:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains%20Mono:wght@400;500;700&display=swap");
:root {
--radius: 0.5rem;
--font-heading: 'Playfair Display', serif;
--font-sans: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 35 81% 96%;
--foreground: 27 33% 11%;
--card: 38 100% 98%;
--card-foreground: 27 33% 11%;
--popover: 38 100% 98%;
--popover-foreground: 27 33% 11%;
--primary: 32 75% 45%;
--primary-foreground: 0 0% 0%;
--secondary: 31 48% 88%;
--secondary-foreground: 30 32% 22%;
--muted: 34 47% 90%;
--muted-foreground: 31 19% 37%;
--accent: 13 70% 36%;
--accent-foreground: 22 83% 95%;
--destructive: 0 75% 42%;
--destructive-foreground: 0 0% 100%;
--border: 32 41% 82%;
--input: 32 41% 82%;
--ring: 32 75% 45%;
--success: 89 36% 31%;
--success-foreground: 74 63% 95%;
--warning: 32 70% 53%;
--warning-foreground: 30 100% 9%;
--chart-1: 32 75% 45%;
--chart-2: 13 70% 36%;
--chart-3: 32 70% 53%;
--chart-4: 78 26% 31%;
--chart-5: 209 36% 24%;
--shadow-sm: 0 1px 2px rgba(60,40,20,0.06);
--shadow-md: 0 4px 12px rgba(60,40,20,0.08);
--shadow-lg: 0 12px 28px rgba(60,40,20,0.10);
--shadow-xl: 0 24px 48px rgba(60,40,20,0.14);
--gradient-hero: linear-gradient(135deg,#e6a24f 0%,#c97a1d 55%,#9b361b 100%);
--gradient-brand: linear-gradient(120deg,#db8c34 0%,#9b361b 100%);
--gradient-subtle: linear-gradient(180deg,#fdf6ec 0%,#f1e6d8 100%);
--duration: 200ms;
--duration-slow: 450ms;
--ease: cubic-bezier(0.22,1,0.36,1);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--font-weight-heading: 600;
--font-weight-body: 400;
--button-radius: 0.25rem;
--card-radius: 0.875rem;
--input-radius: 0.25rem;
--badge-radius: 0.25rem;
--border-width: 1px;Registry
/r/amber-coastal-editorial.jsonTailwind v4
/*
* Amber Coastal Editorial — Identity Forge design kit.
* Kit id: 1a627a87-ac32-40a7-b02a-9b6cf648a838
* Kit slug: amber-coastal-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=Playfair%20Display:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains%20Mono:wght@400;500;700&display=swap");
:root {
--radius: 0.5rem;
--font-heading: 'Playfair Display', serif;
--font-sans: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 35 81% 96%;
--foreground: 27 33% 11%;
--card: 38 100% 98%;
--card-foreground: 27 33% 11%;
--popover: 38 100% 98%;
--popover-foreground: 27 33% 11%;
--primary: 32 75% 45%;
--primary-foreground: 0 0% 0%;
--secondary: 31 48% 88%;
--secondary-foreground: 30 32% 22%;
--muted: 34 47% 90%;
--muted-foreground: 31 19% 37%;
--accent: 13 70% 36%;
--accent-foreground: 22 83% 95%;
--destructive: 0 75% 42%;
--destructive-foreground: 0 0% 100%;
--border: 32 41% 82%;
--input: 32 41% 82%;
--ring: 32 75% 45%;
--success: 89 36% 31%;
--success-foreground: 74 63% 95%;
--warning: 32 70% 53%;
--warning-foreground: 30 100% 9%;
--chart-1: 32 75% 45%;
--chart-2: 13 70% 36%;
--chart-3: 32 70% 53%;
--chart-4: 78 26% 31%;
--chart-5: 209 36% 24%;
--shadow-sm: 0 1px 2px rgba(60,40,20,0.06);
--shadow-md: 0 4px 12px rgba(60,40,20,0.08);
--shadow-lg: 0 12px 28px rgba(60,40,20,0.10);
--shadow-xl: 0 24px 48px rgba(60,40,20,0.14);
--gradient-hero: linear-gradient(135deg,#e6a24f 0%,#c97a1d 55%,#9b361b 100%);
--gradient-brand: linear-gradient(120deg,#db8c34 0%,#9b361b 100%);
--gradient-subtle: linear-gradient(180deg,#fdf6ec 0%,#f1e6d8 100%);
--duration: 200ms;
--duration-slow: 450ms;
--ease: cubic-bezier(0.22,1,0.36,1);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--font-weight-heading: 600;
--font-weight-body: 400;
--button-radius: 0.25rem;
--card-radius: 0.875rem;
--input-radius: 0.25rem;
--badge-radius: 0.25rem;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 1px;
--badge-border-width: 1px;
--heading-transform: none;
--label-transform: none;
--kit-id: "1a627a87-ac32-40a7-b02a-9b6cf648a838";
--kit-version: 0;
}
.dark {
--radius: 0.5rem;
--font-heading: 'Playfair Display', serif;
--font-sans: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--background: 27 24% 9%;
--foreground: 31 40% 88%;
--card: 28 25% 12%;
--card-foreground: 31 40% 88%;
--popover: 28 25% 12%;
--popover-foreground: 31 40% 88%;
--primary: 33 75% 61%;
--primary-foreground: 30 100% 9%;
--secondary: 29 28% 17%;
--secondary-foreground: 29 51% 76%;
--muted: 33 31% 14%;
--muted-foreground: 30 22% 63%;
--accent: 14 63% 54%;
--accent-foreground: 13 75% 9%;
--destructive: 5 100% 75%;
--destructive-foreground: 359 100% 11%;
--border: 30 26% 18%;
--input: 30 26% 18%;
--ring: 33 75% 61%;
--success: 80 37% 61%;
--success-foreground: 78 60% 9%;
--warning: 33 75% 61%;
--warning-foreground: 30 100% 9%;
--chart-1: 33 75% 61%;
--chart-2: 14 63% 54%;
--chart-3: 32 86% 80%;
--chart-4: 76 32% 70%;
--chart-5: 211 24% 58%;
}
@theme inline {
--font-heading: 'Playfair Display', serif;
--font-sans: 'Inter', sans-serif;
--font-mono: 'JetBrains 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.25rem;
--radius-lg: 0.5rem;
--radius-xl: 0.875rem;
--radius-button: 0.25rem;
--radius-card: 0.875rem;
--radius-input: 0.25rem;
--radius-badge: 0.25rem;
--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(60,40,20,0.06);
--shadow-md: 0 4px 12px rgba(60,40,20,0.08);
--shadow-lg: 0 12px 28px rgba(60,40,20,0.10);
--shadow-xl: 0 24px 48px rgba(60,40,20,0.14);
--tracking-tight: -0.02em;
--tracking-normal: 0em;
--ease-kit: cubic-bezier(0.22,1,0.36,1);
--duration-kit: 200ms;
--duration-kit-slow: 450ms;
--gradient-hero: linear-gradient(135deg,#e6a24f 0%,#c97a1d 55%,#9b361b 100%);
--gradient-brand: linear-gradient(120deg,#db8c34 0%,#9b361b 100%);
--gradient-subtle: linear-gradient(180deg,#fdf6ec 0%,#f1e6d8 100%);
--font-weight-heading: 600;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "amber-coastal-editorial",
"type": "registry:theme",
"title": "Amber Coastal Editorial",
"description": "A warm, editorial kit inspired by sun-baked terracotta, amber, and rich wood tones from coastal modernist architecture.",
"categories": [
"editorial",
"warm",
"terracotta",
"architecture",
"amber",
"luxury",
"earthy"
],
"cssVars": {© 2026 Identity Forge. All rights reserved.
Munich, Germany