af2af23d14
Lint / lint (push) Has been cancelled
- Brand palette: purple #6B35A7 (primary), #000000 (ink), #FFFFFF, #F5F4F0 (canvas) - Typography: Manrope (UI, 200-800) + Opificio Bold (wordmark/display); drop Inter - design.md: add wordmarkSecondary token, new display scale (Opificio 72/80) - foundations: refresh swatches and typography README to match guidelines - assets/fonts: replace Inter folder with Manrope; add Opificio cuts (Bold/Rounded/Regular) - fonts.css: register Manrope variable + Opificio cuts; keep Roboto Mono for code only - examples/web: render the kode wordmark lockup on the off-white canvas - brand-guidelines: real specs (lockup, palette, typography, logo variant rules) - README: add brand-at-a-glance, bump version to beta Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
20 lines
718 B
HTML
20 lines
718 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Kode Design Consultants — Design System Example</title>
|
|
<link rel="icon" href="../../brand/logos/favicon/favicon.svg" />
|
|
<link rel="stylesheet" href="../../assets/fonts/fonts.css" />
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1 class="wordmark">kode</h1>
|
|
<p class="wordmark-sub">design consultants</p>
|
|
<p class="body">A minimal page wired up to the KDC design tokens and brand fonts.</p>
|
|
<button class="btn-primary">Primary action</button>
|
|
</main>
|
|
</body>
|
|
</html>
|