Rive — Design System
Rive animates in Tomorrow at 40px/500 on black — 'The Interactive experience engine' — with 14-16px working text and interactive Rive files embedded as living proof throughout. Characters blink, graphs respond, buttons morph; the page is a runtime demo where the typography's squared techno voice just labels the moving parts.
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/rive.
Tokens
Rive's decoded design system: background #000000, text #FFFFFF, accent #FFA41C, link #FFA41C, primary #0000EE; type scale h1 40px / h2 16px / body 14px; 10px spacing base; 0px base radius. The single interactive/action color is #1A1A1A — 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 | #0000EE |
| accent | #FFA41C |
| link | #FFA41C |
| button_bg | #1A1A1A |
| button_text | #FFFFFF |
Using these colors
- Action color
#1A1A1A— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#FFA41C— one role, not several (the action color).- accent
#FFA41C— accent for emphasis — keep it rare on the page. - primary
#0000EE— a brand color — but the call-to-action uses #1A1A1A, not this.
Typography
- Heading: Tomorrow
- Body: Tomorrow
- h1: 40px
- h2: 16px
- body: 14px
Spacing
- base unit: 10px
- scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px
Radii
- base: 0px
- button: 8px
Per-section tokens (8)
Export: DESIGN.md
# Rive — Design System > dark, modern, medium, custom Rive animates in Tomorrow at 40px/500 on black — 'The Interactive experience engine' — with 14-16px working text and interactive Rive files embedded as living proof throughout. Characters blink, graphs respond, buttons morph; the page is a runtime demo where the typography's squared techno voice just labels the moving parts. ## Colors | Role | Value | |------|-------| | bg | `#000000` | | surface | `#0F0F0F` | | border | `#262626` | | text | `#FFFFFF` | | text_muted | `#9E9E9E` | | primary | `#0000EE` | | accent | `#FFA41C` | | link | `#FFA41C` | | button_bg | `#1A1A1A` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#1A1A1A` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `link` are all `#FFA41C` — one role, not several. - **accent** `#FFA41C` — accent for emphasis — keep it rare on the page. - **primary** `#0000EE` — a brand color — but the call-to-action uses #1A1A1A, not this. ## Typography - Heading: **Tomorrow** _(free fallback: Newsreader)_ - Body: **Tomorrow** _(free fallback: Newsreader)_ - h1: 40px - h2: 16px - body: 14px > **Fonts —** Tomorrow may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 10px - scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px ## Radius - base: 0px - button: 8px ## Primary button - bg `#1A1A1A` · text `#FFFFFF` · 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 #1A1A1A — 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: #0000EE; /* a brand color — but the call-to-action uses #1A1A1A, not this. */
--color-accent: #FFA41C; /* accent for emphasis — keep it rare on the page. */
--color-link: #FFA41C; /* inline text links and link-styled controls. */
--color-button-bg: #1A1A1A; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Tomorrow may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Tomorrow", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Tomorrow", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 40px;
--text-h2: 16px;
--text-body: 14px;
--radius-base: 0px;
--radius-button: 8px;
--spacing-1: 5px;
--spacing-2: 10px;
--spacing-3: 15px;
--spacing-4: 20px;
--spacing-5: 30px;
--spacing-6: 40px;
--spacing-7: 60px;
--spacing-8: 80px;
}Export: CSS variables
:root {
/* action color #1A1A1A — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0F0F0F;
--border: #262626;
--text: #FFFFFF;
--text-muted: #9E9E9E;
--primary: #0000EE; /* a brand color — but the call-to-action uses #1A1A1A, not this. */
--accent: #FFA41C; /* accent for emphasis — keep it rare on the page. */
--link: #FFA41C; /* inline text links and link-styled controls. */
--button-bg: #1A1A1A; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Tomorrow", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Tomorrow", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 8px;
}
/* fonts: Tomorrow may be proprietary — safe free fallback: Newsreader (Google Fonts). */