Klim Type Foundry — Design System
The full decoded design system for Klim Type Foundry: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
This is a static, crawlable rendering for search & AI engines. The interactive version — filters, live decode console, copy & export — is at https://mozaika.design/ds/klim-type-foundry.
Tokens
Klim Type Foundry's decoded design system: background #000000, text #FFFFFF, accent #D33C03, link #0000FF, primary #D33C03; type scale h1 16px / h2 16px / body 16px; 4px spacing base; 2px base radius. The single interactive/action color is #D33C03 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #000000 |
| surface | #0F0F0F |
| border | #262626 |
| text | #FFFFFF |
| text_muted | #9E9E9E |
| primary | #D33C03 |
| accent | #D33C03 |
| link | #0000FF |
| secondary | #24A7F2 |
| button_bg | transparent |
| button_text | #FFFFFF |
Using these colors
- Action color
#D33C03— the single interactive color; only on things you click or must notice, never large fills. primary,accentare all#D33C03— one role, not several (the action color).- accent
#D33C03— THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. - link
#0000FF— fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#24A7F2— optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two.
Typography
- Heading: Helvetica
- Body: Helvetica
- h1: 16px
- h2: 16px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 2px
- button: 2px
Per-section tokens (9)
- Hero
- Gallery / Showcase
- Gallery / Showcase
- Gallery / Showcase
- Gallery / Showcase
- Gallery / Showcase
- Gallery / Showcase
- Gallery / Showcase
- Footer
Export: DESIGN.md
# Klim Type Foundry — Design System > dark, professional, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#000000` | | surface | `#0F0F0F` | | border | `#262626` | | text | `#FFFFFF` | | text_muted | `#9E9E9E` | | primary | `#D33C03` | | accent | `#D33C03` | | link | `#0000FF` | | secondary | `#24A7F2` | | button_bg | `transparent` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#D33C03` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `accent` are all `#D33C03` — one role, not several (your action color). - **accent** `#D33C03` — THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. - **link** `#0000FF` — fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - **secondary** `#24A7F2` — optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. ## Typography - Heading: **Helvetica** - Body: **Helvetica** - h1: 16px - h2: 16px - body: 16px > **Fonts —** Helvetica — system font, no web load needed. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 2px - button: 2px ## Primary button - bg `transparent` · text `#FFFFFF` · radius 2px ## How to apply Paste the Tailwind `@theme` (or CSS variables) as your base, then build each section to its spec — verify every color, radius, and font against these tokens.
Export: Tailwind v4 (@theme)
@theme {
/* action color #D33C03 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #000000;
--color-surface: #0F0F0F;
--color-border: #262626;
--color-text: #FFFFFF;
--color-text-muted: #9E9E9E;
--color-primary: #D33C03; /* primary brand / action color. */
--color-accent: #D33C03; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--color-link: #0000FF; /* fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--color-secondary: #24A7F2; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--color-button-bg: transparent;
--color-button-text: #FFFFFF;
/* fonts: Helvetica — system font, no web load needed. */
--font-heading: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 16px;
--text-h2: 16px;
--text-body: 16px;
--radius-base: 2px;
--radius-button: 2px;
--spacing-1: 2px;
--spacing-2: 4px;
--spacing-3: 6px;
--spacing-4: 8px;
--spacing-5: 12px;
--spacing-6: 16px;
--spacing-7: 24px;
--spacing-8: 32px;
}Export: CSS variables
:root {
/* action color #D33C03 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0F0F0F;
--border: #262626;
--text: #FFFFFF;
--text-muted: #9E9E9E;
--primary: #D33C03; /* primary brand / action color. */
--accent: #D33C03; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--link: #0000FF; /* fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #24A7F2; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--button-bg: transparent;
--button-text: #FFFFFF;
--font-heading: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 2px;
--radius-button: 2px;
}
/* fonts: Helvetica — system font, no web load needed. */