Obsidian — Design System
The full decoded design system for Obsidian: 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/obsidian.
Tokens
Obsidian's decoded design system: background #0F0F0F, text #ECECEE, accent #7C3AED, link #A78BFA, primary #7C3AED; type scale h1 60px / h2 60px / body 36px; 4px spacing base; 6px base radius. The single interactive/action color is #7C3AED — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #0F0F0F |
| surface | #1C1C1C |
| border | #303030 |
| text | #ECECEE |
| text_muted | #989899 |
| primary | #7C3AED |
| accent | #7C3AED |
| link | #A78BFA |
| secondary | #8A5CF5 |
| button_bg | #7C3AED |
| button_text | #FFFFFF |
Using these colors
- Action color
#7C3AED— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#7C3AED— one role, not several (the action color).- accent
#7C3AED— 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
#A78BFA— inline text links and link-styled controls. - secondary
#8A5CF5— 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: Inter
- Body: Roboto
- h1: 60px
- h2: 60px
- body: 36px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 6px
- button: 8px
Shadow
rgb(255, 255, 255) 0px 0px 0px 0px inset, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px
Per-section tokens (7)
- Hero — dark · bg #0F0F0F · text #44404B · 2 col · split
- Feature — dark · bg #0F0F0F · text #877E98 · 2 col · split
- Bento Grid — dark · bg #1F1F1F · text #494947 · 1 col · left
- Feature — dark · bg #0F0F0F · text #FFFFFF · 2 col · split
- Feature — dark · bg #0F0F0F · text #4F4E50 · 2 col · left
- CTA / Sign-up — dark · bg #0F0F0F · text #807D84 · 1 col · left
- Footer — dark · bg #0F0F0F · text #929293 · 3 col · split
Export: DESIGN.md
# Obsidian — Design System > dark, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#0F0F0F` | | surface | `#1C1C1C` | | border | `#303030` | | text | `#ECECEE` | | text_muted | `#989899` | | primary | `#7C3AED` | | accent | `#7C3AED` | | link | `#A78BFA` | | secondary | `#8A5CF5` | | button_bg | `#7C3AED` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#7C3AED` — 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`, `button_bg` are all `#7C3AED` — one role, not several (your action color). - **accent** `#7C3AED` — 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** `#A78BFA` — inline text links and link-styled controls. - **secondary** `#8A5CF5` — 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: **Inter** - Body: **Roboto** - h1: 60px - h2: 60px - body: 36px > **Fonts —** Inter — free, on Google. Roboto — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 6px - button: 8px ## Primary button - bg `#7C3AED` · 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 #7C3AED — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #0F0F0F;
--color-surface: #1C1C1C;
--color-border: #303030;
--color-text: #ECECEE;
--color-text-muted: #989899;
--color-primary: #7C3AED; /* primary brand / action color. */
--color-accent: #7C3AED; /* 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: #A78BFA; /* inline text links and link-styled controls. */
--color-secondary: #8A5CF5; /* 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: #7C3AED; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Inter — free, on Google. Roboto — free, on Google. */
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 60px;
--text-h2: 60px;
--text-body: 36px;
--radius-base: 6px;
--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 #7C3AED — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #0F0F0F;
--surface: #1C1C1C;
--border: #303030;
--text: #ECECEE;
--text-muted: #989899;
--primary: #7C3AED; /* primary brand / action color. */
--accent: #7C3AED; /* 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: #A78BFA; /* inline text links and link-styled controls. */
--secondary: #8A5CF5; /* 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: #7C3AED; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 6px;
--radius-button: 8px;
}
/* fonts: Inter — free, on Google. Roboto — free, on Google. */