Ritual — Design System
The full decoded design system for Ritual: 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/ritual.
Tokens
Ritual's decoded design system: background #FFFFFF, text #64748B, accent #142B6F, link #142B6F, primary #CBD5E1; type scale h1 66px / h2 48px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #142B6F — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F5F6F8 |
| border | #E7EAED |
| text | #64748B |
| text_muted | #9EA8B7 |
| primary | #CBD5E1 |
| accent | #142B6F |
| link | #142B6F |
| secondary | #64748B |
| button_bg | #142B6F |
| button_text | #FFFFFF |
Using these colors
- Action color
#142B6F— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#142B6F— one role, not several (the action color).- accent
#142B6F— 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
#CBD5E1— a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #142B6F). - secondary
#64748B— 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: CircularXX
- Body: CircularXX
- h1: 66px
- h2: 48px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 25px
Per-section tokens (14)
- Hero
- Banner
- Gallery / Showcase
- Stats / Metrics
- Feature
- Feature
- Gallery / Showcase
- Testimonial / Social Proof
- Testimonial / Social Proof
- CTA / Sign-up
- Gallery / Showcase
- Feature
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Ritual — Design System > light, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F5F6F8` | | border | `#E7EAED` | | text | `#64748B` | | text_muted | `#9EA8B7` | | primary | `#CBD5E1` | | accent | `#142B6F` | | link | `#142B6F` | | secondary | `#64748B` | | button_bg | `#142B6F` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#142B6F` — 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`, `button_bg` are all `#142B6F` — one role, not several (your action color). - **accent** `#142B6F` — 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** `#CBD5E1` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #142B6F). - **secondary** `#64748B` — 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: **CircularXX** _(free fallback: Newsreader)_ - Body: **CircularXX** _(free fallback: Newsreader)_ - h1: 66px - h2: 48px - body: 16px > **Fonts —** CircularXX may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 25px ## Primary button - bg `#142B6F` · text `#FFFFFF` · radius 25px ## 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 #142B6F — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F5F6F8;
--color-border: #E7EAED;
--color-text: #64748B;
--color-text-muted: #9EA8B7;
--color-primary: #CBD5E1; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #142B6F). */
--color-accent: #142B6F; /* 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: #142B6F; /* inline text links — shares the action color. */
--color-secondary: #64748B; /* 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: #142B6F; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: CircularXX may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "CircularXX", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "CircularXX", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 66px;
--text-h2: 48px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 25px;
--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 #142B6F — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F5F6F8;
--border: #E7EAED;
--text: #64748B;
--text-muted: #9EA8B7;
--primary: #CBD5E1; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #142B6F). */
--accent: #142B6F; /* 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: #142B6F; /* inline text links — shares the action color. */
--secondary: #64748B; /* 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: #142B6F; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "CircularXX", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "CircularXX", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 25px;
}
/* fonts: CircularXX may be proprietary — safe free fallback: Newsreader (Google Fonts). */