MozaikaDesign system

Higgsfield — Design System

dark · modern · high · tailwind · confidence 92%

The full decoded design system for Higgsfield: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

Tokens

Higgsfield's decoded design system: background #0F1113, text #ECECEE, accent #D1FE17, link #3E4A14, primary #D1FE17; type scale h1 16px / h2 16px / body 12px; 4px spacing base; 6px base radius. The single interactive/action color is #D1FE17 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#0F1113
surface#1C1E20
border#303133
text#ECECEE
text_muted#98989A
primary#D1FE17
accent#D1FE17
link#3E4A14
secondary#FF005B
button_bg#D1FE17
button_text#131517

Using these colors

Typography

Spacing

Radii

Shadow

rgb(130, 155, 25) 0px -2.9968px 0px 0px inset, rgb(130, 155, 25) 0px -2.0603px 0px 0px inset, rgb(209, 254, 23) 0px 0.9365px 0px 0px inset

Export: DESIGN.md

# Higgsfield — Design System

> dark, modern, high, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#0F1113` |
| surface | `#1C1E20` |
| border | `#303133` |
| text | `#ECECEE` |
| text_muted | `#98989A` |
| primary | `#D1FE17` |
| accent | `#D1FE17` |
| link | `#3E4A14` |
| secondary | `#FF005B` |
| button_bg | `#D1FE17` |
| button_text | `#131517` |

**Using these colors**

- **Action color** `#D1FE17` — 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 `#D1FE17` — one role, not several (your action color).
- **accent** `#D1FE17` — 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** `#3E4A14` — fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#FF005B` — 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: **Roboto**
- Body: **Roboto**
- h1: 16px
- h2: 16px
- body: 12px

> **Fonts —** Roboto — free, on Google.

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 6px
- button: 12px

## Primary button
- bg `#D1FE17` · text `#131517` · radius 12px

## 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 #D1FE17 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #0F1113;
  --color-surface: #1C1E20;
  --color-border: #303133;
  --color-text: #ECECEE;
  --color-text-muted: #98989A;
  --color-primary: #D1FE17;  /* primary brand / action color. */
  --color-accent: #D1FE17;  /* 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: #3E4A14;  /* fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-secondary: #FF005B;  /* 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: #D1FE17;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #131517;
  /* fonts: Roboto — free, on Google. */
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 16px;
  --text-h2: 16px;
  --text-body: 12px;
  --radius-base: 6px;
  --radius-button: 12px;
  --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 #D1FE17 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #0F1113;
  --surface: #1C1E20;
  --border: #303133;
  --text: #ECECEE;
  --text-muted: #98989A;
  --primary: #D1FE17;  /* primary brand / action color. */
  --accent: #D1FE17;  /* 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: #3E4A14;  /* fails contrast on the background (~2.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #FF005B;  /* 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: #D1FE17;  /* primary-button fill — the main call-to-action color. */
  --button-text: #131517;
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --radius-button: 12px;
}
/* fonts: Roboto — free, on Google. */