Google Maps Mobile — Design System
Google Maps Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default.
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/google-maps-mobile.
Tokens
Google Maps Mobile's decoded design system: background #FFFFFF, text #000000, accent #00654F, link #00654F, primary #00654F; type scale h1 34px / h2 22px / body 17px; 4px spacing base; 12px base radius. The single interactive/action color is #00654F — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #EFEFEF |
| border | #D8D8D8 |
| text | #000000 |
| text_muted | #606060 |
| primary | #00654F |
| accent | #00654F |
| link | #00654F |
| button_bg | #00654F |
| button_text | #FFFFFF |
Using these colors
- Action color
#00654F— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#00654F— one role, not several (the action color).- accent
#00654F— 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: 34px
- h2: 22px
- body: 17px
Spacing
- base unit: 4px
- scale: 8px, 12px, 16px, 20px, 24px, 34px, 48px
Radii
- base: 12px
- button: 12px
Motion
Micro-interactions run at 350ms (dominant) with cubic-bezier(0.4, 0.1, 0.5, 1.4).
- durations: 350ms · 75ms
- easings:
cubic-bezier(0.4, 0.1, 0.5, 1.4)·linear - animated properties: border-radius, opacity
Native design tokens
| Token | Value |
|---|---|
--boq-chrometransition-background | #eee |
Responsive (measured)
- mobile (390px): hero 22px · nav inline
Export: DESIGN.md
# Google Maps Mobile — Design System > light, consumer, high — deep decode (measured live) Google Maps Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#EFEFEF` | | border | `#D8D8D8` | | text | `#000000` | | text_muted | `#606060` | | primary | `#00654F` | | accent | `#00654F` | | link | `#00654F` | | button_bg | `#00654F` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#00654F` — 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 `#00654F` — one role, not several (your action color). - **accent** `#00654F` — 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. - **Page coverage** (full-page screenshot pixels): `#FFFFFF` 92.3% · `#ADACAC` 2.1% · `#E4E5E5` 1.8% · `#CBCBCB` 1.6% ## Typography | Role | Size / weight · line-height · tracking | |------|------------------------------------------| | hero | 22px / 400 · lh 28px | | body | 14px / 400 · lh 20px · tracking 0.2px | | small | 12px / 400 | - Weight ladder: 400 · 500 — use these exact measured weights, not the 400/600 defaults. ## Spacing - base unit: 4px (inferred from the measured scale) - measured scale: 8px, 12px, 16px, 20px, 24px, 34px, 48px — snap all gaps/padding to these ## Radius - base: 12px - button: 12px - card: 20px - pill: 9999px ## Buttons | Button | Fill / text | Border | Radius | Padding | Font | Shadow | |--------|-------------|--------|--------|---------|------|--------| | primary | `#0B57D0` / `#000000` | none | 20px | 0px 24px 0px 24px | 400 13.3333px | none | | secondary | `rgba(0, 0, 0, 0)` / `#000000` | 1px solid rgb(116, 119, 117) | 20px | 0px 24px 0px 16px | 400 13.3333px | none | **States (measured, not guessed)** - transition: `border-radius 0.35s cubic-bezier(0.4, 0.1, 0.5, 1.4)` ## Motion - durations: 350ms (dominant) · 75ms - easings: `cubic-bezier(0.4, 0.1, 0.5, 1.4)` (dominant) · `linear` - animated properties: border-radius, opacity Micro-interactions use the dominant duration + easing; nothing on the page animates slower than the longest duration above — don't invent springier motion. ## Their own tokens (verbatim from :root) | Token | Value | |-------|-------| | `--boq-chrometransition-background` | `#eee` | Prefer these names when extending their system — it's the brand's actual vocabulary. ## Components (measured) - link: #0B57D0 · underline ## Responsive (measured) - mobile (390px): hero 22px · body 16px · nav: inline ## 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/google-maps-mobile
Export: Tailwind v4 (@theme)
@theme {
/* action color #00654F — 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: #00654F; /* primary brand / action color. */
--color-accent: #00654F; /* 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: #00654F; /* inline text links — shares the action color. */
--color-button-bg: #00654F; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* measured weights: 400, 500 — use these, not 400/600 */
--text-hero: 22px; --font-weight-hero: 400; --leading-hero: 28px;
--text-body: 14px; --font-weight-body: 400; --leading-body: 20px; --tracking-body: 0.2px;
--text-small: 12px; --font-weight-small: 400;
--radius-base: 12px;
--radius-button: 12px;
--radius-card: 20px;
--radius-pill: 9999px;
--ease-brand: cubic-bezier(0.4, 0.1, 0.5, 1.4);
--duration-fast: 75ms; /* use: duration-[var(--duration-fast)] */
--duration-base: 350ms;
--spacing: 4px; /* measured base — drives the p-*/gap-* scale. steps seen on the page: 8, 12, 16, 20, 24, 34, 48px */
}Export: CSS variables
:root {
/* action color #00654F — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #EFEFEF;
--border: #D8D8D8;
--text: #000000;
--text-muted: #606060;
--primary: #00654F; /* primary brand / action color. */
--accent: #00654F; /* 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: #00654F; /* inline text links — shares the action color. */
--button-bg: #00654F; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--text-hero: 22px; --weight-hero: 400; --leading-hero: 28px;
--text-body: 14px; --weight-body: 400; --leading-body: 20px; --tracking-body: 0.2px;
--text-small: 12px; --weight-small: 400;
--radius: 12px;
--radius-button: 12px;
--radius-card: 20px;
--radius-pill: 9999px;
--ease: cubic-bezier(0.4, 0.1, 0.5, 1.4);
--duration-fast: 75ms;
--duration-base: 350ms;
}
/* their own tokens, verbatim from the site's :root */
:root {
--boq-chrometransition-background: #eee;
}