Opus Clip — Design System
The full decoded design system for Opus Clip: 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/opus-clip.
Tokens
Opus Clip's decoded design system: background #000000, text #FFFFFF, accent #6723FF, link #2B2F3B, primary #6723FF; type scale h1 60px / h2 16px / body 14.08px; 4px spacing base; 12px base radius. The single interactive/action color is #FFFFFF — 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 | #6723FF |
| accent | #6723FF |
| link | #2B2F3B |
| secondary | #D1FF05 |
| button_bg | #FFFFFF |
| button_text | #000000 |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. primary,accentare all#6723FF— one role, not several (the action color).- accent
#6723FF— accent for emphasis — keep it rare on the page. - link
#2B2F3B— fails contrast on the background (~1.6:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#D1FF05— 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: Geist
- Body: Geist
- h1: 60px
- h2: 16px
- body: 14.08px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 12px
- button: 8px
Per-section tokens (8)
Export: DESIGN.md
# Opus Clip — Design System > dark, modern, high, custom ## Colors | Role | Value | |------|-------| | bg | `#000000` | | surface | `#0F0F0F` | | border | `#262626` | | text | `#FFFFFF` | | text_muted | `#9E9E9E` | | primary | `#6723FF` | | accent | `#6723FF` | | link | `#2B2F3B` | | secondary | `#D1FF05` | | button_bg | `#FFFFFF` | | button_text | `#000000` | **Using these colors** - **Action color** `#FFFFFF` — 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 `#6723FF` — one role, not several. - **accent** `#6723FF` — accent for emphasis — keep it rare on the page. - **link** `#2B2F3B` — fails contrast on the background (~1.6:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - **secondary** `#D1FF05` — 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: **Geist** - Body: **Geist** - h1: 60px - h2: 16px - body: 14.08px > **Fonts —** Geist — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 12px - button: 8px ## Primary button - bg `#FFFFFF` · text `#000000` · radius 8px ## 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 #FFFFFF — 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: #6723FF; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--color-accent: #6723FF; /* accent for emphasis — keep it rare on the page. */
--color-link: #2B2F3B; /* fails contrast on the background (~1.6: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: #D1FF05; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #000000;
/* fonts: Geist — free, on Google. */
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 60px;
--text-h2: 16px;
--text-body: 14.08px;
--radius-base: 12px;
--radius-button: 8px;
--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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0F0F0F;
--border: #262626;
--text: #FFFFFF;
--text-muted: #9E9E9E;
--primary: #6723FF; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--accent: #6723FF; /* accent for emphasis — keep it rare on the page. */
--link: #2B2F3B; /* fails contrast on the background (~1.6:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #D1FF05; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--button-text: #000000;
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 12px;
--radius-button: 8px;
}
/* fonts: Geist — free, on Google. */