Tigris — Design System
The full decoded design system for Tigris: 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/tigris.
Tokens
Tigris's decoded design system: background #0A171E, text #ECECEE, accent #62FEB5, link #0A171E, primary #0B181E; type scale h1 70px / h2 40px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #62FEB5 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #0A171E |
| surface | #17232A |
| border | #2B363D |
| text | #ECECEE |
| text_muted | #969B9E |
| primary | #0B181E |
| accent | #62FEB5 |
| link | #0A171E |
| secondary | #62FEB5 |
| button_bg | #62FEB5 |
| button_text | #050C0F |
Using these colors
- Action color
#62FEB5— the single interactive color; only on things you click or must notice, never large fills. primary#0B181E,link#0A171Eare visually the same color (Δ2) — treat as one role (the action color).accent,secondary,button_bgare all#62FEB5— one role, not several (the action color).- accent
#62FEB5— 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.
Typography
- Heading: Geist Mono
- Body: Geist Mono
- Mono: Geist Mono
- h1: 70px
- h2: 40px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 12px
Per-section tokens (11)
- Hero
- Logo Wall
- Feature
- Feature
- Testimonial / Social Proof
- Bento Grid
- Feature
- Feature
- Steps / How-it-works
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Tigris — Design System > dark, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#0A171E` | | surface | `#17232A` | | border | `#2B363D` | | text | `#ECECEE` | | text_muted | `#969B9E` | | primary | `#0B181E` | | accent | `#62FEB5` | | link | `#0A171E` | | secondary | `#62FEB5` | | button_bg | `#62FEB5` | | button_text | `#050C0F` | **Using these colors** - **Action color** `#62FEB5` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary` `#0B181E`, `link` `#0A171E` are visually the same color (Δ2) — treat as one role. - `accent`, `secondary`, `button_bg` are all `#62FEB5` — one role, not several (your action color). - **accent** `#62FEB5` — 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. ## Typography - Heading: **Geist Mono** _(free fallback: JetBrains Mono)_ - Body: **Geist Mono** _(free fallback: JetBrains Mono)_ - Mono: **Geist Mono** - h1: 70px - h2: 40px - body: 18px > **Fonts —** Geist Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 12px ## Primary button - bg `#62FEB5` · text `#050C0F` · radius 12px ## 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 #62FEB5 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #0A171E;
--color-surface: #17232A;
--color-border: #2B363D;
--color-text: #ECECEE;
--color-text-muted: #969B9E;
--color-primary: #0B181E; /* a brand color — but the call-to-action uses #62FEB5, not this. */
--color-accent: #62FEB5; /* 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: #0A171E; /* fails contrast on the background (~1.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: #62FEB5; /* same color as the action (see accent). */
--color-button-bg: #62FEB5; /* primary-button fill — the main call-to-action color. */
--color-button-text: #050C0F;
/* fonts: Geist Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */
--font-heading: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-mono: "Geist Mono", ui-monospace, monospace;
--text-h1: 70px;
--text-h2: 40px;
--text-body: 18px;
--radius-base: 8px;
--radius-button: 12px;
--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 #62FEB5 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #0A171E;
--surface: #17232A;
--border: #2B363D;
--text: #ECECEE;
--text-muted: #969B9E;
--primary: #0B181E; /* a brand color — but the call-to-action uses #62FEB5, not this. */
--accent: #62FEB5; /* 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: #0A171E; /* fails contrast on the background (~1.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: #62FEB5; /* same color as the action (see accent). */
--button-bg: #62FEB5; /* primary-button fill — the main call-to-action color. */
--button-text: #050C0F;
--font-heading: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-mono: "Geist Mono", ui-monospace, monospace;
--radius: 8px;
--radius-button: 12px;
}
/* fonts: Geist Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */