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 distinctive retail surface system where primary content panels such as spec sheets, product tables, and info cards are flooded with warm amber (#feda9c) rather than white. Black ink typography sits directly on amber, orange-red (#d43a0f) drives all CTAs, and pill-shaped badges carry item counts. Oversized Archivo Black display headings, compact uppercase Barlow labels, and hairline table grids define the layout, with Space Mono for technical code lines.
ambersportsweareditorial.com
Amber Sportswear
Supporting copy goes here.
ambersportsweareditorial.com
Amber Sportswear
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: "ac966d73-c62b-46b1-a521-9c210ce3dcab"
version: 0
slug: "amber-sportswear-editorial"
name: "Amber Sportswear Editorial"
colors:
roles_light:
background: "#F0F0F0"
foreground: "#0D0D0D"
card: "#FEDA9C"
card-foreground: "#1A0F06"
popover: "#FFFFFF"
popover-foreground: "#0D0D0D"
primary: "#D43A0F"
primary-foreground: "#FFFFFF"
secondary: "#E5E4E4"
secondary-foreground: "#1A1A1A"
muted: "#EDEDED"
muted-foreground: "#554B4E"
accent: "#F0BC42"
accent-foreground: "#1A0F06"
destructive: "#BA1A1A"
destructive-foreground: "#FFFFFF"
border: "#C9B890"
input: "#FFFFFF"
ring: "#D43A0F"
success: "#2D6A4F"
success-foreground: "#FFFFFF"
warning: "#F0BC42"
warning-foreground: "#1A0F06"
chart-1: "#D43A0F"
chart-2: "#F0BC42"
chart-3: "#647CAC"
chart-4: "#2D6A4F"
chart-5: "#C9BE96"
roles_dark:
background: "#111008"Three ways from the same kit: run "npx identityforge@latest apply amber-sportswear-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-sportswear-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 Sportswear Editorial is free: its full color tokens, fonts, DESIGN.md, and every export are available at no cost.
Supporting copy goes here.
/*
* Amber Sportswear Editorial — Identity Forge design kit.
* Kit id: ac966d73-c62b-46b1-a521-9c210ce3dcab
* Kit slug: amber-sportswear-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=Archivo%20Black:wght@400&family=Barlow:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.625rem;
--font-heading: 'Archivo Black', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 0 0% 94%;
--foreground: 0 0% 5%;
--card: 38 98% 80%;
--card-foreground: 27 63% 6%;
--popover: 0 0% 100%;
--popover-foreground: 0 0% 5%;
--primary: 13 87% 45%;
--primary-foreground: 0 0% 100%;
--secondary: 0 2% 90%;
--secondary-foreground: 0 0% 10%;
--muted: 0 0% 93%;
--muted-foreground: 342 6% 31%;
--accent: 42 85% 60%;
--accent-foreground: 27 63% 6%;
--destructive: 0 75% 42%;
--destructive-foreground: 0 0% 100%;
--border: 42 35% 68%;
--input: 0 0% 100%;
--ring: 13 87% 45%;
--success: 153 40% 30%;
--success-foreground: 0 0% 100%;
--warning: 42 85% 60%;
--warning-foreground: 27 63% 6%;
--chart-1: 13 87% 45%;
--chart-2: 42 85% 60%;
--chart-3: 220 30% 53%;
--chart-4: 153 40% 30%;
--chart-5: 47 32% 69%;
--shadow-sm: 0 1px 2px rgba(10,8,0,0.06);
--shadow-md: 0 2px 8px rgba(10,8,0,0.08);
--shadow-lg: 0 4px 16px rgba(10,8,0,0.10);
--shadow-xl: 0 8px 32px rgba(10,8,0,0.12);
--gradient-hero: linear-gradient(135deg, #feda9c 0%, #f0bc42 100%);
--gradient-brand: linear-gradient(135deg, #d43a0f 0%, #f0bc42 100%);
--gradient-subtle: linear-gradient(180deg, #f0f0f0 0%, #fafafa 100%);
--duration: 150ms;
--duration-slow: 350ms;
--ease: cubic-bezier(0.4,0,0.2,1);
--tracking-tight: -0.02em;
--tracking-normal: 0.02em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 9999px;
--card-radius: 0.375rem;
--input-radius: 9999px;
--badge-radius: 9999px;
--border-width: 1px;Registry
/r/amber-sportswear-editorial.jsonTailwind v4
/*
* Amber Sportswear Editorial — Identity Forge design kit.
* Kit id: ac966d73-c62b-46b1-a521-9c210ce3dcab
* Kit slug: amber-sportswear-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=Archivo%20Black:wght@400&family=Barlow:wght@400;500;600;700&family=Space%20Mono:wght@400;700&display=swap");
:root {
--radius: 0.625rem;
--font-heading: 'Archivo Black', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 0 0% 94%;
--foreground: 0 0% 5%;
--card: 38 98% 80%;
--card-foreground: 27 63% 6%;
--popover: 0 0% 100%;
--popover-foreground: 0 0% 5%;
--primary: 13 87% 45%;
--primary-foreground: 0 0% 100%;
--secondary: 0 2% 90%;
--secondary-foreground: 0 0% 10%;
--muted: 0 0% 93%;
--muted-foreground: 342 6% 31%;
--accent: 42 85% 60%;
--accent-foreground: 27 63% 6%;
--destructive: 0 75% 42%;
--destructive-foreground: 0 0% 100%;
--border: 42 35% 68%;
--input: 0 0% 100%;
--ring: 13 87% 45%;
--success: 153 40% 30%;
--success-foreground: 0 0% 100%;
--warning: 42 85% 60%;
--warning-foreground: 27 63% 6%;
--chart-1: 13 87% 45%;
--chart-2: 42 85% 60%;
--chart-3: 220 30% 53%;
--chart-4: 153 40% 30%;
--chart-5: 47 32% 69%;
--shadow-sm: 0 1px 2px rgba(10,8,0,0.06);
--shadow-md: 0 2px 8px rgba(10,8,0,0.08);
--shadow-lg: 0 4px 16px rgba(10,8,0,0.10);
--shadow-xl: 0 8px 32px rgba(10,8,0,0.12);
--gradient-hero: linear-gradient(135deg, #feda9c 0%, #f0bc42 100%);
--gradient-brand: linear-gradient(135deg, #d43a0f 0%, #f0bc42 100%);
--gradient-subtle: linear-gradient(180deg, #f0f0f0 0%, #fafafa 100%);
--duration: 150ms;
--duration-slow: 350ms;
--ease: cubic-bezier(0.4,0,0.2,1);
--tracking-tight: -0.02em;
--tracking-normal: 0.02em;
--font-weight-heading: 900;
--font-weight-body: 400;
--button-radius: 9999px;
--card-radius: 0.375rem;
--input-radius: 9999px;
--badge-radius: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 0;
--badge-border-width: 0;
--heading-transform: uppercase;
--label-transform: uppercase;
--kit-id: "ac966d73-c62b-46b1-a521-9c210ce3dcab";
--kit-version: 0;
}
.dark {
--radius: 0.625rem;
--font-heading: 'Archivo Black', sans-serif;
--font-sans: 'Barlow', sans-serif;
--font-mono: 'Space Mono', monospace;
--background: 53 36% 5%;
--foreground: 37 39% 94%;
--card: 34 50% 11%;
--card-foreground: 37 39% 94%;
--popover: 38 58% 7%;
--popover-foreground: 37 39% 94%;
--primary: 13 87% 45%;
--primary-foreground: 0 0% 100%;
--secondary: 20 8% 15%;
--secondary-foreground: 37 29% 86%;
--muted: 36 20% 10%;
--muted-foreground: 34 12% 56%;
--accent: 42 85% 60%;
--accent-foreground: 27 63% 6%;
--destructive: 4 100% 64%;
--destructive-foreground: 0 100% 5%;
--border: 33 31% 18%;
--input: 34 50% 11%;
--ring: 42 85% 60%;
--success: 152 41% 52%;
--success-foreground: 150 64% 11%;
--warning: 42 85% 60%;
--warning-foreground: 27 63% 6%;
--chart-1: 13 87% 45%;
--chart-2: 42 85% 60%;
--chart-3: 217 41% 69%;
--chart-4: 152 41% 52%;
--chart-5: 47 32% 69%;
}
@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: 0.125rem;
--radius-md: 0.375rem;
--radius-lg: 0.625rem;
--radius-xl: 9999px;
--radius-button: 9999px;
--radius-card: 0.375rem;
--radius-input: 9999px;
--radius-badge: 9999px;
--border-width: 1px;
--card-border-width: 1px;
--input-border-width: 1px;
--button-border-width: 0;
--badge-border-width: 0;
--shadow-sm: 0 1px 2px rgba(10,8,0,0.06);
--shadow-md: 0 2px 8px rgba(10,8,0,0.08);
--shadow-lg: 0 4px 16px rgba(10,8,0,0.10);
--shadow-xl: 0 8px 32px rgba(10,8,0,0.12);
--tracking-tight: -0.02em;
--tracking-normal: 0.02em;
--ease-kit: cubic-bezier(0.4,0,0.2,1);
--duration-kit: 150ms;
--duration-kit-slow: 350ms;
--gradient-hero: linear-gradient(135deg, #feda9c 0%, #f0bc42 100%);
--gradient-brand: linear-gradient(135deg, #d43a0f 0%, #f0bc42 100%);
--gradient-subtle: linear-gradient(180deg, #f0f0f0 0%, #fafafa 100%);
--font-weight-heading: 900;
--font-weight-body: 400;
}Registry payload
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "amber-sportswear-editorial",
"type": "registry:theme",
"title": "Amber Sportswear Editorial",
"description": "Bold retail brand kit built on warm amber content panels, pitch-black display typography, and orange-red CTAs for a high-contrast editorial identity.",
"categories": [
"retail",
"sportswear",
"editorial",
"amber",
"bold",
"e-commerce",
"high-contrast",
"pill-ui"
],© 2026 Identity Forge. All rights reserved.
Munich, Germany