MozaikaDesign system

Grilli Type — Design System

light · modern · medium · custom · confidence 92% · deep decode

The full decoded design system for Grilli Type: 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/grilli-type.

Tokens

Grilli Type's decoded design system: background #FFFFFF, text #000000, accent #FF0000, link #FF0000, primary #30FF00; type scale h1 16px / h2 16px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#EFEFEF
border#D8D8D8
text#000000
text_muted#606060
primary#30FF00
accent#FF0000
link#FF0000
secondary#3FB8AF
button_bg#FFFFFF
button_text#8C8C8C

Using these colors

Typography

Spacing

Radii

Motion

Micro-interactions run at 100ms (dominant) with ease-out.

Button states (measured)

Layout (measured)

Responsive (measured)

Per-section tokens (10)

Export: DESIGN.md

# Grilli Type — Design System

> light, modern, medium, custom — deep decode (measured live)

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#EFEFEF` |
| border | `#D8D8D8` |
| text | `#000000` |
| text_muted | `#606060` |
| primary | `#30FF00` |
| accent | `#FF0000` |
| link | `#FF0000` |
| secondary | `#3FB8AF` |
| button_bg | `#FFFFFF` |
| button_text | `#8C8C8C` |

**Using these colors**

- **Action color** `#FFFFFF` — 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` are all `#FF0000` — one role, not several.
- **accent** `#FF0000` — accent for emphasis — keep it rare on the page.
- **primary** `#30FF00` — a brand color — but the call-to-action uses #FFFFFF, not this.
- **secondary** `#3FB8AF` — 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.
- **Page coverage** (full-page screenshot pixels): `#FFFFFF` 80.5% · `#DDE9DF` 15.7% · `#B9BBB2` 3.8%

## Typography

- Heading: **GT Mechanik Semi Regular** _(free fallback: Newsreader)_
- Body: **GT Corporate Web** _(free fallback: Newsreader)_

| Role | Size / weight · line-height · tracking |
|------|------------------------------------------|
| hero | 48px / 400 · lh 48px · tracking -0.72px |
| h2 | 20px / 400 · lh 27px |
| body | 16px / 400 · lh 22px |

- Weight ladder: 400 — use these exact measured weights, not the 400/600 defaults.

> **Fonts —** GT Mechanik Semi Regular may be proprietary — safe free fallback: Newsreader (Google Fonts). GT Corporate Web may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 4px (inferred from the measured scale)
- measured scale: 9px, 12px, 15px, 18px, 20px, 25px, 40px — snap all gaps/padding to these

## Radius
- base: 0px
- button: 5px
- card: 5px

## Buttons

| Button | Fill / text | Border | Radius | Padding | Font | Shadow |
|--------|-------------|--------|--------|---------|------|--------|
| primary | `#FFFFFF` / `#8C8C8C` | 1px solid rgb(160, 160, 160) | 5px | 1px 20px 1px 20px | 400 16px | none |
| secondary | `rgba(0, 0, 0, 0)` / `#8C8C8C` | none | — | 0px 0px 0px 0px | 400 16px | none |

**States (measured, not guessed)**

- primary hover: border `1px solid rgb(0, 0, 0)` · color `#323232`
- secondary hover: color `#000000`
- transition: `transform 0.3s ease`

## Motion
- durations: 100ms (dominant) · 300ms
- easings: `ease-out` (dominant) · `ease`
- animated properties: transform, -webkit-transform

Micro-interactions use the dominant duration + easing; nothing on the page animates slower than the longest duration above — don't invent springier motion.

## Layout (measured)
- container max 1200px · common grid: 14-col
- nav: 69px · border-bottom 1px solid rgb(50, 50, 50)

| Section (y) | Height | Cols | Gap | Pad y | Split |
|---|---|---|---|---|---|
| 676 | 935 | 14 | 20 | 0/0 | — |
| 3309 | 370 | 14 | 20 | 0/0 | — |

## Responsive (measured)
- mobile (390px): hero 16px · body 16px · nav: hamburger

## 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.
Hover/focus states, shadows and motion timings above are measured from the live page — match them exactly, don't re-guess them.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/grilli-type

Export: Tailwind v4 (@theme)

@theme {
  /* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #EFEFEF;
  --color-border: #D8D8D8;
  --color-text: #000000;
  --color-text-muted: #606060;
  --color-primary: #30FF00;  /* a brand color — but the call-to-action uses #FFFFFF, not this. */
  --color-accent: #FF0000;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #FF0000;  /* inline text links and link-styled controls. */
  --color-secondary: #3FB8AF;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #8C8C8C;
  /* fonts: GT Mechanik Semi Regular may be proprietary — safe free fallback: Newsreader (Google Fonts). GT Corporate Web may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "GT Mechanik Semi Regular", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "GT Corporate Web", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* measured weights: 400 — use these, not 400/600 */
  --text-hero: 48px; --font-weight-hero: 400; --leading-hero: 48px; --tracking-hero: -0.72px;
  --text-h2: 20px; --font-weight-h2: 400; --leading-h2: 27px;
  --text-body: 16px; --font-weight-body: 400; --leading-body: 22px;
  --radius-base: 0px;
  --radius-button: 5px;
  --radius-card: 5px;
  --ease-brand: ease-out;
  --duration-fast: 100ms;  /* use: duration-[var(--duration-fast)] */
  --duration-base: 300ms;
  --spacing: 4px;  /* measured base — drives the p-*/gap-* scale. steps seen on the page: 9, 12, 15, 18, 20, 25, 40px */
}

Export: CSS variables

:root {
  /* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #EFEFEF;
  --border: #D8D8D8;
  --text: #000000;
  --text-muted: #606060;
  --primary: #30FF00;  /* a brand color — but the call-to-action uses #FFFFFF, not this. */
  --accent: #FF0000;  /* accent for emphasis — keep it rare on the page. */
  --link: #FF0000;  /* inline text links and link-styled controls. */
  --secondary: #3FB8AF;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #8C8C8C;
  --font-heading: "GT Mechanik Semi Regular", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "GT Corporate Web", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-hero: 48px; --weight-hero: 400; --leading-hero: 48px; --tracking-hero: -0.72px;
  --text-h2: 20px; --weight-h2: 400; --leading-h2: 27px;
  --text-body: 16px; --weight-body: 400; --leading-body: 22px;
  --radius: 0px;
  --radius-button: 5px;
  --radius-card: 5px;
  --ease: ease-out;
  --duration-fast: 100ms;
  --duration-base: 300ms;
}
/* fonts: GT Mechanik Semi Regular may be proprietary — safe free fallback: Newsreader (Google Fonts). GT Corporate Web may be proprietary — safe free fallback: Newsreader (Google Fonts). */