Cosmos — Design System
Cosmos curates 'your space for inspiration' in ABC Oracle at 74px on a graceful 350 weight, pure black on white, with full-pill ink buttons and clustered image galaxies as the visual system. The Pinterest-for-creatives positions itself through restraint — one elegant grotesk, infinite saved images, zero noise.
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/cosmos.
Tokens
Cosmos's decoded design system: background #FFFFFF, text #0A0A0A, accent #111111, link #0A0A0A, primary #0A0A0A; type scale h1 74px / h2 66px / body 16px; 4px spacing base; 9999px base radius. The single interactive/action color is #0A0A0A — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #DADADA |
| text | #0A0A0A |
| text_muted | #676767 |
| primary | #0A0A0A |
| accent | #111111 |
| link | #0A0A0A |
| button_bg | #0A0A0A |
| button_text | #FFFFFF |
Using these colors
- Action color
#0A0A0A— the single interactive color; only on things you click or must notice, never large fills. primary,link,button_bgare all#0A0A0A— one role, not several (the action color).- accent
#111111— accent for emphasis — keep it rare on the page.
Typography
- Heading: ABC Oracle
- Body: ABC Oracle
- h1: 74px
- h2: 66px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 9999px
- button: 9999px
Per-section tokens (8)
Export: DESIGN.md
# Cosmos — Design System > light, editorial, calm, custom Cosmos curates 'your space for inspiration' in ABC Oracle at 74px on a graceful 350 weight, pure black on white, with full-pill ink buttons and clustered image galaxies as the visual system. The Pinterest-for-creatives positions itself through restraint — one elegant grotesk, infinite saved images, zero noise. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DADADA` | | text | `#0A0A0A` | | text_muted | `#676767` | | primary | `#0A0A0A` | | accent | `#111111` | | link | `#0A0A0A` | | button_bg | `#0A0A0A` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#0A0A0A` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `link`, `button_bg` are all `#0A0A0A` — one role, not several (your action color). - **accent** `#111111` — accent for emphasis — keep it rare on the page. ## Typography - Heading: **ABC Oracle** _(free fallback: Newsreader)_ - Body: **ABC Oracle** _(free fallback: Newsreader)_ - h1: 74px - h2: 66px - body: 16px > **Fonts —** ABC Oracle may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 9999px - button: 9999px ## Primary button - bg `#0A0A0A` · text `#FFFFFF` · 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 #0A0A0A — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DADADA;
--color-text: #0A0A0A;
--color-text-muted: #676767;
--color-primary: #0A0A0A; /* ≈ the text color — a foreground/text color, not an action color (action = #0A0A0A). */
--color-accent: #111111; /* accent for emphasis — keep it rare on the page. */
--color-link: #0A0A0A; /* inline text links — shares the action color. */
--color-button-bg: #0A0A0A; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: ABC Oracle may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "ABC Oracle", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "ABC Oracle", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 74px;
--text-h2: 66px;
--text-body: 16px;
--radius-base: 9999px;
--radius-button: 9999px;
--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 #0A0A0A — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DADADA;
--text: #0A0A0A;
--text-muted: #676767;
--primary: #0A0A0A; /* ≈ the text color — a foreground/text color, not an action color (action = #0A0A0A). */
--accent: #111111; /* accent for emphasis — keep it rare on the page. */
--link: #0A0A0A; /* inline text links — shares the action color. */
--button-bg: #0A0A0A; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "ABC Oracle", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "ABC Oracle", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 9999px;
--radius-button: 9999px;
}
/* fonts: ABC Oracle may be proprietary — safe free fallback: Newsreader (Google Fonts). */