Modyfi — Design System
Modyfi designs in motion on black: Jokker at 56px/600 in white ('Design without limits'), 16-19px body, and generative canvases doing the color work — animated gradients, particle brushes, live filters. The restrained type over kinetic artboards mirrors the product: a design tool where the artwork moves, so the chrome holds still.
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/modyfi.
Tokens
Modyfi's decoded design system: background #000000, text #ECECEE, accent #3898EC, link #3898EC, primary #FF0357; type scale h1 56px / h2 48px / body 18px; 4px spacing base; 15px base radius. The single interactive/action color is #262626 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #000000 |
| surface | #0E0E0E |
| border | #232323 |
| text | #ECECEE |
| text_muted | #929293 |
| primary | #FF0357 |
| accent | #3898EC |
| link | #3898EC |
| secondary | #FF0055 |
| button_bg | #262626 |
| button_text | #FFFFFF |
Using these colors
- Action color
#262626— the single interactive color; only on things you click or must notice, never large fills. primary#FF0357,secondary#FF0055are visually the same color (Δ5) — treat as one role (the action color).accent,linkare all#3898EC— one role, not several (the action color).- accent
#3898EC— accent for emphasis — keep it rare on the page.
Typography
- Heading: Jokker
- Body: Jokker
- h1: 56px
- h2: 48px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 15px
- button: 30px
Per-section tokens (9)
Export: DESIGN.md
# Modyfi — Design System
> dark, modern, high, custom
Modyfi designs in motion on black: Jokker at 56px/600 in white ('Design without limits'), 16-19px body, and generative canvases doing the color work — animated gradients, particle brushes, live filters. The restrained type over kinetic artboards mirrors the product: a design tool where the artwork moves, so the chrome holds still.
## Colors
| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#0E0E0E` |
| border | `#232323` |
| text | `#ECECEE` |
| text_muted | `#929293` |
| primary | `#FF0357` |
| accent | `#3898EC` |
| link | `#3898EC` |
| secondary | `#FF0055` |
| button_bg | `#262626` |
| button_text | `#FFFFFF` |
**Using these colors**
- **Action color** `#262626` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary` `#FF0357`, `secondary` `#FF0055` are visually the same color (Δ5) — treat as one role.
- `accent`, `link` are all `#3898EC` — one role, not several.
- **accent** `#3898EC` — accent for emphasis — keep it rare on the page.
## Typography
- Heading: **Jokker** _(free fallback: Newsreader)_
- Body: **Jokker** _(free fallback: Newsreader)_
- h1: 56px
- h2: 48px
- body: 18px
> **Fonts —** Jokker may be proprietary — safe free fallback: Newsreader (Google Fonts).
## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
## Radius
- base: 15px
- button: 30px
## Primary button
- bg `#262626` · text `#FFFFFF` · radius 30px
## 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 #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #000000;
--color-surface: #0E0E0E;
--color-border: #232323;
--color-text: #ECECEE;
--color-text-muted: #929293;
--color-primary: #FF0357; /* a brand color — but the call-to-action uses #262626, not this. */
--color-accent: #3898EC; /* accent for emphasis — keep it rare on the page. */
--color-link: #3898EC; /* inline text links and link-styled controls. */
--color-secondary: #FF0055; /* 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: #262626; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Jokker may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Jokker", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Jokker", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 56px;
--text-h2: 48px;
--text-body: 18px;
--radius-base: 15px;
--radius-button: 30px;
--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 #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0E0E0E;
--border: #232323;
--text: #ECECEE;
--text-muted: #929293;
--primary: #FF0357; /* a brand color — but the call-to-action uses #262626, not this. */
--accent: #3898EC; /* accent for emphasis — keep it rare on the page. */
--link: #3898EC; /* inline text links and link-styled controls. */
--secondary: #FF0055; /* 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: #262626; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Jokker", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Jokker", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 15px;
--radius-button: 30px;
}
/* fonts: Jokker may be proprietary — safe free fallback: Newsreader (Google Fonts). */