MozaikaDesign system

Savee — Design System

dark · modern · high · tailwind · confidence 92%

SAVEE curates for 'visual minds' on near-black #050505: its self-hosted custom sans at 60px/500 in off-white, full-pill white CTAs, and a masonry flood of saved imagery as the true interface. The moodboard tool presents itself as a moodboard — type kept anonymous-cool so the collected images set the taste.

Open in Mozaika →

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/savee.

Tokens

Savee's decoded design system: background #050505, text #ECECEE, accent #1019ED, link #1019ED, primary #1019ED; type scale h1 60px / h2 60px / body 36px; 8px spacing base; 4px base radius. The single interactive/action color is #1019ED — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#050505
surface#121212
border#272727
text#ECECEE
text_muted#949495
primary#1019ED
accent#1019ED
link#1019ED
button_bg#1019ED
button_text#FDFDFD

Using these colors

Typography

Spacing

Radii

Per-section tokens (7)

Export: DESIGN.md

# Savee — Design System

> dark, modern, high, tailwind

SAVEE curates for 'visual minds' on near-black #050505: its self-hosted custom sans at 60px/500 in off-white, full-pill white CTAs, and a masonry flood of saved imagery as the true interface. The moodboard tool presents itself as a moodboard — type kept anonymous-cool so the collected images set the taste.

## Colors

| Role | Value |
|------|-------|
| bg | `#050505` |
| surface | `#121212` |
| border | `#272727` |
| text | `#ECECEE` |
| text_muted | `#949495` |
| primary | `#1019ED` |
| accent | `#1019ED` |
| link | `#1019ED` |
| button_bg | `#1019ED` |
| button_text | `#FDFDFD` |

**Using these colors**

- **Action color** `#1019ED` — 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`, `link`, `button_bg` are all `#1019ED` — one role, not several (your action color).
- **accent** `#1019ED` — 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

- h1: 60px
- h2: 60px
- body: 36px

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

## Radius
- base: 4px
- button: 9999px

## Primary button
- bg `#1019ED` · text `#FDFDFD` · radius 9999px

## 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 #1019ED — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #050505;
  --color-surface: #121212;
  --color-border: #272727;
  --color-text: #ECECEE;
  --color-text-muted: #949495;
  --color-primary: #1019ED;  /* primary brand / action color. */
  --color-accent: #1019ED;  /* 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: #1019ED;  /* inline text links — shares the action color. */
  --color-button-bg: #1019ED;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FDFDFD;
  --text-h1: 60px;
  --text-h2: 60px;
  --text-body: 36px;
  --radius-base: 4px;
  --radius-button: 9999px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #1019ED — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #050505;
  --surface: #121212;
  --border: #272727;
  --text: #ECECEE;
  --text-muted: #949495;
  --primary: #1019ED;  /* primary brand / action color. */
  --accent: #1019ED;  /* 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: #1019ED;  /* inline text links — shares the action color. */
  --button-bg: #1019ED;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FDFDFD;
  --radius: 4px;
  --radius-button: 9999px;
}