mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
* feat(design-systems): add tokens.css + components.html for 9 AI product brands
Compiles DESIGN.md prose into machine-consumable agent artifacts for
claude, cohere, elevenlabs, huggingface, mistral-ai, nvidia, opencode-ai,
replicate, and together-ai.
Each brand adds:
- tokens.css — :root block of CSS custom properties derived from the brand's
DESIGN.md; agents paste this directly into generated HTML <style> tags
- components.html — reference fixture embedding the token block inline and
demonstrating buttons, inputs, cards, and badges styled
with var(--token-name) calls
Key brand decisions encoded:
- claude: warm parchment canvas, terracotta accent, Anthropic Serif display
- cohere: pure white, 22px signature radius, CohereText + Unica77
- elevenlabs: achromatic + warm stone, Waldenburg weight 300, pill-shaped
- huggingface: IBM Plex Mono headings/tags, HF Yellow (#ffd21e), 4-6px radius
- mistral-ai: golden amber palette, Arial weight 400, near-zero radius
- nvidia: true black, NVIDIA Green as border/outline signal only, teal hover
- opencode-ai: Berkeley Mono sole typeface, flat depth (ring-only elevation)
- replicate: pill-shaped everything (9999px), rb-freigeist-neue heavy
- together-ai: "The Future" font, -0.03em tracking, white/midnight dual world
openai tokens.css + components.html were merged to main separately.
Co-authored-by: Cursor <cursoragent@cursor.com>
* fix(design-systems): sync :root token blocks with tokens.css for opencode-ai and together-ai
opencode-ai: add missing "Liberation Mono" to all three font-stack fallbacks.
together-ai: remove --lavender declaration absent from tokens.css (guard requires byte-identical :root blocks).
Co-authored-by: Cursor <cursoragent@cursor.com>
---------
Co-authored-by: chaoxiaoche <chaoxiaoche@chaoxiaochedeMacBook-Pro.local>
Co-authored-by: Cursor <cursoragent@cursor.com>
338 lines
14 KiB
HTML
338 lines
14 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Mistral AI — reference components</title>
|
|
<meta
|
|
name="description"
|
|
content="Reference fixture for design-systems/mistral-ai. Golden amber universe,
|
|
billboard typography (82px), sharp architectural corners, weight 400 only."
|
|
/>
|
|
|
|
<style>
|
|
:root {
|
|
--bg: #fffaeb;
|
|
--surface: #fff0c2;
|
|
--surface-warm: var(--surface);
|
|
|
|
--fg: #1f1f1f;
|
|
--fg-2: var(--fg);
|
|
--muted: #3d3d3d;
|
|
--meta: var(--muted);
|
|
|
|
--border: #f0e8c8;
|
|
--border-soft: var(--border);
|
|
|
|
--accent: #fa520f;
|
|
--accent-on: #ffffff;
|
|
--accent-hover: #fb6424;
|
|
--accent-active: color-mix(in oklab, var(--accent), black 12%);
|
|
|
|
--success: #17a34a;
|
|
--warn: #eab308;
|
|
--danger: #dc2626;
|
|
|
|
--font-display: Arial, ui-sans-serif, system-ui, sans-serif;
|
|
--font-body: Arial, ui-sans-serif, system-ui, sans-serif;
|
|
--font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
|
|
|
|
--text-xs: 12px;
|
|
--text-sm: 14px;
|
|
--text-base: 16px;
|
|
--text-lg: 24px;
|
|
--text-xl: 32px;
|
|
--text-2xl: 48px;
|
|
--text-3xl: 56px;
|
|
--text-4xl: 82px;
|
|
|
|
--leading-body: 1.5;
|
|
--leading-tight: 1.0;
|
|
--tracking-display: -0.025em;
|
|
|
|
--space-1: 4px;
|
|
--space-2: 8px;
|
|
--space-3: 12px;
|
|
--space-4: 16px;
|
|
--space-5: 20px;
|
|
--space-6: 24px;
|
|
--space-8: 32px;
|
|
--space-12: 48px;
|
|
|
|
--section-y-desktop: 80px;
|
|
--section-y-tablet: 48px;
|
|
--section-y-phone: 32px;
|
|
|
|
--radius-sm: 2px;
|
|
--radius-md: 2px;
|
|
--radius-lg: 4px;
|
|
--radius-pill: 9999px;
|
|
|
|
--elev-flat: none;
|
|
--elev-ring: 0 0 0 1px var(--border);
|
|
--elev-raised: -8px 16px 39px rgba(127, 99, 21, 0.12);
|
|
|
|
--focus-ring: 0 0 0 3px color-mix(in oklab, var(--accent), transparent 70%);
|
|
|
|
--motion-fast: 150ms;
|
|
--motion-base: 200ms;
|
|
--ease-standard: cubic-bezier(0.2, 0, 0, 1);
|
|
|
|
--container-max: 1280px;
|
|
--container-gutter-desktop: 24px;
|
|
--container-gutter-tablet: 16px;
|
|
--container-gutter-phone: 12px;
|
|
}
|
|
|
|
/* ─── Reset ─────────────────────────────────────────────── */
|
|
*, *::before, *::after { box-sizing: border-box; }
|
|
html, body { margin: 0; padding: 0; }
|
|
body {
|
|
background: var(--bg);
|
|
color: var(--fg);
|
|
font-family: var(--font-body);
|
|
font-size: var(--text-base);
|
|
line-height: var(--leading-body);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* ─── Layout ─────────────────────────────────────────────── */
|
|
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-gutter-desktop); }
|
|
section { padding-block: var(--section-y-desktop); }
|
|
section + section { border-top: 1px solid var(--border); }
|
|
@media (max-width: 1023px) {
|
|
.container { padding-inline: var(--container-gutter-tablet); }
|
|
section { padding-block: var(--section-y-tablet); }
|
|
}
|
|
@media (max-width: 639px) {
|
|
.container { padding-inline: var(--container-gutter-phone); }
|
|
section { padding-block: var(--section-y-phone); }
|
|
}
|
|
|
|
/* ─── Typography — weight 400 ONLY; size carries hierarchy ─ */
|
|
h1, h2, h3 {
|
|
font-family: var(--font-display);
|
|
font-weight: 400; /* Single weight throughout — no exception */
|
|
line-height: var(--leading-tight);
|
|
margin: 0;
|
|
}
|
|
h1 { font-size: var(--text-4xl); letter-spacing: var(--tracking-display); }
|
|
h2 { font-size: var(--text-3xl); letter-spacing: -0.01em; }
|
|
h3 { font-size: var(--text-xl); }
|
|
p { margin: 0; }
|
|
.lead { font-size: var(--text-base); color: var(--muted); line-height: var(--leading-body); }
|
|
.body-muted { color: var(--muted); }
|
|
.body-sm { font-size: var(--text-sm); }
|
|
/* Uppercase on section labels — European signage quality */
|
|
.eyebrow {
|
|
font-size: var(--text-xs);
|
|
color: var(--muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
font-weight: 400;
|
|
}
|
|
.stack-3 > * + * { margin-block-start: var(--space-3); }
|
|
.stack-4 > * + * { margin-block-start: var(--space-4); }
|
|
.stack-6 > * + * { margin-block-start: var(--space-6); }
|
|
|
|
/* ─── Buttons — sharp corners, warm palette ─────────────── */
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--space-2);
|
|
padding: 12px 16px;
|
|
border-radius: var(--radius-sm); /* Near-zero — sharp corners */
|
|
font-family: var(--font-body);
|
|
font-size: var(--text-base);
|
|
font-weight: 400; /* Single weight — no bold anywhere */
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
border: none;
|
|
text-transform: uppercase; /* European formality on CTAs */
|
|
letter-spacing: 0.04em;
|
|
transition: background-color var(--motion-fast) var(--ease-standard);
|
|
text-decoration: none;
|
|
}
|
|
.btn:active { opacity: 0.9; }
|
|
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
|
|
/* Primary: dark solid (#1f1f1f) — dark on warm background */
|
|
.btn-primary {
|
|
background: var(--fg);
|
|
color: #ffffff;
|
|
}
|
|
.btn-primary:hover { background: #333333; }
|
|
/* Secondary: Cream surface — warm, inviting */
|
|
.btn-secondary {
|
|
background: var(--surface);
|
|
color: var(--fg);
|
|
}
|
|
.btn-secondary:hover { background: color-mix(in oklab, var(--surface), black 6%); }
|
|
|
|
/* ─── Inputs — warm borders ─────────────────────────────── */
|
|
.field { display: flex; flex-direction: column; gap: var(--space-2); }
|
|
.field label { font-size: var(--text-sm); font-weight: 400; }
|
|
.field input {
|
|
padding: 12px;
|
|
border-radius: var(--radius-sm);
|
|
border: 1px solid var(--border);
|
|
background: var(--surface);
|
|
color: var(--fg);
|
|
font-family: var(--font-body);
|
|
font-size: var(--text-sm);
|
|
outline: none;
|
|
transition: border-color var(--motion-fast) var(--ease-standard),
|
|
box-shadow var(--motion-fast) var(--ease-standard);
|
|
}
|
|
.field input:focus-visible {
|
|
border-color: var(--accent);
|
|
box-shadow: var(--focus-ring);
|
|
}
|
|
.field input::placeholder { color: var(--muted); }
|
|
.field-help { font-size: var(--text-xs); color: var(--muted); }
|
|
|
|
/* ─── Cards — background-defined, golden shadow ─────────── */
|
|
.card {
|
|
background: var(--surface);
|
|
border-radius: var(--radius-sm); /* Sharp corners */
|
|
padding: var(--space-6);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-3);
|
|
box-shadow: var(--elev-raised); /* Golden float shadow */
|
|
}
|
|
|
|
/* ─── Badges ────────────────────────────────────────────── */
|
|
.badge {
|
|
display: inline-flex; align-items: center; gap: var(--space-2);
|
|
padding: 3px var(--space-2);
|
|
border-radius: var(--radius-pill);
|
|
font-size: var(--text-xs); font-weight: 400; line-height: 1.6;
|
|
}
|
|
.badge-success { color: var(--success); background: color-mix(in oklab, var(--success), transparent 90%); }
|
|
.badge-muted { color: var(--muted); background: color-mix(in oklab, var(--muted), transparent 88%); }
|
|
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
|
|
|
|
/* ─── Links ─────────────────────────────────────────────── */
|
|
a { color: var(--accent); text-decoration: none; }
|
|
a:hover { text-decoration: underline; text-underline-offset: 3px; }
|
|
kbd {
|
|
font-family: var(--font-mono); font-size: var(--text-xs);
|
|
padding: 2px 6px; border-radius: var(--radius-sm);
|
|
border: 1px solid var(--border); background: var(--surface); color: var(--muted);
|
|
}
|
|
|
|
/* ─── Layout helpers ────────────────────────────────────── */
|
|
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-12); align-items: end; }
|
|
@media (max-width: 1023px) { .hero-grid { grid-template-columns: 1fr; gap: var(--space-8); } }
|
|
.hero-actions { display: flex; gap: var(--space-3); margin-block-start: var(--space-6); flex-wrap: wrap; }
|
|
.hero-meta {
|
|
display: flex; flex-direction: column; gap: var(--space-3);
|
|
padding: var(--space-4); border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm); background: var(--surface);
|
|
}
|
|
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
|
|
@media (max-width: 1023px) { .features-grid { grid-template-columns: 1fr 1fr; } }
|
|
@media (max-width: 639px) { .features-grid { grid-template-columns: 1fr; } }
|
|
.form-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-12); align-items: start; }
|
|
@media (max-width: 1023px) { .form-row { grid-template-columns: 1fr; } }
|
|
.form { display: flex; flex-direction: column; gap: var(--space-4); max-width: 420px; }
|
|
.form-actions { display: flex; gap: var(--space-3); margin-block-start: var(--space-2); }
|
|
.icon { width: 16px; height: 16px; flex-shrink: 0; }
|
|
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<section data-od-id="hero">
|
|
<div class="hero-grid">
|
|
<div class="stack-4">
|
|
<p class="eyebrow">Reference fixture · mistral-ai</p>
|
|
<h1>Frontier AI, forged in warmth.</h1>
|
|
<p class="lead" style="max-width: 52ch">
|
|
Open-weight models built with European engineering confidence.
|
|
Every tone from pale ivory to burnt orange, no cool grays anywhere.
|
|
</p>
|
|
<div class="hero-actions">
|
|
<a href="./tokens.css" class="btn btn-primary">
|
|
View tokens
|
|
<svg class="icon" viewBox="0 0 24 24" fill="none"
|
|
stroke="currentColor" stroke-width="1.75"
|
|
stroke-linecap="round" stroke-linejoin="round"
|
|
aria-hidden="true"><path d="M5 12h14M13 6l6 6-6 6"/></svg>
|
|
</a>
|
|
<a href="./DESIGN.md" class="btn btn-secondary">Read the spec</a>
|
|
</div>
|
|
</div>
|
|
<aside class="hero-meta" aria-label="System status">
|
|
<div class="row-between">
|
|
<span class="body-sm">API status</span>
|
|
<span class="badge badge-success">
|
|
<span class="badge-dot" aria-hidden="true"></span>
|
|
Operational
|
|
</span>
|
|
</div>
|
|
<p class="body-sm" style="color: var(--muted)">Last reviewed <time datetime="2026-05-15">2026-05-15</time> · v1.0</p>
|
|
<p class="body-sm" style="color: var(--muted)">Press <kbd>⌘</kbd> <kbd>K</kbd> to search tokens.</p>
|
|
</aside>
|
|
</div>
|
|
</section>
|
|
|
|
<section data-od-id="features">
|
|
<div class="stack-3">
|
|
<p class="eyebrow">What this fixture exercises</p>
|
|
<h2 style="max-width: 22ch">Warmth as a system, not an afterthought.</h2>
|
|
</div>
|
|
<div class="features-grid" style="margin-block-start: var(--space-8)">
|
|
<article class="card">
|
|
<h3>Golden amber universe</h3>
|
|
<p class="body-muted body-sm">
|
|
--bg (#fffaeb) → --surface (#fff0c2) → --accent (#fa520f).
|
|
Every tone in the warm spectrum. No cool colors permitted.
|
|
</p>
|
|
<a href="./tokens.css" class="body-sm">Inspect tokens →</a>
|
|
</article>
|
|
<article class="card">
|
|
<h3>Weight 400 throughout</h3>
|
|
<p class="body-muted body-sm">
|
|
The entire system uses weight 400 — even at 82px. Size and color
|
|
carry hierarchy. Bold weight is European bad taste here.
|
|
</p>
|
|
<a href="./DESIGN.md" class="body-sm">Read the rule →</a>
|
|
</article>
|
|
<article class="card">
|
|
<h3>Sharp geometry</h3>
|
|
<p class="body-muted body-sm">
|
|
--radius-sm: 2px. Near-zero border-radius on everything.
|
|
The sharpness contrasts with warm colors, creating tension.
|
|
</p>
|
|
<a href="./tokens.css" class="body-sm">Inspect radius →</a>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
|
|
<section data-od-id="form">
|
|
<div class="form-row">
|
|
<div class="stack-4">
|
|
<p class="eyebrow">Form components</p>
|
|
<h2>Inputs in the warm ivory context.</h2>
|
|
<p class="body-muted" style="max-width: 48ch">
|
|
Even form borders use the warm palette. The focus ring is orange-tinted
|
|
(--accent). No cool grays permitted in the Mistral universe.
|
|
</p>
|
|
</div>
|
|
<form class="form" onsubmit="event.preventDefault();">
|
|
<div class="field">
|
|
<label for="email">Work email</label>
|
|
<input id="email" type="email" placeholder="you@mistral.ai" autocomplete="email" required />
|
|
<p class="field-help">We'll send API access and nothing else.</p>
|
|
</div>
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-primary">Get access</button>
|
|
<button type="button" class="btn btn-secondary">Learn more</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|