Northflank — Design System
The full decoded design system for Northflank: 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/northflank.
Tokens
Northflank's decoded design system: background #03060E, text #CDD5DF, accent #0A2820, link #364152, primary #CDD5DF; type scale h1 56px / h2 14px / body 14px; 4px spacing base; 2px base radius. The single interactive/action color is #0A2820 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #03060E |
| surface | #0F121A |
| border | #21252D |
| text | #CDD5DF |
| text_muted | #80868F |
| primary | #CDD5DF |
| accent | #0A2820 |
| link | #364152 |
| secondary | #202939 |
| button_bg | #0A2820 |
| button_text | #2DD881 |
Using these colors
- Action color
#0A2820— the single interactive color; only on things you click or must notice, never large fills. accent,button_bgare all#0A2820— one role, not several (the action color).- accent
#0A2820— 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. - primary
#CDD5DF— ≈ the text color — a foreground/text color, not an action color (action = #0A2820). - link
#364152— fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#202939— 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: Inter
- Body: Inter
- h1: 56px
- h2: 14px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 2px
- button: 2px
Per-section tokens (16)
- Hero
- Gallery / Showcase
- Logo Wall
- Feature
- Feature
- Integrations
- Feature
- Feature
- Testimonial / Social Proof
- Feature
- Testimonial / Social Proof
- Feature
- Stats / Metrics
- Integrations
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Northflank — Design System > dark, professional, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#03060E` | | surface | `#0F121A` | | border | `#21252D` | | text | `#CDD5DF` | | text_muted | `#80868F` | | primary | `#CDD5DF` | | accent | `#0A2820` | | link | `#364152` | | secondary | `#202939` | | button_bg | `#0A2820` | | button_text | `#2DD881` | **Using these colors** - **Action color** `#0A2820` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `button_bg` are all `#0A2820` — one role, not several (your action color). - **accent** `#0A2820` — 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. - **primary** `#CDD5DF` — ≈ the text color — a foreground/text color, not an action color (action = #0A2820). - **link** `#364152` — fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - **secondary** `#202939` — 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: **Inter** - Body: **Inter** - h1: 56px - h2: 14px - body: 14px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 2px - button: 2px ## Primary button - bg `#0A2820` · text `#2DD881` · 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 #0A2820 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #03060E;
--color-surface: #0F121A;
--color-border: #21252D;
--color-text: #CDD5DF;
--color-text-muted: #80868F;
--color-primary: #CDD5DF; /* ≈ the text color — a foreground/text color, not an action color (action = #0A2820). */
--color-accent: #0A2820; /* 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: #364152; /* fails contrast on the background (~2.0: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: #202939; /* 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: #0A2820; /* primary-button fill — the main call-to-action color. */
--color-button-text: #2DD881;
/* fonts: Inter — free, on Google. */
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 56px;
--text-h2: 14px;
--text-body: 14px;
--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 #0A2820 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #03060E;
--surface: #0F121A;
--border: #21252D;
--text: #CDD5DF;
--text-muted: #80868F;
--primary: #CDD5DF; /* ≈ the text color — a foreground/text color, not an action color (action = #0A2820). */
--accent: #0A2820; /* 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: #364152; /* fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #202939; /* 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: #0A2820; /* primary-button fill — the main call-to-action color. */
--button-text: #2DD881;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 2px;
--radius-button: 2px;
}
/* fonts: Inter — free, on Google. */